/* =======================================
   Services Page Styles
   ======================================= */


/* -----------------------------------------------
   1. Hero Section
----------------------------------------------- */
.services-page .sv-hero {
    background: linear-gradient(135deg, #1A2B49 0%, #1a2f50 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: #fff;
}

.services-page .sv-hero-container {
    max-width: 800px;
}

.services-page .sv-hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--jy-teal, #3B82F6);
    margin-bottom: 16px;
}

.services-page .sv-hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #fff;
}

.services-page .sv-hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.85);
}

.services-page .sv-hero-cta {
    display: inline-block;
    background-color: #fff;
    color: var(--jy-navy, #1A2B49);
    padding: 16px 36px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.services-page .sv-hero-cta:hover {
    background-color: #e8eef5;
    transform: translateY(-2px);
}


/* -----------------------------------------------
   2. Section Titles (shared)
----------------------------------------------- */
.services-page .sv-section-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1A2B49;
    margin-bottom: 40px;
    text-align: center;
}


/* -----------------------------------------------
   3. Strategic Insight Section
----------------------------------------------- */
.services-page .sv-philosophy {
    padding: 80px 0;
    background: #f8f9fb;
    text-align: center;
}

.services-page .sv-philosophy-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    max-width: 720px;
    margin: 0 auto 12px;
}

.services-page .sv-philosophy-kicker {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1A2B49;
    font-weight: 600;
    max-width: 720px;
    margin: 0 auto 50px;
}

.services-page .sv-philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
}

.services-page .sv-philosophy-card {
    background: #fff;
    border-radius: 10px;
    padding: 35px 30px 30px;
    position: relative;
    border: 1px solid #e2e2e2;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.services-page .sv-philosophy-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.services-page .sv-philosophy-card--problem {
    border-top: 4px solid #d9534f;
}

.services-page .sv-philosophy-card--solution {
    border-top: 4px solid #1A2B49;
}

.services-page .sv-philosophy-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.services-page .sv-philosophy-card--problem .sv-philosophy-card-icon {
    background: #fdf0f0;
    color: #d9534f;
}

.services-page .sv-philosophy-card--solution .sv-philosophy-card-icon {
    background: #eef2f9;
    color: #1A2B49;
}

.services-page .sv-philosophy-card-title {
    font-size: 1.25rem;
    color: #1A2B49;
    margin-bottom: 18px;
}

.services-page .sv-philosophy-card--problem .sv-philosophy-card-title {
    color: #a94442;
}

.services-page .sv-philosophy-list {
    margin: 0;
    padding-left: 20px;
    color: #555;
    line-height: 2;
    font-size: 0.98rem;
}

.services-page .sv-philosophy-card--problem .sv-philosophy-list {
    color: #666;
}

.services-page .sv-philosophy-card--solution .sv-philosophy-list {
    color: #333;
}

.services-page .sv-philosophy-tagline {
    font-size: 1.05rem;
    color: #444;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}


/* -----------------------------------------------
   4. What I Cover Section
----------------------------------------------- */
.services-page .sv-covers {
    padding: 70px 0;
    background: #fff;
    text-align: center;
}

.services-page .sv-covers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.services-page .sv-cover-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-page .sv-cover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.services-page .sv-cover-card-title {
    font-size: 1.1rem;
    color: #1A2B49;
    margin-bottom: 10px;
}

.services-page .sv-cover-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}


/* -----------------------------------------------
   4b. Who This Is For
----------------------------------------------- */
.services-page .sv-ideal-client {
    padding: 70px 0;
    background: #f9f9f9;
    text-align: center;
}

.services-page .sv-ideal-client-intro {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-page .sv-ideal-client-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    text-align: left;
}

.services-page .sv-ideal-client-card {
    background: #fff;
    border: 1px solid #ddd;
    border-top: 3px solid #3B82F6;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.services-page .sv-ideal-client-card-title {
    font-size: 1.15rem;
    color: #1A2B49;
    margin-bottom: 12px;
}

.services-page .sv-ideal-client-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}


/* -----------------------------------------------
   5. Success Metrics Band
----------------------------------------------- */
.services-page .sv-metrics {
    background: #1A2B49;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.services-page .sv-metrics-container {
    max-width: 800px;
}

.services-page .sv-metrics-statement {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.services-page .sv-metrics-callouts {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.services-page .sv-metric-callout {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-page .sv-metric-label {
    font-size: 2.2rem;
    font-weight: bold;
    color: #3B82F6;
}

.services-page .sv-metric-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 6px;
}


/* -----------------------------------------------
   6. About the Coach
----------------------------------------------- */
.services-page .sv-about {
    padding: 70px 0;
    background: #f9f9f9;
    text-align: center;
}

.services-page .sv-about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    text-align: left;
    align-items: start;
}

.services-page .sv-about-image {
    border-radius: 8px;
    overflow: hidden;
}

.services-page .sv-about-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.services-page .sv-about-name {
    font-size: 1.6rem;
    color: #1A2B49;
    margin-bottom: 8px;
}

.services-page .sv-about-tagline {
    font-size: 1.05rem;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.services-page .sv-about-bio {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.services-page .sv-about-credentials {
    margin: 0 0 25px;
    padding-left: 20px;
    color: #555;
    font-size: 0.95rem;
    line-height: 2;
}

.services-page .sv-about-cta {
    display: inline-block;
    background-color: var(--jy-navy, #1A2B49);
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.services-page .sv-about-cta:hover {
    background-color: var(--jy-navy-dark, #111d30);
    transform: translateY(-2px);
}


/* -----------------------------------------------
   7. Service Tiers Section
----------------------------------------------- */
.services-page .sv-tiers {
    padding: 70px 0;
    background: #f9f9f9;
    text-align: center;
}

.services-page .sv-tiers-intro {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 40px;
}

.services-page .sv-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}

.services-page .sv-tier-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s ease;
}

.services-page .sv-tier-card:hover {
    transform: translateY(-5px);
}

.services-page .sv-tier-free {
    border-top: 4px solid #3B82F6;
}

.services-page .sv-tier-session {
    border-top: 4px solid #1A2B49;
}

.services-page .sv-tier-custom {
    border-top: 4px solid #111d30;
}

.services-page .sv-tier-header {
    margin-bottom: 20px;
}

.services-page .sv-tier-badge {
    display: inline-block;
    background: #3B82F6;
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.services-page .sv-tier-name {
    font-size: 1.4rem;
    color: #1A2B49;
    margin-bottom: 5px;
}

.services-page .sv-tier-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.services-page .sv-tier-body {
    flex-grow: 1;
    margin-bottom: 25px;
}

.services-page .sv-tier-duration {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 12px;
    font-style: italic;
}

.services-page .sv-tier-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.services-page .sv-tier-list {
    margin: 0;
    padding-left: 20px;
    color: #555;
    font-size: 0.95rem;
    line-height: 2;
}

.services-page .sv-tier-cta {
    display: inline-block;
    background-color: var(--jy-navy, #1A2B49);
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: auto;
}

.services-page .sv-tier-cta:hover {
    background-color: var(--jy-navy-dark, #111d30);
    transform: translateY(-2px);
}


/* -----------------------------------------------
   7. User Journey Section
----------------------------------------------- */
.services-page .sv-journey {
    padding: 70px 0;
    background: #fff;
    text-align: center;
}

.services-page .sv-journey-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.services-page .sv-journey-step {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.services-page .sv-journey-number {
    width: 52px;
    height: 52px;
    background-color: #1A2B49;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.services-page .sv-journey-step-title {
    font-size: 1.15rem;
    color: #1A2B49;
    margin-bottom: 8px;
}

.services-page .sv-journey-step-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.services-page .sv-journey-arrow {
    font-size: 2rem;
    color: #1A2B49;
    padding-top: 14px;
    flex-shrink: 0;
    align-self: flex-start;
}


/* -----------------------------------------------
   8. Scheduling CTA Section
----------------------------------------------- */
.services-page .sv-schedule {
    background: #111d30;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.services-page .sv-schedule-container {
    max-width: 700px;
}

.services-page .sv-schedule-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.services-page .sv-schedule-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

.services-page .sv-calendly-placeholder {
    background: rgba(255, 255, 255, 0.08);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 40px;
}

.services-page .sv-calendly-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.services-page .sv-schedule-cta {
    display: inline-block;
    background-color: #fff;
    color: #1A2B49;
    padding: 16px 36px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.services-page .sv-schedule-cta:hover {
    background-color: #e8eef5;
    transform: translateY(-2px);
}


/* -----------------------------------------------
   9. Testimonials / Social Proof
----------------------------------------------- */
.services-page .sv-testimonials {
    padding: 70px 0;
    background: #fff;
    text-align: center;
}

.services-page .sv-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.services-page .sv-testimonial-card {
    background: #f9f9f9;
    border-left: 4px solid #3B82F6;
    border-radius: 0 8px 8px 0;
    padding: 30px;
}

.services-page .sv-testimonial-quote p {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0 0 15px;
}

.services-page .sv-testimonial-author {
    display: flex;
    flex-direction: column;
}

.services-page .sv-testimonial-name {
    font-weight: bold;
    color: #1A2B49;
    font-size: 0.95rem;
}

.services-page .sv-testimonial-role {
    font-size: 0.85rem;
    color: #888;
    margin-top: 2px;
}

.services-page .sv-testimonials-note {
    font-style: italic;
    color: #888;
    font-size: 0.95rem;
}


/* -----------------------------------------------
   10. FAQ
----------------------------------------------- */
.services-page .sv-faq {
    padding: 70px 0;
    background: #f9f9f9;
}

.services-page .sv-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.services-page .sv-faq-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.services-page .sv-faq-question {
    padding: 20px 50px 20px 25px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1A2B49;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.services-page .sv-faq-question::-webkit-details-marker {
    display: none;
}

.services-page .sv-faq-question::after {
    content: "+";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 300;
    color: #1A2B49;
    transition: transform 0.2s ease;
}

.services-page .sv-faq-item[open] .sv-faq-question::after {
    content: "\2212";
}

.services-page .sv-faq-item[open] .sv-faq-question {
    border-bottom: 1px solid #eee;
}

.services-page .sv-faq-answer {
    padding: 0 25px 20px;
}

.services-page .sv-faq-answer p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 15px 0 0;
}


/* -----------------------------------------------
   Responsive
----------------------------------------------- */
@media (max-width: 900px) {
    .services-page .sv-tiers-grid {
        grid-template-columns: 1fr;
    }

    .services-page .sv-philosophy-grid {
        grid-template-columns: 1fr;
    }

    .services-page .sv-ideal-client-grid {
        grid-template-columns: 1fr;
    }

    .services-page .sv-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-page .sv-hero {
        padding: 70px 0 60px;
    }

    .services-page .sv-hero-eyebrow {
        font-size: 0.7rem;
    }

    .services-page .sv-hero-title {
        font-size: 2.2rem;
    }

    .services-page .sv-covers-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-page .sv-journey-steps {
        flex-direction: column;
        align-items: center;
    }

    .services-page .sv-journey-arrow {
        transform: rotate(90deg);
        padding-top: 0;
    }

    .services-page .sv-metrics-callouts {
        gap: 30px;
    }

    .services-page .sv-about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-page .sv-about-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .services-page .sv-about-content {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .services-page .sv-covers-grid {
        grid-template-columns: 1fr;
    }
}
