/* ========================================
   Service Page Specific Styles
   ======================================== */

/* Breadcrumb Navigation */
.breadcrumb {
    padding-top: 100px;
    padding-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--gold-light);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--primary-black);
}

.breadcrumb span {
    color: var(--text-primary);
}

/* Service Hero */
.service-hero {
    padding: 2rem 0 4rem;
    background: linear-gradient(135deg, #faf8f5 0%, #ffffff 100%);
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.service-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--border-gold);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: var(--gold-light);
}

.service-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.service-tagline {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0 0 1rem 0;
}

.hero-brief {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Intro Section */
.service-intro {
    padding: 6rem 0;
    background: var(--background-primary);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    color: var(--primary-black);
    margin-bottom: 2rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.intro-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    text-align: left;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

/* Service Overview */
.service-overview {
    padding: 6rem 0;
    background: var(--background-primary);
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-content h2 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

.overview-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.key-benefits {
    background: var(--background-card);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    margin-top: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.key-benefits h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.1875rem;
}

.key-benefits ul {
    list-style: none;
    padding: 0;
}

.key-benefits li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.key-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-light);
    font-weight: 700;
    font-size: 1.125rem;
}

.key-benefits strong {
    color: var(--primary-black);
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-box {
    background: var(--background-card);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition-medium);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-box:hover {
    transform: translateY(-3px);
    border-color: var(--border-gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--gold-light);
    font-family: var(--font-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-box p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.875rem;
}

/* What We Do Section */
.what-we-do {
    padding: 6rem 0;
    background: var(--background-secondary);
}

.what-we-do .section-title {
    text-align: center;
    color: var(--primary-black);
    margin-bottom: 4rem;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: var(--background-card);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    transition: var(--transition-medium);
}

.detail-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}


.detail-card h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.detail-card > p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.detail-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(181, 158, 95, 0.2);
}

.detail-card li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.detail-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-light);
    font-weight: 700;
}

/* Service Process */
.service-process {
    padding: 6rem 0;
    background: var(--background-primary);
}

.service-process .section-title {
    text-align: center;
    color: var(--primary-black);
    margin-bottom: 4rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: var(--background-card);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
}

.step:hover {
    transform: translateY(-10px);
    border-color: var(--border-gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--gold-light);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-primary);
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.step p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Ideal Clients Section */
.ideal-clients {
    padding: 6rem 0;
    background: var(--background-secondary);
}

.ideal-clients .section-title {
    text-align: center;
    color: var(--primary-black);
    margin-bottom: 4rem;
}

.client-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.client-card {
    background: var(--background-card);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition-medium);
}

.client-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.client-card .service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--border-gold);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: var(--gold-light);
}

.client-card h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.client-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Service CTA */
.service-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.service-cta .cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.service-cta h2 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .overview-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-box {
        flex: 1;
        min-width: 200px;
    }

    .services-detail-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .breadcrumb {
        padding-top: 80px;
    }

    .service-hero {
        padding: 2rem 0 3rem;
    }

    .service-icon-large {
        width: 100px;
        height: 100px;
    }

    .service-intro,
    .service-overview,
    .what-we-do,
    .service-process,
    .ideal-clients,
    .service-cta {
        padding: 4rem 0;
    }

    .intro-content p {
        font-size: 1rem;
    }

    .services-detail-grid,
    .process-steps,
    .client-types {
        grid-template-columns: 1fr;
    }

    .overview-stats {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .detail-card,
    .step,
    .client-card,
    .stat-box {
        padding: 2rem 1.5rem;
    }

    .service-icon-large {
        width: 80px;
        height: 80px;
    }

    .service-hero h1 {
        font-size: 2rem;
    }

    .service-tagline {
        font-size: 1rem;
    }

    .hero-brief {
        font-size: 0.95rem;
    }

    .intro-content h2 {
        font-size: 1.75rem;
    }

    .intro-content p {
        font-size: 0.95rem;
    }

    .overview-content p {
        font-size: 1rem;
    }

    .client-card .service-icon {
        width: 60px;
        height: 60px;
    }
}

/* Smooth Transitions */
.detail-card,
.step,
.client-card,
.stat-box {
    will-change: transform;
}
