/* ===== SERVICE DETAIL PAGE STYLES ===== */

.back-link-container {
    max-width: 1100px;
    margin: 100px auto 0;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.back-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.back-link:hover {
    color: var(--gold-light);
}

.back-link:hover i {
    transform: translateX(-5px);
}


.service-detail-hero {
    height: 55vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 72px;
    overflow: hidden;
}

.service-detail-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.service-detail-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 7, 90, 0.78) 0%, rgba(139, 24, 200, 0.45) 50%, rgba(45, 7, 90, 0.7) 100%);
    z-index: 1;
}

.service-detail-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.service-detail-hero-content .breadcrumb {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-pale);
    margin-bottom: 16px;
    opacity: 0.8;
}

.service-detail-hero-content .breadcrumb a {
    color: #D72DBB;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.service-detail-hero-content .breadcrumb a:hover {
    color: var(--white);
}

.service-detail-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    font-weight: 600;
    margin-bottom: 10px;
}

.service-detail-hero-content h1 em {
    font-style: italic;
    color: #D72DBB;
    font-weight: bold;
}

.service-detail-hero-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: rgba(255, 243, 251, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== SERVICE DETAIL CONTENT ===== */
.service-detail-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
}

.service-detail-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-detail-intro-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-detail-intro-img {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
}

.service-detail-intro-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-detail-intro-img:hover img {
    transform: scale(1.05);
}

/* ===== SERVICE HIGHLIGHTS ===== */
.service-highlights {
    background: var(--deep);
    border-radius: 4px;
    padding: 60px;
    margin-bottom: 80px;
}

.service-highlights h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--cream);
    text-align: center;
    margin-bottom: 50px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.highlight-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(240, 68, 200, 0.12);
    border-radius: 4px;
    transition: all 0.4s ease;
}

.highlight-item:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(240, 68, 200, 0.1);
}

.highlight-icon {
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 18px;
}

.highlight-item h4 {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 10px;
    font-weight: 600;
}

.highlight-item p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(255, 243, 251, 0.55);
    line-height: 1.5;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
    margin-bottom: 80px;
}

.why-choose-us h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text);
    text-align: center;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(45, 7, 90, 0.05);
    border: 1px solid rgba(240, 68, 200, 0.08);
    transition: all 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(45, 7, 90, 0.1);
    border-color: var(--gold);
}

.why-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-pale);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.why-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 12px;
}

.why-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.service-cta {
    background: linear-gradient(135deg, var(--deep) 0%, #2a1208 100%);
    border-radius: 4px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(240, 68, 200, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.service-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--cream);
    margin-bottom: 16px;
    position: relative;
}

.service-cta p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: rgba(255, 243, 251, 0.6);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
}

.service-cta .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.service-cta .btn-gold {
    padding: 16px 40px;
}

.service-cta .btn-outline {
    border-color: rgba(240, 68, 200, 0.4);
    color: var(--gold-light);
}

.service-cta .btn-outline:hover {
    border-color: var(--gold-light);
    color: var(--cream);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .service-detail-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-intro-img {
        order: -1;
    }

    .service-detail-intro-img img {
        height: 300px;
    }

    .service-highlights {
        padding: 40px 24px;
    }

    .service-detail-main {
        padding: 60px 20px;
    }

    .service-cta {
        padding: 40px 24px;
    }
}

@media (max-width: 600px) {
    .service-detail-hero {
        height: 45vh;
        min-height: 320px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* Service highlight text visibility fix only. */
.service-highlights {
    background: #355F5D !important;
}

.service-highlights .highlight-item {
    background: #FFFFFF !important;
}

.service-highlights .highlight-item h4 {
    color: #2D2D2D !important;
}

.service-highlights .highlight-item p {
    color: #6B6B6B !important;
}

.service-highlights .highlight-item .highlight-icon {
    color: #355F5D !important;
    background: #F8F7F2 !important;
}

.service-highlights .highlight-item .highlight-icon i {
    color: #355F5D !important;
}


