/* SERVICES PAGE */

.section-tag {
    display: block;
    margin-bottom: 15px;
    color: #C89A2B;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
}

/* SERVICES HERO */

.services-hero {
    padding: 60px 80px;
    background: #FAFAF8;
    border-bottom: 1px solid #E7E7E7;
    text-align: center;
}

.services-hero-container {
    max-width: 850px;
    margin: 0 auto;
}

.services-hero-container h1 {
    margin-bottom: 25px;
    color: #0D2342;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
}

.services-hero-container p {
    color: #1A1A1A;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
}

/* SERVICE GRID */

.services-grid-section {
    padding: 60px 80px;
    background: #FAFAF8;
}

.services-main-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.service-detail-card:hover {
    box-shadow: 0 12px 35px rgba(13, 35, 66, 0.1);
    transform: translateY(-8px);
}

.service-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin-bottom: 25px;
    background: #FAFAF8;
    border-radius: 10px;
    transition: 0.3s;
}

.service-icon-box i {
    color: #C89A2B;
    font-size: 22px;
}

.service-detail-card:hover .service-icon-box {
    background: #0D2342;
}

.service-detail-card:hover .service-icon-box i {
    color: white;
}

.service-detail-card h2 {
    margin-bottom: 18px;
    color: #0D2342;
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    line-height: 1.4;
}

.service-detail-card p {
    margin-bottom: 15px;
    color: #1A1A1A;
    font-size: 13.5px;
    line-height: 1.7;
}

.service-detail-card p:last-child {
    margin-bottom: 0;
}

/* CALL TO ACTION */

.services-cta-section {
    padding: 20px 80px 60px;
    background: #FAFAF8;
}

.services-cta-card {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    overflow: hidden;
    background: #0D2342;
    border-radius: 10px;
    text-align: center;
}

.services-cta-pattern {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(rgba(200, 154, 43, 0.2) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
}

.services-cta-content {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    z-index: 1;
}

.services-cta-content h2 {
    margin-bottom: 15px;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
}

.services-cta-content p {
    margin-bottom: 35px;
    color: #FAFAF8;
    font-size: 15px;
    line-height: 1.7;
}

.services-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-services-gold,
.btn-services-outline {
    padding: 15px 32px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.btn-services-gold {
    background: #C89A2B;
    color: white;
}

.btn-services-outline {
    border: 1px solid white;
    color: white;
}

.btn-services-gold:hover,
.btn-services-outline:hover {
    transform: translateY(-3px);
}

/* TABLET AND MOBILE SERVICES RESPONSIVE */

@media (max-width: 1050px) {
    .services-hero {
        padding: 50px 40px;
    }

    .services-grid-section {
        padding: 50px 40px;
    }

    .services-main-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-cta-section {
        padding: 20px 40px 55px;
    }
}

@media (max-width: 760px) {
    .services-hero {
        padding: 45px 30px;
    }

    .services-hero-container h1 {
        font-size: 38px;
    }

    .services-hero-container p {
        font-size: 15px;
    }

    .services-grid-section {
        padding: 45px 30px;
    }

    .services-main-container {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        padding: 35px 25px;
    }

    .services-cta-section {
        padding: 10px 30px 45px;
    }

    .services-cta-card {
        padding: 45px 25px;
    }

    .services-cta-content h2 {
        font-size: 30px;
    }

    .services-cta-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-services-gold,
    .btn-services-outline {
        text-align: center;
    }
}

@media (max-width: 520px) {
    .services-hero {
        padding: 35px 18px;
    }

    .services-hero-container h1 {
        font-size: 31px;
    }

    .services-grid-section {
        padding: 35px 18px;
    }

    .service-detail-card {
        padding: 30px 22px;
    }

    .services-cta-section {
        padding: 5px 18px 40px;
    }

    .services-cta-card {
        padding: 40px 20px;
    }

    .services-cta-content h2 {
        font-size: 26px;
    }
}
