/* ========================================
   LAKEVIEW ELEMENTARY SCHOOL
   Vibrant Modern · Emerald + Cream
   ======================================== */

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

: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;
    --emerald-950: #022c22;

    --cream-50: #fefdf8;
    --cream-100: #fdf9f0;
    --cream-200: #faf3e0;
    --cream-300: #f5e6c8;
    --cream-400: #edc99a;
    --cream-500: #d4a56a;

    --sand: #f5f0e8;
    --sand-light: #faf7f2;
    --sand-dark: #e8e0d0;

    --text-dark: #1a1a1a;
    --text-mid: #3d3d3d;
    --text-light: #6b6b6b;
    --text-white: #f5f5f5;

    --font-body: 'DM Sans', system-ui, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

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

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
}

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

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

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

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

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

/* --- Section Tags --- */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-600);
    background: var(--emerald-50);
    border: 1px solid var(--emerald-200);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag--light {
    color: var(--emerald-200);
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.25);
}

/* --- Section Headings --- */
.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-heading--light {
    color: #fff;
}

.text-accent {
    color: var(--emerald-600);
}

.text-accent-light {
    color: var(--emerald-300);
}

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

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

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

.section-header.center .section-subtitle {
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn--primary {
    background: var(--emerald-600);
    color: #fff;
    border-color: var(--emerald-600);
}

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

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

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

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

.btn--outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn--white {
    background: #fff;
    color: var(--emerald-700);
    border-color: #fff;
}

.btn--white:hover {
    background: var(--cream-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 253, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(5, 150, 105, 0.1);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--emerald-800);
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color 0.2s ease;
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald-600);
    transition: width 0.25s ease;
}

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

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    background: var(--emerald-600) !important;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-weight: 600 !important;
    transition: all 0.25s ease !important;
}

.nav__cta::after {
    display: none;
}

.nav__cta:hover {
    background: var(--emerald-700) !important;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--cream-50) 0%, var(--sand) 50%, var(--cream-100) 100%);
    padding: 100px 24px 60px;
    overflow: hidden;
}

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

.hero__shape {
    position: absolute;
}

.hero__shape--circle1 {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--emerald-100);
    top: -120px;
    right: -100px;
    opacity: 0.6;
}

.hero__shape--circle2 {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--cream-300);
    bottom: -60px;
    left: 10%;
    opacity: 0.5;
}

.hero__shape--rect1 {
    width: 120px;
    height: 120px;
    background: var(--emerald-200);
    border-radius: var(--radius-lg);
    top: 20%;
    right: 5%;
    transform: rotate(15deg);
    opacity: 0.4;
}

.hero__shape--rect2 {
    width: 80px;
    height: 80px;
    background: var(--emerald-300);
    border-radius: var(--radius-md);
    bottom: 25%;
    right: 15%;
    transform: rotate(-20deg);
    opacity: 0.3;
}

.hero__shape--triangle {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid var(--emerald-200);
    top: 30%;
    left: 3%;
    opacity: 0.3;
    transform: rotate(-10deg);
}

.hero__shape--dots {
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, var(--emerald-400) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    top: 60%;
    left: 8%;
    opacity: 0.4;
}

.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-200);
    color: var(--emerald-800);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald-500);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero__headline--accent {
    color: var(--emerald-600);
    position: relative;
}

.hero__headline--accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--emerald-200);
    border-radius: 3px;
    z-index: -1;
}

.hero__subheadline {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 500px;
}

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

/* Floating Stat Cards */
.hero__stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(5, 150, 105, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.stat-card--1 { transform: translateX(20px); }
.stat-card--1:hover { transform: translateX(20px) translateY(-4px); }
.stat-card--2 { transform: translateX(0px); }
.stat-card--2:hover { transform: translateY(-4px); }
.stat-card--3 { transform: translateX(-10px); }
.stat-card--3:hover { transform: translateX(-10px) translateY(-4px); }

.stat-card__icon {
    width: 52px;
    height: 52px;
    background: var(--emerald-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card__number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--emerald-700);
    line-height: 1;
}

.stat-card__label {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ========================================
   ABOUT
   ======================================== */
.section {
    padding: 100px 24px;
}

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

.about__image-wrapper {
    position: relative;
}

.about__image-wrapper img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    background: var(--emerald-200);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.about__floating-card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: var(--emerald-700);
    color: #fff;
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about__floating-number {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
}

.about__floating-label {
    font-size: 0.82rem;
    opacity: 0.85;
}

.about__content .section-tag {
    margin-bottom: 16px;
}

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

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

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

.pillar__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pillar__icon--green {
    background: var(--emerald-100);
}

.pillar__icon--cream {
    background: var(--cream-200);
}

.pillar strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

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

/* ========================================
   PROGRAMS
   ======================================== */
.programs {
    background: var(--sand);
    position: relative;
    overflow: hidden;
}

.programs__bg-block {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--emerald-50);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.programs .container {
    position: relative;
    z-index: 1;
}

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

.program-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    border: 1px solid rgba(5, 150, 105, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--emerald-200);
    transition: height 0.3s ease;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.program-card:hover::before {
    height: 6px;
    background: var(--emerald-500);
}

.program-card--accent {
    background: var(--emerald-700);
    border-color: transparent;
}

.program-card--accent::before {
    background: var(--emerald-400);
}

.program-card--accent:hover::before {
    background: var(--emerald-300);
}

.program-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.program-card__number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--emerald-100);
    line-height: 1;
}

.program-card--accent .program-card__number {
    color: rgba(255,255,255,0.2);
}

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

.program-card__icon-wrap--white {
    background: rgba(255,255,255,0.2);
}

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

.program-card--accent .program-card__title {
    color: #fff;
}

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

.program-card--accent .program-card__desc {
    color: rgba(255,255,255,0.75);
}

.program-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.program-card__features li {
    font-size: 0.88rem;
    color: var(--text-mid);
    padding-left: 20px;
    position: relative;
}

.program-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--emerald-400);
    border-radius: 50%;
}

.program-card--accent .program-card__features li {
    color: rgba(255,255,255,0.85);
}

.program-card--accent .program-card__features li::before {
    background: var(--emerald-300);
}

/* ========================================
   CAMPUS
   ======================================== */
.campus {
    background: var(--cream-50);
}

.campus__header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

.campus__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 44, 34, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.campus__item:hover .campus__item-overlay {
    opacity: 1;
}

.campus__item-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.campus__item--large {
    grid-column: span 5;
    grid-row: span 2;
}

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

/* ========================================
   COMMUNITY / TESTIMONIALS
   ======================================== */
.community {
    background: var(--emerald-800);
    position: relative;
    overflow: hidden;
}

.community__bg-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--emerald-900);
    top: -200px;
    right: -150px;
    pointer-events: none;
}

.community .section-tag {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: var(--emerald-300);
}

.community .section-heading {
    color: #fff;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.testimonial-card--accent {
    background: var(--emerald-600);
    border-color: transparent;
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-card__text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.88);
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    background: var(--emerald-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-card__author strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
}

.testimonial-card__author span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

/* ========================================
   CTA
   ======================================== */
.cta {
    background: var(--cream-100);
    padding: 80px 24px;
}

.cta__card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--emerald-700);
    border-radius: var(--radius-xl);
    padding: 72px 64px;
    position: relative;
    overflow: hidden;
}

.cta__geometric {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta__circle {
    position: absolute;
    border-radius: 50%;
}

.cta__circle--1 {
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255,255,255,0.08);
    bottom: -100px;
    left: -80px;
}

.cta__circle--2 {
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.05);
    top: -60px;
    right: 10%;
}

.cta__square {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    top: 20px;
    right: 5%;
    transform: rotate(25deg);
}

.cta__triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(255,255,255,0.07);
    bottom: 30px;
    left: 8%;
    transform: rotate(-15deg);
}

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

.cta__content .section-tag {
    margin-bottom: 20px;
}

.cta__text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 36px;
}

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

/* ========================================
   CONTACT
   ======================================== */
.contact {
    background: var(--sand-light);
}

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

.contact__text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 36px;
}

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

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

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

.contact__detail strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact__detail span,
.contact__detail a {
    font-size: 0.92rem;
    color: var(--text-mid);
}

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

/* Form */
.contact__form-wrapper {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(5, 150, 105, 0.08);
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 6px;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream-50);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--text-light);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-200);
    border-radius: var(--radius-md);
    margin-top: 16px;
    color: var(--emerald-800);
    font-size: 0.9rem;
    font-weight: 500;
}

.form__success.show {
    display: flex;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--emerald-950);
    color: rgba(255,255,255,0.7);
}

.footer__top {
    padding: 72px 24px 48px;
}

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer__logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

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

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links strong {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

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

.footer__links a {
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

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

.footer__contact address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px;
}

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

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

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--cream-50);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    padding: 8px;
}

.mobile-menu__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-menu__links a {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: color 0.2s ease;
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card--1,
    .stat-card--2,
    .stat-card--3 {
        transform: none;
    }

    .stat-card {
        flex: 1;
        min-width: 200px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__image-wrapper img {
        height: 450px;
    }

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

    .campus__gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .campus__item--large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .campus__item--wide {
        grid-column: span 2;
    }

    .campus__item {
        height: 240px;
    }

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

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

    .nav__toggle {
        display: flex;
    }

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

    .hero__headline {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .section {
        padding: 72px 24px;
    }

    .about__floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 16px;
        display: inline-block;
    }

    .about__image-accent {
        display: none;
    }

    .campus__header-row {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .campus__item--large,
    .campus__item--wide {
        grid-column: span 1;
    }

    .cta__card {
        padding: 48px 28px;
    }

    .cta__actions {
        flex-direction: column;
    }

    .cta__actions .btn {
        justify-content: center;
    }

    .contact__form-wrapper {
        padding: 28px;
    }

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

    .footer__bottom .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__stats {
        flex-direction: column;
    }

    .stat-card {
        min-width: 100%;
    }

    .hero__shape--circle1 {
        width: 300px;
        height: 300px;
    }

    .hero__shape--circle2 {
        width: 160px;
        height: 160px;
    }
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: no-preference) {
    .stat-card,
    .program-card,
    .testimonial-card,
    .btn {
        will-change: transform;
    }
}

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

    html {
        scroll-behavior: auto;
    }
}
