/* ============================================
   First Step Early Elementary — Stylesheet
   ============================================ */

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

:root {
    --emerald-50:  #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    --cream-50:    #fefdf8;
    --cream-100:   #fdf8f0;
    --cream-200:   #f9f0e0;
    --cream-300:   #f0e4cc;
    --sand-100:    #faf6ef;
    --sand-200:    #f0e8d8;
    --sand-300:    #e0d4c0;
    --text-dark:   #1a2e28;
    --text-mid:    #374e44;
    --text-light:  #6b8a7e;
    --text-muted:  #9bb5aa;
    --white:       #ffffff;
    --radius-sm:   10px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --radius-xl:   32px;
    --shadow-sm:   0 2px 8px rgba(5, 150, 105, 0.06);
    --shadow-md:   0 4px 20px rgba(5, 150, 105, 0.10);
    --shadow-lg:   0 8px 40px rgba(5, 150, 105, 0.14);
    --shadow-xl:   0 16px 60px rgba(5, 150, 105, 0.18);
    --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Nunito', sans-serif;
    --font-body:    'Quicksand', sans-serif;
}

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

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

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

a {
    color: var(--emerald-600);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--emerald-500);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--emerald-700);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 600;
}

.skip-link:focus {
    top: 16px;
}

/* ---------- DECORATIVE BLOBS ---------- */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.blob--top-right {
    width: 500px;
    height: 500px;
    background: var(--emerald-200);
    top: -150px;
    right: -150px;
}

.blob--bottom-left {
    width: 400px;
    height: 400px;
    background: var(--cream-200);
    bottom: -100px;
    left: -100px;
}

/* ---------- SECTION LABELS & TITLES ---------- */
.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-600);
    background: var(--emerald-50);
    border: 1.5px solid var(--emerald-200);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header {
    margin-bottom: 56px;
}

.section-header--center {
    text-align: center;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--emerald-600);
    color: var(--white);
    border-color: var(--emerald-600);
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
}

.btn--primary:hover {
    background: var(--emerald-700);
    border-color: var(--emerald-700);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(5, 150, 105, 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--emerald-700);
    border-color: var(--emerald-300);
}

.btn--outline:hover {
    background: var(--emerald-50);
    border-color: var(--emerald-500);
    color: var(--emerald-700);
    transform: translateY(-2px);
}

.btn--light {
    background: var(--white);
    color: var(--emerald-700);
    border-color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn--light:hover {
    background: var(--cream-50);
    color: var(--emerald-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 240, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(5, 150, 105, 0.08);
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(253, 248, 240, 0.95);
    box-shadow: var(--shadow-sm);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--emerald-700);
    text-decoration: none;
}

.navbar__logo:hover {
    color: var(--emerald-600);
}

.navbar__logo-icon {
    color: var(--emerald-600);
}

.navbar__nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar__link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-mid);
    padding: 8px 14px;
    border-radius: 50px;
    transition: all var(--transition);
}

.navbar__link:hover {
    color: var(--emerald-700);
    background: var(--emerald-50);
}

.navbar__link--cta {
    background: var(--emerald-600);
    color: var(--white) !important;
    margin-left: 8px;
}

.navbar__link--cta:hover {
    background: var(--emerald-700);
}

.navbar__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--emerald-700);
}

.navbar__burger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--emerald-700);
    position: relative;
    transition: all var(--transition);
}

.navbar__burger::before,
.navbar__burger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--emerald-700);
    left: 0;
    transition: all var(--transition);
}

.navbar__burger::before { top: -7px; }
.navbar__burger::after { top: 7px; }

.navbar__toggle[aria-expanded="true"] .navbar__burger {
    background: transparent;
}

.navbar__toggle[aria-expanded="true"] .navbar__burger::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar__toggle[aria-expanded="true"] .navbar__burger::after {
    top: 0;
    transform: rotate(-45deg);
}

.navbar__close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--emerald-700);
    padding: 8px;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #065f46 0%, #059669 40%, #10b981 70%, #34d399 100%);
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(6, 95, 70, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(52, 211, 153, 0.4) 0%, transparent 50%);
}

.hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: 
        radial-gradient(circle at 25% 25%, white 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, white 1px, transparent 1px);
    background-size: 48px 48px, 32px 32px;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero__badge svg {
    opacity: 0.9;
}

.hero__title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero__title-accent {
    color: var(--emerald-200);
}

.hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
}

.hero__stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

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

/* Hero Image Stack */
.hero__visual {
    position: relative;
    height: 560px;
}

.hero__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: absolute;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__image--main {
    width: 320px;
    height: 420px;
    top: 20px;
    left: 50%;
    transform: translateX(-10%);
    z-index: 2;
}

.hero__image--float {
    z-index: 3;
}

.hero__image--top {
    width: 240px;
    height: 180px;
    top: 0;
    right: 0;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.hero__image--bottom {
    width: 220px;
    height: 160px;
    bottom: 20px;
    left: 0;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.hero__floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--emerald-700);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    z-index: 4;
}

.hero__floating-card--1 {
    bottom: 200px;
    right: -10px;
    animation: float 3s ease-in-out infinite;
}

.hero__floating-card--2 {
    top: 140px;
    left: -10px;
    animation: float 3s ease-in-out infinite 1.5s;
}

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

.hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 2;
}

.hero__wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ---------- ABOUT ---------- */
.about {
    padding: 100px 0;
    background: var(--cream-50);
    position: relative;
    z-index: 1;
}

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

.about__visual {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream-50);
}

.about__image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--emerald-600);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    z-index: 2;
}

.about__experience-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.about__experience-text {
    font-size: 0.78rem;
    font-weight: 600;
    opacity: 0.9;
    line-height: 1.3;
}

.about__content {
    position: relative;
    z-index: 1;
}

.about__text {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

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

.highlight__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--emerald-50);
    border: 1.5px solid var(--emerald-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
}

.highlight strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.highlight span {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ---------- PROGRAMS ---------- */
.programs {
    padding: 100px 0;
    background: var(--cream-100);
    position: relative;
}

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

.program-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    border: 1.5px solid var(--cream-200);
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--emerald-200);
}

.program-card--featured {
    border-color: var(--emerald-300);
    box-shadow: var(--shadow-md);
    background: linear-gradient(180deg, var(--emerald-50) 0%, var(--white) 40%);
}

.program-card--featured:hover {
    box-shadow: var(--shadow-xl);
}

.program-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--emerald-600);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 5px 16px;
    border-radius: 50px;
    white-space: nowrap;
}

.program-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.program-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-card__icon--toddler {
    background: #fef3c7;
    color: #d97706;
}

.program-card__icon--preschool {
    background: var(--emerald-100);
    color: var(--emerald-600);
}

.program-card__icon--kindergarten {
    background: #dbeafe;
    color: #2563eb;
}

.program-card__icon svg {
    width: 28px;
    height: 28px;
}

.program-card__age {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--sand-200);
    padding: 4px 12px;
    border-radius: 50px;
}

.program-card__title {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.program-card__desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.program-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.program-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-mid);
}

.program-card__features li svg {
    color: var(--emerald-500);
    flex-shrink: 0;
}

/* ---------- APPROACH ---------- */
.approach {
    padding: 100px 0;
    background: var(--cream-50);
    position: relative;
}

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

.approach__text {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 36px;
}

.approach__pillars {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.pillar {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
}

.pillar__number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--emerald-200);
    line-height: 1;
    align-self: start;
}

.pillar__title {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.pillar__text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.approach__image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.approach__img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.approach__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}

.approach__img:hover img {
    transform: scale(1.04);
}

.approach__img--1 { grid-column: 1 / 2; }
.approach__img--2 { grid-column: 2 / 3; }
.approach__img--3 { grid-column: 1 / 2; }
.approach__img--4 { grid-column: 2 / 3; }

/* ---------- GALLERY ---------- */
.gallery {
    padding: 100px 0;
    background: var(--cream-100);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}

.gallery__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery__item--wide {
    grid-column: span 7;
}

.gallery__item:not(.gallery__item--wide) {
    grid-column: span 5;
}

.gallery__item:nth-child(2) { grid-column-start: 2; }
.gallery__item:nth-child(3) { grid-column-start: 8; }
.gallery__item:nth-child(4) { grid-column-start: 2; }
.gallery__item:nth-child(5) { grid-column-start: 8; }

/* ---------- FAQ ---------- */
.faq {
    padding: 100px 0;
    background: var(--cream-50);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--white);
    border: 1.5px solid var(--cream-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq__item:hover {
    border-color: var(--emerald-200);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: color var(--transition);
}

.faq__question:hover {
    color: var(--emerald-700);
}

.faq__toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--emerald-50);
    border: 1.5px solid var(--emerald-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
    transition: all var(--transition);
}

.faq__item.active .faq__toggle {
    background: var(--emerald-600);
    border-color: var(--emerald-600);
    color: var(--white);
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 300px;
}

.faq__answer p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ---------- CTA ---------- */
.cta {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
    background: linear-gradient(135deg, #065f46 0%, #047857 50%, #059669 100%);
}

.cta__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta__gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 70% 60% at 80% 20%, rgba(52, 211, 153, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(6, 79, 55, 0.5) 0%, transparent 50%);
}

.cta__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle, white 1px, transparent 1px);
    background-size: 36px 36px;
}

.cta .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta__title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

.cta__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 2;
}

.cta__wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ---------- CONTACT ---------- */
.contact {
    padding: 100px 0;
    background: var(--cream-50);
    position: relative;
    z-index: 1;
}

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

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

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact__detail-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--emerald-50);
    border: 1.5px solid var(--emerald-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
}

.contact__detail strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact__detail span,
.contact__detail a {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact__detail a:hover {
    color: var(--emerald-600);
}

.contact__form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--cream-200);
}

.contact__form-title {
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-mid);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--sand-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream-50);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-400);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 16px 20px;
    background: var(--emerald-50);
    border: 1.5px solid var(--emerald-200);
    border-radius: var(--radius-sm);
    color: var(--emerald-800);
    font-size: 0.9rem;
}

.form-success svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--emerald-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__logo-icon {
    color: var(--emerald-400);
}

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer__links h4,
.footer__contact h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--emerald-300);
}

.footer__contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer__contact a:hover {
    color: var(--emerald-300);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- MOBILE NAV OVERLAY ---------- */
.navbar__nav.mobile-open {
    position: fixed;
    inset: 0;
    background: rgba(253, 248, 240, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 999;
}

.navbar__nav.mobile-open .navbar__link {
    font-size: 1.2rem;
    padding: 12px 24px;
}

.navbar__nav.mobile-open .navbar__close {
    display: block;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        display: none;
    }

    .about__grid,
    .approach__grid,
    .contact__grid {
        grid-template-columns: 1fr;
    }

    .about__visual {
        order: -1;
        max-width: 560px;
        margin: 0 auto;
    }

    .approach__visual {
        order: -1;
    }

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

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

@media (max-width: 768px) {
    .navbar__nav {
        display: none;
    }

    .navbar__toggle {
        display: block;
    }

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

    .hero__title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero__stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero__stat-divider {
        display: none;
    }

    .gallery__item--wide,
    .gallery__item:not(.gallery__item--wide) {
        grid-column: span 12;
    }

    .gallery__item:nth-child(2),
    .gallery__item:nth-child(3),
    .gallery__item:nth-child(4),
    .gallery__item:nth-child(5) {
        grid-column-start: auto;
    }

    .contact__form-wrap {
        padding: 24px;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 80px;
    }

    .btn--lg {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

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

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

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