/* ============================================================
   Dr. Marc Terebelo — Concept B: "Warm & Trusted Healer"
   Color Palette: Forest Green / Amber / Cream
   ============================================================ */

/* ---------- Reset & Globals ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Brand Colors */
    --green-900: #1a3c0a;
    --green-700: #2d5016;
    --green-600: #3a6a1e;
    --green-500: #4a8028;
    --green-100: #e8f0e2;
    --green-50: #f3f8ef;

    --amber-600: #c48a12;
    --amber-500: #d4a017;
    --amber-400: #e5b83a;
    --amber-100: #fdf3d7;

    --cream: #fdfaf1;
    --cream-dark: #f5eedc;
    --white: #ffffff;

    --gray-900: #1a1a1a;
    --gray-700: #3d3d3d;
    --gray-600: #555;
    --gray-500: #777;
    --gray-400: #999;
    --gray-300: #ccc;
    --gray-200: #e5e5e5;
    --gray-100: #f5f5f5;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Spacing */
    --section-py: 80px;
    --container-max: 1140px;

    /* Radius */
    --radius: 12px;
    --radius-lg: 20px;
    --radius-pill: 999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, .10);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, .06);

    /* Transitions */
    --ease: cubic-bezier(.4, 0, .2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .25s var(--ease);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    color: var(--green-900);
    line-height: 1.25;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 10px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--gray-500);
    font-size: 1.05rem;
    max-width: 600px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: all .3s var(--ease);
}

.btn-primary {
    background: var(--amber-500);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(212, 160, 23, .35);
}

.btn-primary:hover {
    background: var(--amber-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, .45);
}

.btn-outline {
    background: transparent;
    color: var(--green-700);
    border: 2px solid var(--green-700);
}

.btn-outline:hover {
    background: var(--green-700);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--green-700);
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all .35s var(--ease);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    transition: color .35s var(--ease);
}

.nav-brand span {
    color: var(--amber-400);
}

.nav-brand-sub {
    display: block;
    font-family: var(--font-body);
    font-size: .65rem;
    font-weight: 400;
    letter-spacing: .5px;
    color: rgba(255, 255, 255, .65) !important;
    margin-top: 1px;
}

.navbar.scrolled .nav-brand-sub {
    color: var(--gray-500) !important;
}

.navbar.scrolled .nav-brand {
    color: var(--green-900);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

/* ---------- Dropdown Menus ---------- */
.has-dropdown {
    position: relative;
}

.has-dropdown>a::after {
    content: ' ▾';
    font-size: .65em;
    opacity: .6;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    min-width: 180px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
    z-index: 100;
}

.has-dropdown:hover>.dropdown,
.has-dropdown.open>.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: .88rem !important;
    font-weight: 500;
    color: var(--gray-700) !important;
    white-space: nowrap;
    transition: background .2s, color .2s;
}

.dropdown li a:hover {
    background: var(--green-50);
    color: var(--green-700) !important;
}

.nav-links a {
    font-size: .9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .85);
    transition: color .25s var(--ease);
}

.nav-links a:hover {
    color: var(--amber-400);
}

.navbar.scrolled .nav-links a {
    color: var(--gray-600);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--green-700);
}

.nav-cta {
    padding: 10px 24px !important;
    background: var(--amber-500) !important;
    color: var(--white) !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--amber-600) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s var(--ease);
}

.navbar.scrolled .nav-toggle span {
    background: var(--green-900);
}

/* ---------- Hero ---------- */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
    background: var(--green-900);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

/* Green gradient fading from left to transparent on right */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            var(--green-900) 0%,
            var(--green-900) 30%,
            rgba(26, 60, 10, .92) 42%,
            rgba(26, 60, 10, .65) 55%,
            rgba(26, 60, 10, .30) 70%,
            rgba(26, 60, 10, .08) 85%,
            transparent 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin-left: 0;
    margin-right: auto;
    padding-left: 5%;
}

.hero-content {
    max-width: 560px;
    text-align: left;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: normal;
    color: var(--amber-400);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-pill);
    padding: 10px 20px;
    margin-top: 28px;
    color: var(--white);
    font-size: .9rem;
}

.hero-badge strong {
    color: var(--amber-400);
}

/* ---------- Trust Bar ---------- */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
}

.trust-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--gray-600);
}

.trust-item .trust-icon {
    width: 32px;
    height: 32px;
    background: var(--green-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--green-600);
    flex-shrink: 0;
}

/* ---------- Why Small is Better ---------- */
.why-small {
    padding: var(--section-py) 0;
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-text {
    position: relative;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.why-feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.why-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.why-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--amber-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.why-feature h4 {
    margin-bottom: 4px;
    color: var(--green-900);
}

.why-feature p {
    font-size: .9rem;
    color: var(--gray-500);
    margin: 0;
}

.why-image-side {
    position: relative;
}

.why-image-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.why-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.why-stat {
    text-align: center;
    padding: 20px 12px;
    background: var(--green-50);
    border-radius: var(--radius);
}

.why-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-700);
    display: block;
}

.why-stat-label {
    font-size: .8rem;
    color: var(--gray-500);
    margin-top: 4px;
    display: block;
}

/* ---------- Services ---------- */
.services {
    padding: var(--section-py) 0;
    background: var(--green-50);
}

.services .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.services .section-subtitle {
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid transparent;
    transition: all .35s var(--ease);
    cursor: default;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-100);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--green-100), var(--amber-100));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
}

.service-card h4 {
    margin-bottom: 10px;
}

.service-card p {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ---------- Testimonials ---------- */
.testimonials {
    padding: var(--section-py) 0;
    background: var(--cream);
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 48px;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-card);
    position: relative;
    transition: transform .3s var(--ease);
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--green-100);
    position: absolute;
    top: 16px;
    left: 24px;
    line-height: 1;
}

.testimonial-stars {
    color: var(--amber-500);
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    color: var(--green-700);
}

.testimonial-name {
    font-weight: 600;
    font-size: .9rem;
    color: var(--green-900);
}

.testimonial-location {
    font-size: .8rem;
    color: var(--gray-400);
}

/* ---------- CTA Section ---------- */
.cta-section {
    padding: var(--section-py) 0;
    background: linear-gradient(135deg, var(--green-900), var(--green-700));
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, .75);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 32px;
}

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

/* ---------- Footer ---------- */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand span {
    color: var(--amber-400);
}

.footer-desc {
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: .95rem;
    transition: all .25s var(--ease);
}

.footer-social a:hover {
    background: var(--amber-500);
    color: var(--white);
}

.footer h5 {
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: .9rem;
    color: var(--gray-400);
}

.footer-links a:hover {
    color: var(--amber-400);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: .9rem;
}

.footer-contact-item .fc-icon {
    color: var(--amber-400);
    font-size: 1rem;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
}

.footer-bottom a {
    color: var(--gray-400);
}

.footer-bottom a:hover {
    color: var(--amber-400);
}

/* ---------- Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-image-side {
        order: -1;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    :root {
        --section-py: 56px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius) var(--radius);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        color: var(--gray-700) !important;
        font-size: 1rem;
    }

    /* Mobile dropdowns: inline, no hover */
    .has-dropdown>a::after {
        content: ' ▾';
    }

    .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        padding: 4px 0 0 16px;
        min-width: auto;
        display: none;
    }

    .has-dropdown.open>.dropdown {
        display: block;
    }

    .dropdown li a {
        padding: 6px 12px;
        font-size: .92rem !important;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .trust-bar .container {
        gap: 16px;
    }

    .trust-item {
        font-size: .8rem;
    }
}

/* ================================================
   INTERIOR PAGE STYLES
   ================================================ */

/* ---------- Page Header ---------- */
.page-header {
    padding: 120px 0 48px;
    background: linear-gradient(135deg, var(--green-900), var(--green-700));
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.page-header .section-label {
    color: var(--amber-400);
}

.page-header .section-subtitle {
    color: rgba(255, 255, 255, .7);
    margin: 0 auto;
    max-width: 550px;
}

.section-padding {
    padding: var(--section-py) 0;
}

/* ---------- About Page ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-bio p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-bio p:last-child {
    margin-bottom: 0;
}

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

.credential-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform .3s var(--ease);
}

.credential-card:hover {
    transform: translateY(-4px);
}

.credential-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--green-100), var(--amber-100));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 16px;
}

.credential-card h4 {
    margin-bottom: 8px;
}

.credential-card p {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.ak-list {
    list-style: none;
    margin-top: 16px;
}

.ak-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: .95rem;
    color: var(--gray-600);
}

.ak-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-600);
    font-weight: 700;
}

.mission-card {
    background: var(--green-900);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.mission-card h3 {
    color: var(--amber-400);
    margin-bottom: 16px;
}

.mission-card p {
    color: rgba(255, 255, 255, .8);
    margin-bottom: 12px;
    line-height: 1.8;
}

/* ---------- Services Page ---------- */
.service-detail {
    padding: var(--section-py) 0;
    border-bottom: 1px solid var(--gray-200);
}

.service-detail:nth-child(even) {
    background: var(--green-50);
}

.service-detail:last-child {
    border-bottom: none;
}

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

.service-detail:nth-child(even) .service-detail-grid {
    direction: rtl;
}

.service-detail:nth-child(even) .service-detail-grid>* {
    direction: ltr;
}

.service-detail-content h2 {
    margin-bottom: 16px;
}

.service-detail-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--gray-600);
}

.service-detail-icon {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--green-100), var(--amber-100));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.service-detail-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: .95rem;
    color: var(--gray-600);
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--amber-500);
    font-weight: 700;
}

/* ---------- Approach Page ---------- */
.approach-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.approach-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow-card);
    transition: transform .3s var(--ease);
}

.approach-card:hover {
    transform: translateY(-4px);
}

.approach-card h4 {
    margin-bottom: 12px;
}

.approach-card p {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.first-visit-steps {
    counter-reset: step-counter;
    list-style: none;
    margin-top: 24px;
}

.first-visit-steps li {
    counter-increment: step-counter;
    padding: 20px 20px 20px 60px;
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    margin-bottom: 16px;
}

.first-visit-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 16px;
    top: 18px;
    width: 32px;
    height: 32px;
    background: var(--green-600);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
}

.first-visit-steps li h4 {
    margin-bottom: 4px;
}

.first-visit-steps li p {
    font-size: .9rem;
    color: var(--gray-500);
    margin: 0;
}

/* ---------- Testimonials Page ---------- */
.testimonials-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* ---------- New Patients / Contact ---------- */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-card);
    margin-bottom: 24px;
}

.info-card h3 {
    margin-bottom: 12px;
}

.info-card p,
.info-card li {
    font-size: .95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding: 4px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: .95rem;
    transition: border-color .3s var(--ease);
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(58, 106, 30, .1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form label {
    font-weight: 600;
    font-size: .9rem;
    color: var(--gray-700);
    margin-bottom: -8px;
}

.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-embed iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* ---------- Athletes Page ---------- */
.athlete-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--green-900) 0%, #0d2a06 100%);
    text-align: center;
}

.athlete-hero h1 {
    color: var(--white);
}

.athlete-hero .section-subtitle {
    color: rgba(255, 255, 255, .7);
    margin: 0 auto;
}

/* ---------- Education Page ---------- */
.education-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.education-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-card);
    transition: transform .3s var(--ease);
}

.education-card:hover {
    transform: translateY(-4px);
}

.education-card h3 {
    margin-bottom: 8px;
}

.education-card p {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ---------- Interior Responsive ---------- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

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

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail:nth-child(even) .service-detail-grid {
        direction: ltr;
    }

    .approach-columns {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .testimonials-page-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

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

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

@media (max-width: 768px) {
    .credentials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .page-header {
        padding: 100px 0 36px;
    }
}