/* ============================================
   3 Oaks Academy - Fresh Playful Design
   Shared Styles
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Warm, Joyful Color Palette */
    --navy: #2B4A7C;
    --navy-light: #3d5f94;
    --teal: #3a8577; /* WCAG AA contrast fix */
    --teal-light: #6bb5a7;
    --coral: #d6705a; /* WCAG AA contrast fix */
    --coral-light: #f0a08d;
    --amber: #F5A962;
    --amber-light: #ffc182;
    --cream: #FDF8F3;
    --cream-dark: #f5ede4;
    --sage: #89A889;
    --lavender: #9B8EC4;
    --white: #FFFFFF;
    --text-dark: #2D3748;
    --text-medium: #4A5568;
    --text-light: #5a6578; /* WCAG AA contrast fix */

    /* Typography */
    --font-display: 'Fraunces', serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   PLAYFUL SHAPES - SVG ILLUSTRATIONS
   ============================================ */
.shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.shape-blob {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-morph 8s ease-in-out infinite;
}

@keyframes blob-morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
    75% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; }
}

.shape-circle {
    border-radius: 50%;
}

.shape-squiggle {
    animation: squiggle-float 6s ease-in-out infinite;
}

@keyframes squiggle-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Mobile nav always has background */
@media (max-width: 768px) {
    .nav {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--navy);
    z-index: 1001;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--sage) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-bounce);
}

.logo:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
}

.logo-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-weight: 500;
    color: var(--text-medium);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

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

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

/* Nav Dropdowns */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    position: relative;
    transition: color var(--transition-fast);
}

.dropdown-toggle:hover {
    color: var(--navy);
}

.dropdown-toggle .caret {
    font-size: 0.65em;
    transition: transform var(--transition-fast);
    margin-left: 2px;
}

.nav-dropdown:hover .caret,
.nav-dropdown.active .caret {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    min-width: 200px;
    padding: var(--space-sm) 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: var(--space-sm) var(--space-lg);
    color: var(--text-medium);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: var(--cream);
    color: var(--navy);
}

.dropdown-menu a:focus-visible {
    outline: 2px solid var(--coral);
    outline-offset: -2px;
}

.nav-cta {
    display: flex;
    gap: var(--space-md);
}

/* ============================================
   LOCATION SELECTOR
   ============================================ */
.location-selector {
    position: relative;
    margin-right: var(--space-lg);
}

.location-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(74, 155, 140, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--teal);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
}

.location-toggle:hover {
    background: rgba(74, 155, 140, 0.15);
}

.location-icon {
    font-size: 1rem;
}

.location-arrow {
    font-size: 0.625rem;
    transition: transform var(--transition-fast);
}

.location-selector.open .location-arrow {
    transform: rotate(180deg);
}

.location-dropdown {
    position: absolute;
    top: calc(100% + var(--space-sm));
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    z-index: 1002;
    overflow: hidden;
}

.location-selector.open .location-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.location-option {
    display: block;
    padding: var(--space-md);
    border-bottom: 1px solid var(--cream-dark);
    transition: background var(--transition-fast);
}

.location-option:last-child {
    border-bottom: none;
}

.location-option:hover {
    background: var(--cream);
}

.location-option.active {
    background: rgba(74, 155, 140, 0.08);
}

.location-option strong {
    display: block;
    color: var(--navy);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.location-option span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.location-option .coming-soon {
    color: var(--amber);
    font-weight: 500;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.btn-primary {
    background: var(--coral);
    color: white;
    box-shadow: 0 4px 14px rgba(232, 132, 107, 0.35);
}

.btn-primary:hover {
    background: var(--coral-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 132, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: white;
}

.btn-ghost {
    color: var(--navy);
}

.btn-ghost:hover {
    background: rgba(43, 74, 124, 0.08);
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    background: var(--navy);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile browsers */
    background: var(--cream);
    background-color: #FDF8F3; /* Solid fallback */
    padding: 100px var(--space-xl) var(--space-xl);
    display: flex; /* Always flex - visibility controls show/hide */
    flex-direction: column;
    gap: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base);
    z-index: 9999; /* Above all content */
    overflow-y: auto;
    pointer-events: none;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu .nav-link {
    font-size: 1.5rem;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--cream-dark);
}

/* Mobile Nav Sections */
.mobile-nav-section {
    margin-bottom: var(--space-lg);
}

.mobile-nav-section h4 {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--teal);
}

.mobile-nav-section a {
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: var(--space-sm) 0;
    transition: color var(--transition-fast);
}

.mobile-nav-section a:hover {
    color: var(--coral);
}

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--cream-dark);
}

.mobile-menu-cta .btn {
    text-align: center;
    justify-content: center;
}

/* Mobile Location Selector */
.mobile-location-selector {
    background: rgba(74, 155, 140, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
}

.mobile-location-current {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-sm);
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--teal);
    cursor: pointer;
}

.mobile-location-options {
    display: none;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(74, 155, 140, 0.2);
    margin-top: var(--space-md);
}

.mobile-location-selector.open .mobile-location-options {
    display: block;
}

.mobile-location-option {
    display: block;
    padding: var(--space-md);
    color: var(--navy);
    font-weight: 500;
}

.mobile-location-option.active {
    color: var(--teal);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 var(--space-4xl);
    overflow: hidden;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-blob-1 {
    top: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(245, 169, 98, 0.15) 0%, rgba(232, 132, 107, 0.1) 100%);
}

.hero-blob-2 {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(74, 155, 140, 0.1) 0%, rgba(137, 168, 137, 0.08) 100%);
    animation-delay: -3s;
}

.hero-circle-1 {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: var(--amber);
    opacity: 0.2;
    animation: float 5s ease-in-out infinite;
}

.hero-circle-2 {
    bottom: 30%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: var(--coral);
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
    animation-delay: -2s;
}

.hero-circle-3 {
    top: 60%;
    left: 5%;
    width: 40px;
    height: 40px;
    background: var(--teal);
    opacity: 0.2;
    animation: float 4s ease-in-out infinite;
    animation-delay: -1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(74, 155, 140, 0.12);
    color: var(--teal);
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    animation: slideUp 0.6s ease forwards;
    opacity: 0;
}

.hero-badge.coming-soon {
    background: rgba(245, 169, 98, 0.15);
    color: var(--amber);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: var(--space-lg);
    animation: slideUp 0.6s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.hero-title .highlight {
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, var(--amber) 0%, var(--coral-light) 100%);
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
    animation: highlightGrow 0.8s ease forwards;
    animation-delay: 0.8s;
    transform-origin: left;
    transform: scaleX(0);
}

@keyframes highlightGrow {
    to { transform: scaleX(1); }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    animation: slideUp 0.6s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    animation: slideUp 0.6s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero-cta .btn {
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
    animation: slideUp 0.6s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.stat {
    text-align: left;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
}

.stat-value span {
    color: var(--coral);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: var(--space-xs);
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.illustration-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.manatee-scene {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
}

.manatee-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, var(--teal-light) 0%, var(--teal) 50%, var(--sage) 100%);
    border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
    animation: blob-morph 10s ease-in-out infinite;
}

.manatee-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    animation: manatee-swim 4s ease-in-out infinite;
}

@keyframes manatee-swim {
    0%, 100% { transform: translate(-50%, -50%) rotate(-2deg); }
    50% { transform: translate(-50%, -52%) rotate(2deg); }
}

.floating-elements {
    position: absolute;
    inset: -30px;
}

.floating-book {
    position: absolute;
    top: 10%;
    right: -10%;
    width: 70px;
    height: 70px;
    background: var(--amber);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(245, 169, 98, 0.3);
    animation: float-item 5s ease-in-out infinite;
}

.floating-pencil {
    position: absolute;
    bottom: 20%;
    right: -5%;
    width: 55px;
    height: 55px;
    background: var(--coral);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(232, 132, 107, 0.3);
    animation: float-item 6s ease-in-out infinite;
    animation-delay: -1s;
}

.floating-star {
    position: absolute;
    top: 25%;
    left: -5%;
    width: 50px;
    height: 50px;
    background: var(--lavender);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(155, 142, 196, 0.3);
    animation: float-item 4s ease-in-out infinite;
    animation-delay: -2s;
}

.floating-heart {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 45px;
    height: 45px;
    background: var(--sage);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(137, 168, 137, 0.3);
    animation: float-item 5.5s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes float-item {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(5deg); }
    75% { transform: translateY(5px) rotate(-3deg); }
}

.floating-elements svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Bubble decorations */
.bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    animation: bubble-rise 8s ease-in-out infinite;
}

@keyframes bubble-rise {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.8;
    }
}

.bubble:nth-child(1) { width: 12px; height: 12px; top: 70%; left: 20%; animation-delay: 0s; }
.bubble:nth-child(2) { width: 8px; height: 8px; top: 60%; left: 60%; animation-delay: -2s; }
.bubble:nth-child(3) { width: 10px; height: 10px; top: 80%; left: 40%; animation-delay: -4s; }
.bubble:nth-child(4) { width: 6px; height: 6px; top: 50%; left: 75%; animation-delay: -6s; }

/* ============================================
   FEATURES SECTION - What Makes Us Special
   ============================================ */
.features {
    padding: var(--space-4xl) 0;
    background: var(--white);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--sage) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--coral) 0%, var(--amber) 100%);
}

.feature-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--amber) 0%, var(--lavender) 100%);
}

.feature-card:nth-child(4)::before {
    background: linear-gradient(90deg, var(--lavender) 0%, var(--teal) 100%);
}

.feature-card:nth-child(5)::before {
    background: linear-gradient(90deg, var(--sage) 0%, var(--coral) 100%);
}

.feature-card:nth-child(6)::before {
    background: linear-gradient(90deg, var(--navy) 0%, var(--teal) 100%);
}

.feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    max-width: 56px;
    min-height: 56px;
    max-height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    transition: transform var(--transition-bounce);
    overflow: hidden;
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon svg {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px;
    max-width: 28px;
    min-height: 28px;
    max-height: 28px;
    fill: white;
    stroke: none;
    flex-shrink: 0;
}

.feature-icon.teal { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%); }
.feature-icon.coral { background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%); }
.feature-icon.amber { background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%); }
.feature-icon.lavender { background: linear-gradient(135deg, var(--lavender) 0%, #b5a8d6 100%); }
.feature-icon.sage { background: linear-gradient(135deg, var(--sage) 0%, #a5c4a5 100%); }
.feature-icon.navy { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }

.feature-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.feature-text {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */
.programs {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
    position: relative;
    overflow: hidden;
}

.programs-decoration {
    position: absolute;
    top: 10%;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(232, 132, 107, 0.08) 0%, rgba(245, 169, 98, 0.05) 100%);
    border-radius: 50%;
    transform: translateX(50%);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
}

.program-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    cursor: pointer;
}

.program-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(43, 74, 124, 0.03) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.program-card:hover::after {
    opacity: 1;
}

.program-emoji {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    display: block;
    transition: transform var(--transition-bounce);
}

.program-card:hover .program-emoji {
    transform: scale(1.2);
}

.program-grade {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    margin-bottom: var(--space-xs);
}

.program-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.program-description {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
}

.program-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--coral);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.program-card:hover .learn-more {
    opacity: 1;
    transform: translateY(0);
}

.learn-more svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.program-card:hover .learn-more svg {
    transform: translateX(4px);
}

/* ============================================
   A DAY AT 3 OAKS SECTION
   ============================================ */
.daily-life {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--cream) 0%, white 50%, var(--cream) 100%);
}

.daily-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.daily-panel {
    position: relative;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    box-shadow: 0 4px 20px rgba(43, 74, 124, 0.1);
}

.daily-panel:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(43, 74, 124, 0.2);
}

.daily-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.daily-panel:hover img {
    transform: scale(1.08);
}

.daily-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 30%,
        rgba(43, 74, 124, 0.4) 60%,
        rgba(43, 74, 124, 0.92) 100%
    );
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background var(--transition-medium);
}

.daily-panel:hover .daily-overlay {
    background: linear-gradient(
        180deg,
        transparent 15%,
        rgba(43, 74, 124, 0.5) 50%,
        rgba(43, 74, 124, 0.95) 100%
    );
}

.daily-time {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    background: rgba(245, 169, 98, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: var(--space-sm);
}

.daily-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-xs);
    line-height: 1.2;
}

.daily-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    max-width: 90%;
}

/* Daily Life Mobile */
@media (max-width: 900px) {
    .daily-panels {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .daily-panel {
        height: 320px;
    }
}

@media (max-width: 600px) {
    .daily-panel {
        height: 280px;
    }

    .daily-title {
        font-size: 1.25rem;
    }

    .daily-desc {
        font-size: 0.875rem;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--space-4xl) 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(74, 155, 140, 0.15) 0%, transparent 70%);
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(232, 132, 107, 0.1) 0%, transparent 70%);
}

.testimonials .section-label {
    color: var(--teal-light);
}

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

.testimonials .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-carousel {
    position: relative;
    z-index: 1;
}

.testimonials-track {
    display: flex;
    gap: var(--space-xl);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: var(--space-md) 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - var(--space-lg));
    min-width: 320px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    scroll-snap-align: start;
    transition: transform var(--transition-base);
}

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

.testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--coral);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal) 0%, var(--sage) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 1rem;
}

.author-info {
    flex: 1;
}

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

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

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
    position: relative;
}

.cta-wrapper {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-decoration {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(74, 155, 140, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.cta-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-lg);
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: calc(var(--space-xs) * -1);
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-medium);
    margin-bottom: var(--space-xs);
}

.form-input {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--cream);
}

.form-input:focus {
    outline: none;
    border-color: var(--teal);
    background: var(--white);
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-md) center;
    padding-right: calc(var(--space-md) + 24px);
}

.form-submit {
    width: 100%;
    padding: var(--space-md);
    margin-top: var(--space-md);
}

/* ============================================
   FAQ SECTION (for Sherrills Ford page)
   ============================================ */
.faq-section {
    padding: var(--space-4xl) 0;
    background: var(--cream);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin-bottom: var(--space-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.faq-answer {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ============================================
   PROVEN SUCCESS SECTION (for Sherrills Ford page)
   ============================================ */
.proven-success {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.success-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.success-content {
    max-width: 500px;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.success-stat {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
}

.success-stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.success-stat-value span {
    color: var(--coral);
}

.success-stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy);
    color: white;
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
}

.footer-logo .logo-icon svg {
    width: 24px;
    height: 24px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--teal);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

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

/* Footer Location Tabs */
.footer-locations {
    margin-top: var(--space-lg);
}

.footer-locations h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: var(--space-md);
    color: white;
}

.location-tabs {
    display: flex;
    gap: 0;
    margin-bottom: var(--space-md);
}

.location-tab {
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.location-tab:first-child {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.location-tab:last-child {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.location-tab:hover {
    background: rgba(255, 255, 255, 0.15);
}

.location-tab.active {
    background: var(--teal);
    color: white;
}

.location-content {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.location-content.hidden {
    display: none;
}

.location-content address {
    font-style: normal;
    margin-bottom: var(--space-sm);
}

.location-content a {
    color: var(--teal-light);
    transition: color var(--transition-fast);
}

.location-content a:hover {
    color: white;
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: white;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   LOCATION SELECTOR PAGE STYLES
   ============================================ */
.location-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-4xl) var(--space-lg);
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.location-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.location-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--teal);
}

.location-card.coming-soon {
    opacity: 0.9;
}

.location-card.coming-soon:hover {
    border-color: var(--amber);
}

.location-card-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.location-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.location-card-status {
    font-size: 0.9rem;
    color: var(--teal);
    font-weight: 500;
}

.location-card.coming-soon .location-card-status {
    color: var(--amber);
}

.location-card-address {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: var(--space-md);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .program-card:nth-child(4),
    .program-card:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        order: 2;
    }

    .hero-illustration {
        order: 1;
        margin-bottom: var(--space-xl);
    }

    .illustration-wrapper {
        max-width: 350px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

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

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

    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

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

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .success-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .success-content {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .location-selector {
        margin-right: var(--space-md);
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 var(--space-3xl);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .stat {
        text-align: center;
    }

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

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

    .location-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-card {
        flex: 0 0 calc(100% - var(--space-md));
    }

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

    .footer-brand {
        grid-column: span 1;
    }

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

    .location-tabs {
        justify-content: center;
    }

    .location-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hero-cta .btn {
        width: 100%;
    }

    .cta-wrapper {
        padding: var(--space-xl);
    }

    .cta-form {
        padding: var(--space-lg);
    }

    .location-toggle .location-name {
        display: none;
    }

    .location-toggle {
        padding: var(--space-sm);
    }
}

/* ============================================
   BREADCRUMB NAVIGATION
   ============================================ */
.breadcrumb {
    display: none;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-medium);
    transition: color var(--transition-fast);
}

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

.breadcrumb-sep {
    color: var(--text-light);
    opacity: 0.5;
}

.breadcrumb-current {
    color: var(--navy);
    font-weight: 500;
}

@media (min-width: 1024px) {
    .breadcrumb {
        display: flex;
    }
}

/* ============================================
   PROGRAM PAGE HERO
   ============================================ */
.program-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 var(--space-4xl);
    overflow: hidden;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.program-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.program-hero-content {
    max-width: 600px;
}

.program-hero-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.program-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.program-hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(43, 74, 124, 0.1) 100%);
    z-index: 1;
}

/* ============================================
   PROGRAM OVERVIEW SECTION
   ============================================ */
.program-overview {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.overview-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.overview-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    max-width: 64px;
    min-height: 64px;
    max-height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    overflow: hidden;
    flex-shrink: 0;
}

.overview-icon svg {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px;
    max-width: 32px;
    min-height: 32px;
    max-height: 32px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.overview-icon.teal { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%); }
.overview-icon.coral { background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%); }
.overview-icon.amber { background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%); }

.overview-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

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

/* ============================================
   ACADEMIC HIGHLIGHTS SECTION
   ============================================ */
.academic-highlights {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.highlights-content {
    max-width: 550px;
}

.highlights-list {
    margin-top: var(--space-xl);
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    color: var(--text-medium);
    line-height: 1.6;
}

.highlights-list .check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    min-width: 24px;
    max-width: 24px;
    fill: none;
    stroke: var(--teal);
    stroke-width: 2;
    margin-top: 2px;
}

.highlights-list .check-icon path,
.highlights-list .check-icon polyline {
    fill: none;
    stroke: var(--teal);
    stroke-width: 2;
}

.highlights-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.highlights-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   TYPICAL DAY / SCHEDULE SECTION
   ============================================ */
.typical-day {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.schedule-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    gap: var(--space-lg);
    transition: all var(--transition-base);
    border-left: 4px solid transparent;
}

.schedule-card:hover {
    transform: translateX(5px);
    border-left-color: var(--teal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.schedule-card:nth-child(2):hover { border-left-color: var(--coral); }
.schedule-card:nth-child(3):hover { border-left-color: var(--amber); }
.schedule-card:nth-child(4):hover { border-left-color: var(--lavender); }
.schedule-card:nth-child(5):hover { border-left-color: var(--sage); }
.schedule-card:nth-child(6):hover { border-left-color: var(--navy); }

.schedule-time {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--teal);
    white-space: nowrap;
    min-width: 70px;
}

.schedule-content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-xs);
}

.schedule-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ============================================
   CLASS SIZE SECTION
   ============================================ */
.class-size {
    padding: var(--space-4xl) 0;
    background: var(--navy);
    color: white;
}

.class-size-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-3xl);
    align-items: center;
}

.class-size-content {
    max-width: 600px;
}

.class-size .section-label {
    color: var(--teal-light);
}

.class-size .section-title {
    color: white;
}

.class-size .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.class-size-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-top: var(--space-md);
}

.class-size-stat {
    text-align: center;
}

.big-stat {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-3xl);
}

.big-stat-value {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: var(--teal-light);
    line-height: 1;
    display: block;
}

.big-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--space-sm);
    display: block;
}

/* Highlights list on dark background */
.class-size .highlights-list li {
    color: rgba(255, 255, 255, 0.85);
}

.class-size .highlights-list li strong {
    color: white;
}

.class-size .highlights-list .check-icon,
.class-size .highlights-list .check-icon path,
.class-size .highlights-list .check-icon polyline {
    stroke: var(--teal-light);
}

/* ============================================
   SPECIAL SUPPORT SECTION
   ============================================ */
.special-support {
    padding: var(--space-4xl) 0;
    background: var(--cream);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.support-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.support-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    max-width: 56px;
    min-height: 56px;
    max-height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--sage) 0%, var(--teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    overflow: hidden;
    flex-shrink: 0;
}

.support-icon svg {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px;
    max-width: 28px;
    min-height: 28px;
    max-height: 28px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.support-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.support-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.support-cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

/* ============================================
   ELECTIVES SECTION
   ============================================ */
.electives {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.electives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
    gap: var(--space-lg);
    justify-content: center;
}

.elective-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.elective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.elective-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-sm);
    transition: transform var(--transition-bounce);
}

.elective-card:hover .elective-emoji {
    transform: scale(1.2);
}

.elective-card h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
}

/* 8-column electives grid for middle/high school */
.electives-grid-8 {
    grid-template-columns: repeat(4, 1fr);
}

/* Dual Enrollment Prep Section (reuses class-size styles) */
.dual-enrollment-prep {
    padding: var(--space-4xl) 0;
    background: var(--navy);
    color: white;
}

/* Social-Emotional Section */
.social-emotional {
    padding: var(--space-4xl) 0;
    background: var(--cream);
}

/* ============================================
   HIGH SCHOOL PAGE STYLES
   ============================================ */

/* College Badge on Hero Image */
.college-badge {
    position: absolute;
    bottom: var(--space-xl);
    right: var(--space-xl);
    background: var(--coral);
    color: white;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 10px 30px rgba(232, 132, 107, 0.4);
    z-index: 2;
}

.college-badge .badge-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.college-badge .badge-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* College Prep Section */
.college-prep {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.college-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.college-stat-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-base);
}

.college-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.college-stat-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    max-width: 64px;
    min-height: 64px;
    max-height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    overflow: hidden;
    flex-shrink: 0;
}

.college-stat-icon svg {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px;
    max-width: 32px;
    min-height: 32px;
    max-height: 32px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.college-stat-icon.teal { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%); }
.college-stat-icon.coral { background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%); }
.college-stat-icon.amber { background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%); }

.college-stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.college-stat-label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.college-stat-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Dual Enrollment Section */
.dual-enrollment {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.dual-enrollment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.dual-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
}

.dual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.dual-step {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: white;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.dual-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.dual-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.partner-logos {
    text-align: center;
}

.partner-logos p {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.partner-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.partner-badge {
    background: var(--white);
    color: var(--navy);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Flexible Pathways */
.flexible-pathways {
    padding: var(--space-4xl) 0;
    background: var(--navy);
    color: white;
}

.pathway-list {
    margin-top: var(--space-lg);
}

.pathway-list li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-sm);
    padding-left: var(--space-lg);
    position: relative;
}

.pathway-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--teal-light);
}

.pathway-list li strong {
    color: white;
}

/* Service Learning Section */
.service-learning {
    padding: var(--space-4xl) 0;
    background: var(--cream);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.service-stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.service-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--coral);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.service-stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.service-examples {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    max-width: 600px;
    margin: 0 auto;
}

.service-examples h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.service-examples ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.service-examples li {
    color: var(--text-medium);
    font-size: 0.95rem;
    padding-left: var(--space-md);
    position: relative;
}

.service-examples li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--teal);
}

/* High School Responsive */
@media (max-width: 1024px) {
    .college-stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

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

    .college-badge {
        bottom: var(--space-md);
        right: var(--space-md);
        padding: var(--space-sm) var(--space-md);
    }

    .college-badge .badge-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .dual-enrollment-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto var(--space-2xl);
    }

    .service-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto var(--space-2xl);
    }

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

/* ============================================
   PROGRAM PAGE RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .electives-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .electives-grid-8 {
        grid-template-columns: repeat(4, 1fr);
    }

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

@media (max-width: 1024px) {
    .program-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .program-hero-content {
        max-width: 100%;
        order: 2;
    }

    .program-hero-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto var(--space-xl);
    }

    .program-hero .hero-cta {
        justify-content: center;
    }

    .program-hero .hero-stats {
        justify-content: center;
    }

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

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

    .highlights-content {
        max-width: 100%;
        text-align: center;
    }

    .highlights-list li {
        text-align: left;
    }

    .highlights-image {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .class-size-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .class-size-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .program-hero {
        min-height: auto;
        padding: 100px 0 var(--space-3xl);
    }

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

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

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

    .big-stat-value {
        font-size: 3.5rem;
    }
}

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

/* ============================================
   TESTIMONIALS FULL PAGE
   ============================================ */
.testimonials-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.testimonial-full-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.testimonial-full-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
}

.testimonial-full-quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-left: var(--space-lg);
    border-left: 3px solid var(--coral);
}

.testimonial-full-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

@media (max-width: 768px) {
    .testimonials-full-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TUITION CALCULATOR
   ============================================ */
.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.calculator-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.calculator-result {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-height: 280px;
}

.result-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    min-height: 200px;
    color: var(--text-light);
}

.result-placeholder svg {
    margin-bottom: var(--space-md);
    opacity: 0.4;
}

.result-placeholder p {
    font-size: 0.95rem;
}

.result-content {
    text-align: center;
}

.result-amount {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--cream-dark);
}

.result-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.result-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.result-payment {
    margin-bottom: var(--space-lg);
}

.result-value-secondary {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--teal);
}

.result-note {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}

.result-note a {
    color: var(--teal);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .result-value {
        font-size: 2.5rem;
    }
}

/* ============================================
   ACCESSIBILITY: Skip Link
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: var(--white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-sm);
    font-weight: 600;
    z-index: 10000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-md);
    outline: 3px solid var(--coral);
    outline-offset: 2px;
}

/* ============================================
   ACCESSIBILITY: Focus Visible States
   ============================================ */
:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 2px;
}

.btn:focus-visible {
    outline: 3px solid var(--navy);
    outline-offset: 3px;
}

.nav-link:focus-visible,
.footer-links a:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

.form-input:focus-visible {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(58, 133, 119, 0.2);
}

/* ============================================
   ACCESSIBILITY: Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================
   MOBILE: Sticky CTA Bar
   ============================================ */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: var(--space-sm) var(--space-md);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    gap: var(--space-sm);
}

.mobile-sticky-cta .btn {
    flex: 1;
    text-align: center;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
    }

    /* Add padding to body so content isn't hidden behind sticky bar */
    body {
        padding-bottom: 70px;
    }

    /* Hide footer CTAs on mobile since we have sticky bar */
    .footer .nav-cta {
        display: none;
    }
}

/* ============================================
   UTILITY: Spin Animation for Loading
   ============================================ */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
