/* ========================================
   Section Listing Dịch Vụ - Styles
   ======================================== */

.section-listing-dich-vu {
    padding: 60px 0;
    background: #f5f5f5;
}

.services-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff9900;
}

/* Featured Service */
.featured-service {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    border-top: 4px solid #ff9900;
}

.featured-service .service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.featured-service .service-content:hover {
    opacity: 0.95;
}

.featured-service .service-image {
    height: 100%;
    overflow: hidden;
}

.featured-service .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-service .service-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-badge {
    display: inline-block;
    background: #ff9900;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    width: fit-content;
}

.featured-service h3 {
    font-size: 28px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.featured-service p {
    color: #000;
    line-height: 1.8;
    font-size: 15px;
}

/* Regular Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card .service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-card .service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
}

.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card .service-info {
    padding: 25px;
}

.service-card h3 {
    font-size: 20px;
    color: #146eb4;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.service-card p {
    color: #000;
    line-height: 1.7;
    font-size: 14px;
}

/* No Services Message */
.no-services {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-service .service-content {
        grid-template-columns: 1fr;
    }

    .featured-service .service-image {
        height: 300px;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .section-listing-dich-vu {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .featured-service .service-info {
        padding: 30px;
    }

    .featured-service h3 {
        font-size: 24px;
    }

    .services-grid {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .featured-service .service-info {
        padding: 25px;
    }

    .featured-service h3 {
        font-size: 22px;
    }

    .service-card .service-info {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 18px;
    }
}