/* ============================================
   Little Tree Montessori NYC - Premium Styles
   Upper West Side Bilingual Montessori School
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Brand Colors */
    --forest: #2d5a3d;
    --forest-dark: #1e3d2a;
    --forest-light: #3d7a52;
    --sage: #8fae8b;
    --sage-light: #b8d4b4;
    --cream: #faf8f5;
    --warm-white: #fffef9;
    --sand: #f0ead6;
    --terracotta: #c4704a;
    --terracotta-light: #d4896a;
    --wood: #8b6f47;
    --wood-light: #a68b5b;
    --gold: #c9a84c;
    --gold-light: #dfc172;

    /* Playful Accent Colors */
    --coral: #ff6b6b;
    --sky: #4ecdc4;
    --sunshine: #ffe66d;
    --lavender: #a29bfe;
    --peach: #fab1a0;
    --mint: #55efc4;
    --blush: #fd79a8;

    /* Neutral Colors */
    --charcoal: #2c2c2c;
    --dark: #1a1a1a;
    --text: #3a3a3a;
    --text-secondary: #6b6b6b;
    --text-muted: #999999;
    --white: #ffffff;
    --border: rgba(0, 0, 0, 0.08);

    /* Typography */
    --font-heading: 'Playfair Display', 'Noto Serif SC', Georgia, serif;
    --font-body: 'Inter', 'Noto Sans SC', 'PingFang SC', -apple-system, sans-serif;
    --font-accent: 'Cormorant Garamond', 'Noto Serif SC', serif;
    --font-zh: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 7rem;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--warm-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--charcoal);
}

/* ---------- Language Toggle ---------- */
body.lang-en .lang-zh { display: none !important; }
body.lang-zh .lang-en { display: none !important; }
body:not(.lang-en):not(.lang-zh) .lang-zh { display: none !important; }

/* ---------- Container ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
    background: transparent;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.7rem 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--forest);
    transition: var(--transition);
}

.logo a:hover {
    opacity: 0.85;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--forest);
}

.logo-text span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: -2px;
}

.nav:not(.scrolled) .logo-text {
    color: var(--white);
}

.nav:not(.scrolled) .logo-text span {
    color: rgba(255, 255, 255, 0.7);
}

.nav:not(.scrolled) .logo-icon {
    color: var(--white);
}

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

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text);
    position: relative;
    padding: 0.3rem 0;
}

.nav:not(.scrolled) .nav-links a {
    color: var(--white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--forest);
    transition: var(--transition);
    border-radius: 1px;
}

.nav:not(.scrolled) .nav-links a::after {
    background: var(--white);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Toggle Button */
.lang-toggle {
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.03em;
    font-family: var(--font-body);
}

.nav:not(.scrolled) .lang-toggle {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.lang-toggle:hover {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}

/* CTA Button in Nav */
.nav-cta {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.5rem 1.3rem;
    background: var(--forest);
    color: var(--white);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--forest-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(45, 90, 61, 0.3);
}

.nav:not(.scrolled) .nav-cta {
    background: var(--white);
    color: var(--forest);
}

.nav:not(.scrolled) .nav-cta:hover {
    background: var(--sage-light);
    color: var(--forest-dark);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
    border-radius: 2px;
}

.nav:not(.scrolled) .menu-toggle span {
    background: var(--white);
}

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

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

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

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2d5a3d 0%, #1e3d2a 40%, #3d7a52 100%);
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(143, 174, 139, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(201, 168, 76, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(139, 111, 71, 0.1) 0%, transparent 40%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        radial-gradient(circle at 25% 25%, var(--white) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--white) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s 0.3s forwards;
}

.hero-badge span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeUp 1s 0.5s forwards;
}

.hero h1 .accent {
    color: var(--sage-light);
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 1s 0.7s forwards;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s 0.9s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    animation: float 3s ease-in-out infinite;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--sand);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

.btn-forest:hover {
    background: var(--forest-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(45, 90, 61, 0.3);
}

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

.btn-terracotta:hover {
    background: var(--terracotta-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(196, 112, 74, 0.3);
}

.btn-lg {
    padding: 1.1rem 2.8rem;
    font-size: 0.85rem;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.72rem;
}

/* ---------- Section Styles ---------- */
.section {
    padding: var(--space-3xl) 0;
}

.section-cream {
    background: var(--cream);
}

.section-sand {
    background: var(--sand);
}

.section-forest {
    background: var(--forest);
    color: var(--white);
}

.section-forest h2,
.section-forest h3 {
    color: var(--white);
}

.section-forest p {
    color: rgba(255, 255, 255, 0.85);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 1rem;
    position: relative;
}

.section-forest .section-label {
    color: var(--sage-light);
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-divider {
    width: 50px;
    height: 2px;
    background: var(--forest);
    margin: 1.2rem auto;
    border-radius: 1px;
}

.section-forest .section-divider {
    background: var(--sage-light);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-forest .section-desc {
    color: rgba(255, 255, 255, 0.75);
}

/* ---------- Programs Cards ---------- */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.program-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}

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

.program-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.program-card:hover .program-card-image img {
    transform: scale(1.06);
}

.program-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--forest);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-xl);
}

.program-card-body {
    padding: 1.8rem;
}

.program-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.program-age {
    font-size: 0.85rem;
    color: var(--forest);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.program-card-body p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.program-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--forest);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.program-link:hover {
    color: var(--forest-dark);
    gap: 0.7rem;
}

/* ---------- Features / Why Choose ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(45, 90, 61, 0.04);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    background: var(--cream);
    border-radius: var(--radius-full);
    font-size: 1.6rem;
    color: var(--forest);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--forest);
    color: var(--white);
    transform: scale(1.08);
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.feature-item p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---------- Philosophy Section ---------- */
.philosophy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

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

.philosophy-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
}

.philosophy-content .lead {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    color: var(--forest);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.philosophy-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.philosophy-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    letter-spacing: 0.03em;
}

/* ---------- Curriculum Section ---------- */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.curriculum-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.curriculum-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--forest);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.curriculum-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.curriculum-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.curriculum-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

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

/* ---------- Video Section ---------- */
.video-section {
    position: relative;
    padding: 6rem 0;
    background: var(--dark);
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.9), rgba(30, 61, 42, 0.95));
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.video-content h2 {
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.video-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.testimonial-quote {
    font-size: 2rem;
    color: var(--sage);
    margin-bottom: 1rem;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    background: var(--sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--forest);
    font-size: 1rem;
}

.testimonial-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    background: var(--forest);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

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

.cta-banner h2 {
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ---------- About Page - Timeline ---------- */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--sage-light);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 2rem);
    text-align: right;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 2rem);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--forest);
    border-radius: var(--radius-full);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--sage-light);
    z-index: 1;
}

.timeline-content {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 0.3rem;
}

.timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

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

/* ---------- Team Section ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    margin: 0 auto 1.2rem;
    overflow: hidden;
    background: var(--sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--forest);
}

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

.team-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
}

.team-role {
    font-size: 0.82rem;
    color: var(--forest);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

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

/* ---------- Admissions Steps ---------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--forest);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1.2rem;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

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

/* ---------- FAQ Section ---------- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    flex: 1;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: var(--radius-full);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--forest);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--forest);
    color: var(--white);
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 1rem;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ---------- Contact Section ---------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-info-card {
    background: var(--forest);
    border-radius: var(--radius-lg);
    padding: 3rem;
    color: var(--white);
}

.contact-info-card h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.contact-info-card > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 0.92rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 0.2rem;
    font-family: var(--font-body);
}

.contact-detail p,
.contact-detail a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    line-height: 1.6;
}

.contact-detail a:hover {
    color: var(--white);
}

.contact-hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hours h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 0.8rem;
    font-family: var(--font-body);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.contact-form-wrapper h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.contact-form-wrapper > p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--forest);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}

textarea {
    height: 130px;
    resize: vertical;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* ---------- Map Section ---------- */
.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 3rem;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ---------- Page Header ---------- */
.page-header {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
    padding: 10rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(143, 174, 139, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 40%);
}

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

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

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

/* ---------- Values Section ---------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.value-icon {
    width: 55px;
    height: 55px;
    background: var(--cream);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

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

/* ---------- Bilingual Highlight ---------- */
.bilingual-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.bilingual-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.bilingual-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.bilingual-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.bilingual-card:first-child {
    grid-column: span 2;
}

.bilingual-flag {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.bilingual-card h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.bilingual-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.bilingual-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.bilingual-text .lead {
    font-size: 1.05rem;
    color: var(--forest);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.bilingual-text p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.bilingual-benefits {
    list-style: none;
    margin-top: 1.5rem;
}

.bilingual-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.7rem;
    font-size: 0.92rem;
    color: var(--text);
}

.bilingual-benefits li::before {
    content: '\2713';
    color: var(--forest);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* ---------- Schedule Table ---------- */
.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.schedule-table th {
    background: var(--forest);
    color: var(--white);
    padding: 1rem 1.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: left;
}

.schedule-table td {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.schedule-table tr:hover td {
    background: var(--cream);
}

/* ---------- Footer ---------- */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 1.5rem;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-text {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    display: block;
}

.footer-brand .logo-text span {
    color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.2rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--forest);
    color: var(--white);
}

.footer-section h3 {
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.2rem;
    font-family: var(--font-body);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

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

.footer-links a:hover {
    color: var(--sage-light);
    padding-left: 3px;
}

.footer-section p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section a:hover {
    color: var(--sage-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
}

.footer-bottom p {
    margin-bottom: 0.4rem;
}

.footer-partner {
    margin-top: 0.8rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-partner a {
    color: var(--sage-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-partner a:hover {
    color: var(--white);
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Stagger delay for grid items */
.fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }

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

    .section-header h2 {
        font-size: 2.3rem;
    }

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

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

    .philosophy-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .philosophy-image img {
        height: 350px;
    }

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

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

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

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

    .bilingual-section {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 2rem;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 4rem;
        padding-right: 0;
        text-align: left;
        flex-direction: row;
    }

    .timeline-dot {
        left: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        color: var(--text) !important;
        font-size: 1rem;
        padding: 0.8rem 0;
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

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

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span {
        background: var(--charcoal) !important;
    }

    .nav-actions {
        margin-right: 0.5rem;
    }

    .nav-actions .nav-cta {
        display: none;
    }

    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-scroll {
        display: none;
    }

    .section {
        padding: 4rem 0;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    .programs-grid,
    .features-grid,
    .curriculum-grid,
    .testimonials-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .philosophy-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .page-header {
        padding: 8rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-card,
    .contact-form-wrapper {
        padding: 2rem;
    }

    .bilingual-visual {
        grid-template-columns: 1fr;
    }

    .bilingual-card:first-child {
        grid-column: auto;
    }

    .video-content h2 {
        font-size: 1.8rem;
    }

    .cta-banner h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container,
    .container-wide,
    .container-narrow {
        padding: 0 1.2rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .philosophy-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .program-card-body {
        padding: 1.3rem;
    }

    .floating-shapes { display: none; }
    .hero-decor { display: none; }
}

/* ============================================
   PLAYFUL & LIVELY ENHANCEMENTS
   ============================================ */

/* ---------- Colorful Top Bar ---------- */
.color-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--coral), var(--sunshine), var(--mint), var(--sky), var(--lavender), var(--blush));
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
}

.nav {
    top: 4px;
}

/* ---------- Floating Decorative Shapes ---------- */
.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--sunshine);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--coral);
    top: 60%;
    right: -3%;
    animation-delay: -3s;
    animation-duration: 20s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--sky);
    bottom: 15%;
    left: 15%;
    animation-delay: -7s;
    animation-duration: 16s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    background: var(--lavender);
    top: 25%;
    right: 20%;
    animation-delay: -5s;
    animation-duration: 22s;
}

.shape-5 {
    width: 120px;
    height: 120px;
    background: var(--mint);
    top: 45%;
    left: 40%;
    animation-delay: -10s;
    animation-duration: 19s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -40px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(15px, 35px) rotate(270deg) scale(1.05);
    }
}

/* ---------- Hero Decorative Elements ---------- */
.hero-decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.hero-decor-leaf {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: leafFloat 8s ease-in-out infinite;
}

.hero-decor-leaf:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.hero-decor-leaf:nth-child(2) {
    top: 25%;
    right: 10%;
    animation-delay: -2s;
    font-size: 2.5rem;
}

.hero-decor-leaf:nth-child(3) {
    bottom: 20%;
    left: 12%;
    animation-delay: -4s;
    font-size: 2rem;
}

.hero-decor-leaf:nth-child(4) {
    bottom: 30%;
    right: 8%;
    animation-delay: -6s;
    font-size: 2.8rem;
}

@keyframes leafFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(10deg); }
    50% { transform: translateY(5px) rotate(-5deg); }
    75% { transform: translateY(-10px) rotate(5deg); }
}

/* ---------- Colorful Program Cards ---------- */
.program-card:nth-child(1) .program-card-badge { background: var(--coral); }
.program-card:nth-child(2) .program-card-badge { background: var(--sky); color: var(--charcoal); }
.program-card:nth-child(3) .program-card-badge { background: var(--lavender); }

.program-card:nth-child(1) { border-top: 3px solid var(--coral); }
.program-card:nth-child(2) { border-top: 3px solid var(--sky); }
.program-card:nth-child(3) { border-top: 3px solid var(--lavender); }

.program-card:hover {
    transform: translateY(-8px) rotate(-0.5deg);
}

/* ---------- Colorful Feature Icons ---------- */
.feature-item:nth-child(1) .feature-icon { background: #fff0f0; color: var(--coral); }
.feature-item:nth-child(2) .feature-icon { background: #e8faf8; color: var(--sky); }
.feature-item:nth-child(3) .feature-icon { background: #f0eeff; color: var(--lavender); }
.feature-item:nth-child(4) .feature-icon { background: #fff8e1; color: #f0a500; }

.feature-item:nth-child(1):hover .feature-icon { background: var(--coral); color: var(--white); }
.feature-item:nth-child(2):hover .feature-icon { background: var(--sky); color: var(--white); }
.feature-item:nth-child(3):hover .feature-icon { background: var(--lavender); color: var(--white); }
.feature-item:nth-child(4):hover .feature-icon { background: #f0a500; color: var(--white); }

/* ---------- Playful Hover Animations ---------- */
.program-card:hover .program-card-image img {
    transform: scale(1.08);
}

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

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--sage-light);
}

.value-card:nth-child(1):hover { border-left: 3px solid var(--coral); }
.value-card:nth-child(2):hover { border-left: 3px solid var(--sky); }
.value-card:nth-child(3):hover { border-left: 3px solid var(--lavender); }
.value-card:nth-child(4):hover { border-left: 3px solid var(--sunshine); }

/* ---------- Colorful Curriculum Cards ---------- */
.curriculum-card:nth-child(1)::before { background: var(--coral); }
.curriculum-card:nth-child(2)::before { background: var(--sky); }
.curriculum-card:nth-child(3)::before { background: var(--lavender); }
.curriculum-card:nth-child(4)::before { background: var(--sunshine); }
.curriculum-card:nth-child(5)::before { background: var(--mint); }
.curriculum-card:nth-child(6)::before { background: var(--blush); }

/* ---------- Bouncy Button Animation ---------- */
.btn:active {
    transform: scale(0.96);
}

.btn-primary:hover {
    animation: btnBounce 0.5s ease;
}

@keyframes btnBounce {
    0% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
    50% { transform: translateY(-2px); }
    70% { transform: translateY(-4px); }
    100% { transform: translateY(-2px); }
}

/* ---------- Colorful Step Numbers ---------- */
.step-card:nth-child(1) .step-number { background: var(--coral); }
.step-card:nth-child(2) .step-number { background: var(--sky); }
.step-card:nth-child(3) .step-number { background: var(--lavender); }
.step-card:nth-child(4) .step-number { background: var(--forest); }

/* ---------- Colorful Section Dividers ---------- */
.section-divider {
    background: linear-gradient(90deg, var(--coral), var(--sky), var(--lavender));
    height: 3px;
    width: 60px;
}

/* ---------- Playful Bilingual Cards ---------- */
.bilingual-card:first-child {
    background: linear-gradient(135deg, #f0faf2, #e8faf8);
    border-color: var(--sage-light);
}

.bilingual-card:nth-child(2) {
    background: linear-gradient(135deg, #fff8f0, #fff0f0);
}

.bilingual-card:nth-child(3) {
    background: linear-gradient(135deg, #fff0f4, #f0eeff);
}

/* ---------- Animated Testimonial Quotes ---------- */
.testimonial-card:nth-child(1) .testimonial-quote { color: var(--coral); }
.testimonial-card:nth-child(2) .testimonial-quote { color: var(--sky); }
.testimonial-card:nth-child(3) .testimonial-quote { color: var(--lavender); }

.testimonial-card:nth-child(1) .testimonial-avatar { background: #fff0f0; color: var(--coral); }
.testimonial-card:nth-child(2) .testimonial-avatar { background: #e8faf8; color: #2d9c90; }
.testimonial-card:nth-child(3) .testimonial-avatar { background: #f0eeff; color: var(--lavender); }

/* ---------- Wavy Section Separator ---------- */
.wave-separator {
    position: relative;
    height: 60px;
    overflow: hidden;
    margin-top: -1px;
}

.wave-separator svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
}

/* ---------- Hero Gradient Enhancement ---------- */
.hero-bg {
    background: linear-gradient(135deg, #2d5a3d 0%, #1e4d35 30%, #3d7a52 60%, #2d6a45 100%);
}

.hero-bg::after {
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(78, 205, 196, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(162, 155, 254, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 60% 20%, rgba(255, 230, 109, 0.08) 0%, transparent 35%);
}

/* ---------- CTA Banner Enhancement ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--forest) 0%, #1a4d35 50%, #2d6a45 100%);
}

.cta-banner::before {
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(78, 205, 196, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 230, 109, 0.05) 0%, transparent 40%);
}

/* ---------- Playful Scroll Indicator ---------- */
.hero-scroll span {
    color: rgba(255, 255, 255, 0.7);
}

.hero-scroll-line {
    background: linear-gradient(to bottom, var(--sunshine), transparent);
}

/* ---------- Colorful Timeline ---------- */
.timeline-item:nth-child(1) .timeline-dot { background: var(--coral); box-shadow: 0 0 0 3px #fff0f0; }
.timeline-item:nth-child(2) .timeline-dot { background: var(--sky); box-shadow: 0 0 0 3px #e8faf8; }
.timeline-item:nth-child(3) .timeline-dot { background: var(--lavender); box-shadow: 0 0 0 3px #f0eeff; }
.timeline-item:nth-child(4) .timeline-dot { background: var(--forest); box-shadow: 0 0 0 3px var(--sage-light); }

/* ---------- Confetti-Like Page Header ---------- */
.page-header {
    background: linear-gradient(135deg, var(--forest) 0%, #1a4d35 40%, #3d7a52 100%);
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255,107,107,0.08) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(78,205,196,0.08) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(162,155,254,0.06) 0%, transparent 30%),
        radial-gradient(circle at 30% 80%, rgba(255,230,109,0.06) 0%, transparent 25%),
        radial-gradient(circle at 70% 20%, rgba(85,239,196,0.06) 0%, transparent 25%);
    z-index: 0;
}

/* ---------- Video Section Enhancement ---------- */
.video-section::before {
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.92), rgba(30, 61, 42, 0.88), rgba(45, 90, 61, 0.92));
}

.video-wrapper {
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
}

/* ---------- Fun Loading Pulse ---------- */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.logo-icon {
    animation: pulse 3s ease-in-out infinite;
}

/* ---------- Sparkle on Stat Numbers ---------- */
.stat-number {
    background: linear-gradient(135deg, var(--forest), var(--sky));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
