/* ============================================
   Little Learners Preschool West Haven
   Classic & Elegant — Emerald + Cream
   ============================================ */

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

:root {
    --emerald-950: #042f23;
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --emerald-100: #d1fae5;
    --emerald-50:  #ecfdf5;

    --cream-50:  #faf9f6;
    --cream-100: #f5f0e8;
    --cream-200: #ede5d8;
    --cream-300: #e0d5c4;

    --gold-500:  #c49a6c;
    --gold-400:  #d4a574;
    --gold-300:  #e8c9a0;

    --text-dark:  #1a1a1a;
    --text-mid:   #3a3a3a;
    --text-light: #6b6b6b;
    --text-white: #f5f0e8;

    --font-serif:    'Playfair Display', 'Georgia', serif;
    --font-serif-alt:'Cormorant Garamond', 'Georgia', serif;
    --font-sans:     'Inter', 'Segoe UI', sans-serif;

    --shadow-sm:  0 1px 3px rgba(6,78,59,0.06), 0 1px 2px rgba(6,78,59,0.04);
    --shadow-md:  0 4px 16px rgba(6,78,59,0.08), 0 2px 6px rgba(6,78,59,0.05);
    --shadow-lg:  0 12px 40px rgba(6,78,59,0.12), 0 4px 12px rgba(6,78,59,0.06);
    --shadow-xl:  0 20px 60px rgba(6,78,59,0.15), 0 8px 20px rgba(6,78,59,0.08);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
address { font-style: normal; }

.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: var(--emerald-900); color: #fff;
    padding: 0.5rem 1rem; border-radius: var(--radius-sm);
    z-index: 9999; font-size: 0.875rem;
}
.skip-link:focus { top: 1rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ---- Typography ---- */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2rem;
}
.section-label::before {
    content: '';
    position: absolute; left: 0; top: 50%;
    width: 1.25rem; height: 1px;
    background: var(--gold-500);
    transform: translateY(-50%);
}
.section-label--light { color: var(--emerald-300); }
.section-label--light::before { background: var(--gold-400); }

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--emerald-950);
    margin-bottom: 1rem;
}
.section-title--light { color: #fff; }

.section-subtitle {
    font-family: var(--font-serif-alt);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-subtitle { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
}
.btn--full { width: 100%; justify-content: center; }

.btn-primary {
    background: var(--emerald-900);
    color: #fff;
    box-shadow: 0 4px 14px rgba(6,78,59,0.3);
}
.btn-primary:hover {
    background: var(--emerald-800);
    box-shadow: 0 6px 20px rgba(6,78,59,0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--emerald-900);
    border: 1.5px solid var(--emerald-900);
}
.btn-secondary:hover {
    background: var(--emerald-50);
    transform: translateY(-2px);
}

/* ---- Header ---- */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(250,249,246,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(250,249,246,0.97);
    border-bottom-color: var(--cream-200);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.logo-icon { color: var(--emerald-900); flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--emerald-950);
}
.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}
.logo--light .logo-name { color: #fff; }
.logo--light .logo-sub { color: var(--emerald-300); }
.logo--light .logo-icon { color: #fff; }

/* Nav */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    padding: 0.5rem 0.875rem;
    border-radius: 50px;
    transition: var(--transition);
}
.nav-menu a:hover { color: var(--emerald-900); background: var(--emerald-50); }
.nav-cta {
    background: var(--emerald-900) !important;
    color: #fff !important;
    margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--emerald-800) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}
.nav-toggle-bar {
    display: block;
    width: 22px; height: 2px;
    background: var(--emerald-900);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero ---- */
.hero {
    position: relative;
    padding: 8rem 0 0;
    background: linear-gradient(160deg, var(--emerald-950) 0%, var(--emerald-900) 60%, var(--emerald-800) 100%);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
}
.hero-bg-pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(ellipse 600px 600px at 80% 20%, rgba(16,185,129,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 10% 80%, rgba(196,154,108,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-bottom: 3rem;
    position: relative;
    z-index: 1;
}
.hero-content { padding-right: 1rem; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gold-400);
    background: rgba(196,154,108,0.12);
    border: 1px solid rgba(196,154,108,0.25);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.hero-badge svg { flex-shrink: 0; }

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
}
.headline-line { display: block; }
.headline-accent {
    font-style: italic;
    font-weight: 500;
    color: var(--gold-400);
}
.hero-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
    max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-actions .btn-secondary {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.hero-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

.hero-image-col { position: relative; }
.hero-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero-image-main img { width: 100%; height: 100%; object-fit: cover; }

.floating-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1rem 1.125rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}
.floating-card-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    background: var(--emerald-50);
    color: var(--emerald-700);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.floating-stat {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--emerald-950);
    line-height: 1.2;
}
.floating-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.3;
}
.floating-card--1 { top: 8%; left: -2rem; animation: float1 6s ease-in-out infinite; }
.floating-card--2 { bottom: 28%; right: -1.5rem; animation: float2 7s ease-in-out infinite; }
.floating-card--3 { bottom: 6%; left: -1rem; animation: float3 5.5s ease-in-out infinite; }

@keyframes float1 {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes float2 {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}
@keyframes float3 {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.hero-divider {
    height: 6px;
    background: linear-gradient(90deg, var(--emerald-900) 0%, var(--gold-500) 50%, var(--emerald-900) 100%);
    flex-shrink: 0;
}

/* ---- Section Spacing ---- */
.section { padding: 6rem 0; }

/* ---- About ---- */
.about { background: var(--cream-50); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
    position: absolute;
    bottom: -2rem; right: -1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream-50);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-emblem {
    position: absolute;
    top: -1.5rem; left: -1rem;
    color: var(--emerald-200);
    opacity: 0.5;
}
.about-content { padding-top: 1rem; }
.about-lead {
    font-family: var(--font-serif-alt);
    font-size: 1.125rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.about-content > p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 2rem;
}
.about-values { display: flex; flex-direction: column; gap: 1.25rem; }
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.value-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    background: var(--emerald-50);
    color: var(--emerald-700);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.value-item strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--emerald-950);
    margin-bottom: 0.125rem;
}
.value-item span {
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ---- Programs ---- */
.programs { background: var(--cream-100); }
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.program-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--cream-200);
}
.program-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--emerald-100);
}
.program-card--featured {
    border: 2px solid var(--emerald-700);
    position: relative;
}
.program-card-badge {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--emerald-900);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    z-index: 1;
}
.program-card-img {
    height: 200px;
    overflow: hidden;
}
.program-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.program-card:hover .program-card-img img { transform: scale(1.05); }
.program-card-body { padding: 1.5rem; }
.program-card-age {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-500);
}
.program-card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--emerald-950);
    margin: 0.375rem 0 0.625rem;
}
.program-card-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.program-card-features {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}
.program-card-features li {
    font-size: 0.8125rem;
    color: var(--text-mid);
    padding-left: 1.25rem;
    position: relative;
}
.program-card-features li::before {
    content: '';
    position: absolute; left: 0; top: 0.5em;
    width: 6px; height: 6px;
    background: var(--emerald-500);
    border-radius: 50%;
}

/* ---- Why Us ---- */
.why-us { background: var(--emerald-950); overflow: hidden; }
.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.why-us-content { padding-top: 1rem; }
.why-us-lead {
    font-family: var(--font-serif-alt);
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.why-list { display: flex; flex-direction: column; gap: 1.75rem; }
.why-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.why-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
    flex-shrink: 0;
    width: 2.5rem;
}
.why-item h4 {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}
.why-item p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
}
.why-us-image-col { position: relative; }
.why-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.why-img-main img { width: 100%; height: 100%; object-fit: cover; }
.why-stat-card {
    position: absolute;
    bottom: -1.5rem; left: -1.5rem;
    background: var(--gold-500);
    color: var(--emerald-950);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}
.why-stat-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
}
.why-stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.4;
}

/* ---- Testimonials ---- */
.testimonials { background: var(--cream-50); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--cream-200);
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--emerald-100);
    transform: translateY(-2px);
}
.testimonial-quote-mark {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--emerald-100);
    position: absolute;
    top: 0.75rem; left: 1.25rem;
}
.testimonial-text {
    font-family: var(--font-serif-alt);
    font-size: 1.0625rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--cream-200);
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--emerald-950);
}
.testimonial-detail {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ---- Contact ---- */
.contact { background: var(--emerald-900); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-lead {
    font-family: var(--font-serif-alt);
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-detail-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    color: var(--gold-400);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-detail strong {
    display: block;
    font-size: 0.875rem;
    color: #fff;
    margin-bottom: 0.125rem;
}
.contact-detail span,
.contact-detail a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}
.contact-detail a:hover { color: var(--gold-400); }

.contact-form-col {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow-xl);
}
.contact-form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--emerald-950);
    margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 0.375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--cream-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--cream-50);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-600);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-note {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.75rem;
}
.form-success {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--emerald-50);
    color: var(--emerald-800);
    padding: 0.875rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin-top: 1rem;
    border: 1px solid var(--emerald-100);
}

/* ---- Footer ---- */
.footer {
    background: var(--emerald-950);
    color: rgba(255,255,255,0.6);
    padding: 4rem 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer-tagline {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 320px;
}
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}
.footer-col a:hover { color: var(--gold-400); }
.footer-col address { font-size: 0.8125rem; line-height: 1.75; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 0;
    text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* ---- Scroll Reveal (progressive enhancement) ---- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-inner { gap: 2.5rem; }
    .floating-card--1 { left: -0.5rem; }
    .floating-card--2 { right: -0.5rem; }
    .floating-card--3 { left: 0; }
    .about-grid,
    .why-us-inner,
    .contact-grid { gap: 2.5rem; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: rgba(250,249,246,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.25rem;
        border-bottom: 1px solid var(--cream-200);
        box-shadow: var(--shadow-md);
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-menu a { padding: 0.75rem 1rem; width: 100%; }
    .nav-cta { margin-left: 0 !important; text-align: center; }

    .hero { padding-top: 6rem; min-height: auto; }
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-content { padding-right: 0; order: 1; }
    .hero-image-col { order: 2; max-width: 480px; margin: 0 auto; }
    .floating-card { display: none; }

    .about-grid,
    .why-us-inner,
    .contact-grid { grid-template-columns: 1fr; }
    .about-images { max-width: 480px; }
    .about-img-accent { right: -0.75rem; bottom: -1.25rem; }
    .why-img-main { max-width: 480px; }
    .why-stat-card { left: -0.5rem; bottom: -1rem; padding: 1rem 1.5rem; }

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

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

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

@media (max-width: 480px) {
    .section { padding: 4rem 0; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .footer-links { grid-template-columns: 1fr; gap: 1.5rem; }
}
