/* ===== LENOX OBGYN — Luxury Design System ===== */

:root {
    /* Color Palette — Navy, Gold, Cream */
    --navy: #1a2744;
    --navy-light: #243352;
    --navy-dark: #0f1a2e;
    --gold: #c9a96e;
    --gold-light: #d4b87f;
    --gold-dark: #b8944f;
    --cream: #faf8f5;
    --cream-dark: #f0ece5;
    --white: #ffffff;
    --text-primary: #1a2744;
    --text-secondary: #5a6577;
    --text-light: #8a92a0;
    --border: #e5e1db;

    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

/* ===== TYPOGRAPHY ===== */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 20px;
}

.section-title em {
    font-style: italic;
    color: var(--gold-dark);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

.centered {
    text-align: center;
}

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

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    padding: 10px 0;
    letter-spacing: 0.02em;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-phone {
    color: var(--gold-light);
    font-weight: 500;
}

.top-bar-phone:hover {
    color: var(--gold);
}

.top-bar-divider {
    opacity: 0.3;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

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

/* ===== NAVIGATION ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0;
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.08em;
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
}

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

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--navy-light) !important;
    transform: translateY(-1px);
}

.nav-cta::after {
    display: none !important;
}

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-full {
    width: 100%;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1584515933487-779824d29309?w=1200&h=900&fit=crop&crop=center') center/cover;
    opacity: 0.15;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.4), transparent);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.4), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    max-width: 700px;
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.badge {
    text-align: center;
}

.badge-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
}

.badge-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-highlights {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.highlight {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 12px;
    color: var(--gold);
}

.highlight h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--navy);
}

.highlight p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold);
    border-radius: 8px;
    z-index: -1;
}

.about-image-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.services .section-header {
    margin-bottom: 64px;
}

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

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    border-radius: 12px;
    color: var(--gold);
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.services-footer {
    text-align: center;
    margin-top: 48px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.services-footer a {
    color: var(--gold-dark);
    font-weight: 600;
    border-bottom: 1px solid var(--gold);
    transition: color 0.3s;
}

.services-footer a:hover {
    color: var(--navy);
}

/* ===== EXPERIENCE SECTION ===== */
.experience {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.experience-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.experience-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.experience-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.experience-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.experience-list {
    list-style: none;
    margin-bottom: 40px;
}

.experience-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
}

.experience-list li:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--gold);
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== PROVIDERS SECTION ===== */
.providers {
    padding: var(--section-padding) 0;
    background: var(--navy);
    color: var(--white);
}

.providers .section-label {
    color: var(--gold);
}

.providers .section-title {
    color: var(--white);
}

.providers .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.providers .section-header {
    margin-bottom: 64px;
}

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

.provider-card {
    text-align: center;
    transition: transform 0.3s;
}

.provider-card:hover {
    transform: translateY(-8px);
}

.provider-image {
    margin-bottom: 24px;
}

.provider-image {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.provider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.provider-card:hover .provider-image {
    border-color: var(--gold-light);
    box-shadow: 0 0 30px rgba(201, 169, 110, 0.3);
}

.provider-info h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.provider-title {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.provider-bio {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 16px;
}

.provider-link {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.testimonials .section-header {
    margin-bottom: 64px;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.stars {
    color: var(--gold);
    font-size: 1.3rem;
    letter-spacing: 3px;
}

.testimonial-rating span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: -8px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
}

.author-source {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* --- Google Review Links --- */
.badge-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.badge-link:hover {
    opacity: 0.8;
}

.testimonial-rating-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.testimonial-rating-link:hover {
    opacity: 0.75;
}

.author-source-link {
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.3s;
}

.author-source-link:hover {
    color: var(--gold);
}

.reviews-cta {
    text-align: center;
    margin-top: 48px;
}

.btn-outline-gold {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

/* ===== INSURANCE SECTION ===== */
.insurance {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.insurance-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.insurance-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ins-tag {
    display: inline-block;
    padding: 8px 18px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
}

.oon-highlight {
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(201, 169, 110, 0.1);
    border-left: 3px solid var(--gold);
    border-radius: 0 6px 6px 0;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.oon-highlight strong {
    color: var(--navy);
}

.insurance-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* ===== BOOKING SECTION ===== */
.booking {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

/* Out-of-network banner */
.oon-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--navy);
    color: var(--white);
    padding: 20px 28px;
    border-radius: 8px;
    margin-bottom: 32px;
    margin-top: 8px;
}

.oon-banner-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.oon-banner-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--gold-light);
}

.oon-banner-text span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: flex-start;
    margin-top: 48px;
}

.booking-form-wrapper {
    background: var(--white);
    padding: 48px;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.booking-step {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border);
}

.booking-step:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.booking-step-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

/* Patient type selector */
.patient-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.patient-type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.patient-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 20px;
    border: 2px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.patient-type-card:hover {
    border-color: var(--gold-light);
    background: rgba(201, 169, 110, 0.04);
}

.patient-type-option input:checked + .patient-type-card {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.08);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.patient-type-card svg {
    color: var(--gold);
}

.patient-type-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
}

.patient-type-desc {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Physician selector */
.physician-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.physician-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.physician-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.physician-card:hover {
    border-color: var(--gold-light);
    background: rgba(201, 169, 110, 0.04);
}

.physician-option input:checked + .physician-card {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.08);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.physician-card-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.physician-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.physician-card-avatar.physician-any {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
}

.physician-card-avatar.physician-any svg {
    width: 22px;
    height: 22px;
}

.physician-card-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
}

.physician-card-note {
    display: block;
    font-size: 0.78rem;
    color: var(--text-light);
}

/* Booking confirmation */
.booking-confirmation {
    text-align: center;
    padding: 60px 24px;
}

.confirmation-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #2d6a4f;
    color: var(--white);
    border-radius: 50%;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.booking-confirmation h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.booking-confirmation p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto;
}

.confirmation-subtext {
    margin-top: 20px !important;
    font-size: 0.9rem !important;
    color: var(--text-light) !important;
}

.confirmation-subtext a {
    color: var(--gold-dark);
    font-weight: 500;
}

/* Booking actions */
.booking-actions {
    margin-top: 32px;
}

.booking-actions .btn svg {
    vertical-align: -3px;
    margin-right: 8px;
}

/* Sidebar */
.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.booking-info-card,
.booking-portal-card {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.booking-info-card h4,
.booking-portal-card h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.booking-info-card > p,
.booking-portal-card > p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.booking-portal-card .btn svg {
    vertical-align: -2px;
    margin-right: 6px;
}

/* Contact details (shared) */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 4px;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-item a {
    color: var(--gold-dark);
    font-weight: 500;
}

/* Form elements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--cream);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-disclaimer {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
}

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

.footer .logo {
    margin-bottom: 20px;
}

.footer .logo-text {
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 6px 0;
    transition: color 0.3s;
}

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

.footer-links p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    padding: 6px 0;
}

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

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .about-grid,
    .experience-grid,
    .booking-grid,
    .insurance-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .booking-sidebar {
        position: static;
    }

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

    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

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

    .about-image-wrapper img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .top-bar {
        display: none;
    }

    .nav-inner {
        height: 64px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

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

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-cta {
        text-align: center;
        margin-top: 8px;
        border-bottom: none !important;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badges {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .badge-divider {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

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

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

    .providers-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form-wrapper {
        padding: 32px 24px;
    }

    .patient-type-selector {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}
