/* ==========================================================================
   Right Track — Service Page Components
   Used by: /pages/services/*.html
   Requires: shared.css loaded first
   ========================================================================== */

/* ---------- Service Hero ---------- */

.service-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.service-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    opacity: 0.35;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px 80px;
    width: 100%;
}

.service-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
}

.service-hero h1 span {
    color: var(--orange);
}

.service-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-badge.gesy {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge.price {
    background: rgba(255, 107, 53, 0.2);
    color: var(--orange);
    border: 1px solid rgba(255, 107, 53, 0.4);
}

/* ---------- Content Sections ---------- */

section {
    padding: 80px 40px;
}

h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

h2 span {
    color: var(--orange);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 700px;
}

/* ---------- Conditions Grid ---------- */

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.condition-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.condition-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.1);
    transform: translateY(-4px);
}

.condition-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.condition-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ---------- Process Steps ---------- */

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 2.5rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.process-step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ---------- Pricing ---------- */

.pricing-simple {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.pricing-card {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid var(--light-gray);
    text-align: center;
}

.pricing-card.featured {
    border-color: var(--orange);
}

.pricing-card .pricing-label {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.pricing-card.featured .pricing-label {
    background: var(--orange);
    color: var(--white);
}

.pricing-card:not(.featured) .pricing-label {
    background: var(--navy);
    color: var(--white);
}

.pricing-card .pricing-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.pricing-card .pricing-amount small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-gray);
}

.pricing-card .pricing-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------- Therapist Cards ---------- */

.therapist-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.therapist-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--light-gray);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 280px;
}

.therapist-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.1);
    transform: translateY(-4px);
}

.therapist-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.therapist-card-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.therapist-card-info .role {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 6px;
}

.therapist-card-info .view-profile {
    font-size: 0.9rem;
    color: var(--orange);
    font-weight: 600;
}

/* ---------- Related Services Grid ---------- */

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 2rem;
}

.related-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--light-gray);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.related-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.1);
    transform: translateY(-4px);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-card-body {
    padding: 24px;
}

.related-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.related-card-body p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 10px;
}

.related-card-body .link {
    font-size: 0.9rem;
    color: var(--orange);
    font-weight: 600;
}

/* ---------- Service CTA ---------- */

.service-cta {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2940 100%);
    padding: 80px 40px;
    text-align: center;
}

.service-cta h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 12px;
}

.service-cta h2 span {
    color: var(--orange);
}

.service-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    font-size: 1.1rem;
}

.service-cta .btn-book {
    display: inline-block;
    padding: 16px 44px;
    font-size: 1.1rem;
    background: var(--orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.service-cta .btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero {
        min-height: 480px;
    }

    .service-hero-content {
        padding: 100px 24px 60px;
    }

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

    .service-hero-subtitle {
        font-size: 1.05rem;
    }

    section {
        padding: 60px 24px;
    }

    h2 {
        font-size: 1.8rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

@media (max-width: 600px) {
    .conditions-grid {
        grid-template-columns: 1fr;
    }

    .pricing-simple {
        flex-direction: column;
    }
}