/* ===========================================
   SERVICES PAGE CSS
   =========================================== */

/* ===== HEADER ===== */
.services-page #header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===== SERVICES INTRO ===== */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

/* ===== SERVICES SECTION ===== */
.services-page .services-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.services-page .services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.services-page .service-card {
    width: 31%;
    min-width: 320px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.services-page .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.services-page .service-card a {
    color: var(--color-black);
    text-decoration: none;
    display: block;
}

.services-page .service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.services-page .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: none !important;
}

.services-page .service-card:hover .service-image img {
    transform: scale(1.08);
    filter: none !important;
}

.services-page .service-content {
    padding: 25px;
}

.services-page .service-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.services-page .service-card:hover .service-title {
    color: #333;
}

.services-page .service-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 18px;
}

.services-page .service-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    transition: all 0.3s ease;
    position: relative;
}

.services-page .service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a2e;
    transition: width 0.3s ease;
}

.services-page .service-card:hover .service-link::after {
    width: 100%;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    padding: 80px 20px;
    background-color: #1a1a2e;
    color: #fff;
}

.why-choose-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    width: 22%;
    min-width: 250px;
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.benefit-item p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-page .service-card {
        width: 45%;
    }

    .benefit-item {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .services-intro h2 {
        font-size: 2rem;
    }

    .services-intro p {
        font-size: 16px;
    }

    .services-page .services-section {
        padding: 60px 15px;
    }

    .services-page .services-grid {
        gap: 20px;
    }

    .services-page .service-card {
        width: 47%;
        min-width: auto;
        border-radius: 16px;
    }

    .services-page .service-image {
        height: 140px;
    }

    .services-page .service-content {
        padding: 18px;
    }

    .services-page .service-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .services-page .service-desc {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .services-page .service-link {
        font-size: 13px;
    }

    .why-choose-section {
        padding: 60px 15px;
    }

    .why-choose-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .benefits-grid {
        gap: 20px;
    }

    .benefit-item {
        width: 47%;
        min-width: auto;
        padding: 30px 20px;
    }

    .benefit-icon {
        font-size: 36px;
    }

    .benefit-item h3 {
        font-size: 17px;
    }

    .benefit-item p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .services-intro h2 {
        font-size: 1.7rem;
    }

    .services-page .service-card {
        width: 100%;
        max-width: 350px;
        border-radius: 18px;
    }

    .services-page .service-image {
        height: 180px;
    }

    .services-page .service-content {
        padding: 22px;
    }

    .services-page .service-title {
        font-size: 18px;
    }

    .services-page .service-desc {
        font-size: 14px;
        -webkit-line-clamp: 4;
    }

    .benefit-item {
        width: 100%;
        max-width: 320px;
    }
}