/* ============================================================
   ORCHIDS PRESCHOOLS — style.css
   Color Palette (from logo):
     Navy  #1A237E | Red  #C8102E | Green #2D7D32
     Yellow #FFD600 | Orange #FF6B35 | Pink #FF4E8B | Sky #29B6F6
   ============================================================ */

/* ── 1. ROOT VARIABLES ─────────────────────────────────────── */
:root {
  --navy:    #1A237E;
  --navy-lt: #3949AB;
  --red:     #C8102E;
  --red-lt:  #FF4560;
  --green:   #2D7D32;
  --green-lt:#43A047;
  --yellow:  #FFD600;
  --orange:  #FF6B35;
  --pink:    #FF4E8B;
  --sky:     #29B6F6;
  --purple:  #8B5CF6;
  --mint:    #00C9A7;

  --cream:   #FFFBF2;
  --white:   #FFFFFF;
  --shadow-sm: 0 4px 16px rgba(26,35,126,.10);
  --shadow:    0 8px 32px rgba(26,35,126,.14);
  --shadow-lg: 0 20px 60px rgba(26,35,126,.20);
  --radius:  24px;
  --transition: .3s cubic-bezier(.34,1.56,.64,1);
}

/* ── 2. RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: #222;
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='6' fill='%23C8102E' opacity='.7'/%3E%3C/svg%3E") 12 12, auto;
}
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

/* ── 3. TYPOGRAPHY ─────────────────────────────────────────── */
.heading {
  font-family: 'Baloo 2', cursive;
  line-height: 1.15;
}
.gradient-text {
  background: linear-gradient(135deg, var(--navy) 0%, var(--red) 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 2px; color: var(--red);
  margin-bottom: 14px;
}
.section-tag::before, .section-tag::after {
  content: ''; width: 28px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border-radius: 3px;
}
.section-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--navy); line-height: 1.2; margin-bottom: 14px;
}
.section-title em { font-style: normal; color: var(--red); }
.section-sub { font-size: 16px; color: #666; line-height: 1.75; max-width: 600px; }

/* ── 4. SCROLL REVEAL ──────────────────────────────────────── */
.reveal        { opacity: 0; transform: translateY(50px);  transition: opacity .7s ease, transform .7s ease; }
.reveal-left   { opacity: 0; transform: translateX(-50px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right  { opacity: 0; transform: translateX(50px);  transition: opacity .7s ease, transform .7s ease; }
.reveal-scale  { opacity: 0; transform: scale(.85);        transition: opacity .7s ease, transform .7s ease; }
.reveal.visible, .reveal-left.visible,
.reveal-right.visible, .reveal-scale.visible {
  opacity: 1; transform: none;
}

/* ── 5. ANIMATED GRADIENT BG SHAPES ───────────────────────── */
.bg-blobs {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
  animation: blobFloat 15s ease-in-out infinite; opacity: .08;
}
.blob-1 { width:500px; height:500px; background:var(--navy);  top:-150px; left:-150px; animation-duration:18s; }
.blob-2 { width:400px; height:400px; background:var(--red);   top:30%;    right:-120px; animation-duration:14s; animation-delay:3s; }
.blob-3 { width:350px; height:350px; background:var(--green); bottom:10%; left:10%; animation-duration:20s; animation-delay:6s; }
.blob-4 { width:300px; height:300px; background:var(--yellow);bottom:20%; right:15%; animation-duration:12s; animation-delay:2s; }
.blob-5 { width:250px; height:250px; background:var(--pink);  top:50%;    left:40%; animation-duration:16s; animation-delay:4s; }

@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1) rotate(0deg); }
  33%     { transform: translate(30px,-40px) scale(1.05) rotate(5deg); }
  66%     { transform: translate(-20px,30px) scale(.95) rotate(-5deg); }
}

/* ── 6. FLOATING DECORATIONS ───────────────────────────────── */
.float-deco {
  position: absolute; pointer-events: none; z-index: 2;
  animation: floatDeco 4s ease-in-out infinite;
  user-select: none; font-size: 28px; opacity: .75;
}
@keyframes floatDeco {
  0%,100% { transform: translateY(0) rotate(0deg); }
  25%     { transform: translateY(-14px) rotate(8deg); }
  75%     { transform: translateY(8px) rotate(-6deg); }
}

/* ── 7. NAVBAR ─────────────────────────────────────────────── */
#navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(26,35,126,.08);
  height: 90px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 4px 32px rgba(26,35,126,.16); }

.nav-logo img {
  height: 76px;
  transition: transform var(--transition);
}
.nav-logo img:hover { transform: scale(1.08) rotate(-4deg); }

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-weight: 800; font-size: 15px; color: var(--navy);
  position: relative; padding-bottom: 5px;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transition: width .35s cubic-bezier(.34,1.56,.64,1);
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  color: var(--white) !important;
  padding: 10px 26px; border-radius: 50px;
  font-weight: 900 !important; font-size: 14px !important;
  box-shadow: 0 6px 20px rgba(200,16,46,.35);
  transition: transform var(--transition), box-shadow .3s !important;
  animation: pulseBtn 3s ease-in-out infinite;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-3px) scale(1.06) !important;
  box-shadow: 0 10px 28px rgba(200,16,46,.5) !important;
  animation: none !important;
}
@keyframes pulseBtn {
  0%,100% { box-shadow: 0 6px 20px rgba(200,16,46,.35); }
  50%     { box-shadow: 0 6px 32px rgba(200,16,46,.6); }
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
}
.hamburger span {
  width: 26px; height: 3px; border-radius: 3px;
  background: var(--navy); transition: all .3s;
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

/* ── 8. MOBILE MENU ────────────────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0; top: 90px;
  background: rgba(255,255,255,.98); backdrop-filter: blur(16px);
  z-index: 999; flex-direction: column; align-items: center;
  justify-content: center; gap: 32px;
  opacity: 0; transform: translateY(-20px);
  transition: opacity .35s, transform .35s;
}
.mobile-menu.open { display: flex; opacity: 1; transform: none; }
.mobile-menu a { font-size: 24px; font-weight: 900; color: var(--navy); transition: color .2s; }
.mobile-menu a:hover { color: var(--red); }

/* ── 9. BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 32px; border-radius: 50px; border: none;
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 15px;
  cursor: pointer; transition: transform var(--transition), box-shadow .3s;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.2);
  transform: translateX(-100%);
  transition: transform .4s;
}
.btn:hover::after { transform: translateX(100%); }
.btn:active { transform: scale(.96) !important; }

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  color: var(--white);
  box-shadow: 0 6px 22px rgba(200,16,46,.38);
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 32px rgba(200,16,46,.50);
}
.btn-secondary {
  background: var(--white); color: var(--navy);
  border: 3px solid var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  transform: translateY(-4px) scale(1.04);
  background: var(--navy); color: var(--white);
  box-shadow: var(--shadow);
}
.btn-yellow {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  color: var(--navy);
  box-shadow: 0 6px 22px rgba(255,214,0,.45);
}
.btn-yellow:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 32px rgba(255,214,0,.6);
}

/* ── 10. HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 95vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 40px;
  padding: 70px 6% 80px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg,
    #FFF8F0 0%, #FFECF0 30%, #EEF1FF 60%, #F0FFF4 100%);
}
/* Animated rainbow gradient overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg,
    rgba(200,16,46,.05) 0%,
    rgba(255,107,53,.06) 25%,
    rgba(26,35,126,.05) 50%,
    rgba(45,125,50,.04) 75%,
    rgba(255,214,0,.05) 100%);
  animation: gradientShift 8s ease-in-out infinite alternate;
}
@keyframes gradientShift {
  0%   { opacity: .6; transform: scale(1); }
  100% { opacity: 1;  transform: scale(1.02); }
}

/* Wavy bottom edge */
.hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; width: 100%;
  height: 90px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90'%3E%3Cpath fill='%23FFFBF2' d='M0,45 C240,90 480,0 720,45 C960,90 1200,0 1440,45 L1440,90 L0,90 Z'/%3E%3C/svg%3E")
  no-repeat bottom / cover;
  z-index: 2;
}

/* Spinning/floating shape decorations */
.hero-shape {
  position: absolute; pointer-events: none; z-index: 1; opacity: .18;
  animation: spinFloat 12s linear infinite;
}
.hero-shape:nth-child(1){ width:80px;height:80px;background:var(--red);border-radius:30% 70% 70% 30%/30% 30% 70% 70%;top:10%;left:8%; animation-duration:10s; }
.hero-shape:nth-child(2){ width:60px;height:60px;background:var(--yellow);border-radius:50%;top:20%;right:10%; animation-duration:14s; animation-direction:reverse; }
.hero-shape:nth-child(3){ width:50px;height:50px;background:var(--green);clip-path:polygon(50% 0%,100% 100%,0% 100%);bottom:30%;left:5%; animation-duration:8s; }
.hero-shape:nth-child(4){ width:70px;height:70px;background:var(--navy);clip-path:polygon(50%0%,61%35%,98%35%,68%57%,79%91%,50%70%,21%91%,32%57%,2%35%,39%35%);bottom:15%;right:8%; animation-duration:16s; animation-direction:reverse; }
@keyframes spinFloat {
  0%    { transform: rotate(0deg) translateY(0); }
  50%   { transform: rotate(180deg) translateY(-20px); }
  100%  { transform: rotate(360deg) translateY(0); }
}

/* Hero text side */
.hero-text { position: relative; z-index: 3; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 3px solid var(--yellow);
  color: var(--navy); font-weight: 900; font-size: 13px;
  padding: 7px 18px; border-radius: 50px;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(255,214,0,.3);
  animation: badgeBounce 2s ease-in-out infinite;
}
.hero-badge .badge-icon { font-size: 20px; animation: wiggle 2s ease-in-out infinite; display: inline-block; }
@keyframes badgeBounce { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-5px); } }
@keyframes wiggle { 0%,100%{ transform: rotate(-12deg); } 50%{ transform: rotate(12deg); } }

.hero h1 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.1; color: var(--navy);
  margin-bottom: 20px;
}
.hero h1 .line-red   { color: var(--red); }
.hero h1 .line-green { color: var(--green); }

/* Typewriter cursor */
.typewriter { border-right: 4px solid var(--orange); animation: blink .8s step-end infinite; }
@keyframes blink { 0%,100%{ border-color: var(--orange); } 50%{ border-color: transparent; } }

.hero p { font-size: 17px; color: #555; line-height: 1.75; max-width: 500px; margin-bottom: 36px; }

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

/* Trust badges below buttons */
.hero-trust {
  display: flex; align-items: center; gap: 20px;
  margin-top: 28px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 800; color: #666;
}
.trust-dot {
  width: 10px; height: 10px; border-radius: 50%;
  animation: trustPulse 2s ease-in-out infinite;
}
.td-1 { background: var(--green); }
.td-2 { background: var(--orange); }
.td-3 { background: var(--sky); }
@keyframes trustPulse {
  0%,100%{ transform: scale(1); }
  50%    { transform: scale(1.5); }
}

/* Hero image side */
.hero-visual { position: relative; z-index: 3; }

/* Fun starburst frame behind image */
.hero-frame {
  position: relative;
  width: 100%; max-width: 520px; margin: 0 auto;
}
.hero-frame::before {
  content: '';
  position: absolute; inset: -16px;
  background: conic-gradient(
    var(--red) 0deg, var(--orange) 60deg, var(--yellow) 120deg,
    var(--green) 180deg, var(--sky) 240deg, var(--purple) 300deg, var(--red) 360deg
  );
  border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
  animation: morphBorder 8s ease-in-out infinite, rotateBorder 20s linear infinite;
  opacity: .25; z-index: -1;
}
@keyframes morphBorder {
  0%,100%{ border-radius:40% 60% 60% 40%/50% 40% 60% 50%; }
  33%    { border-radius:55% 45% 40% 60%/60% 55% 45% 40%; }
  66%    { border-radius:60% 40% 45% 55%/40% 60% 55% 45%; }
}
@keyframes rotateBorder { to { transform: rotate(360deg); } }

.hero-img-blob {
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  animation: morphBlob 8s ease-in-out infinite;
  position: relative;
}
.hero-img-blob img { width: 100%; height: 100%; object-fit: cover; }
@keyframes morphBlob {
  0%,100%{ border-radius:40% 60% 55% 45%/45% 40% 60% 55%; }
  33%    { border-radius:55% 45% 40% 60%/60% 55% 45% 40%; }
  66%    { border-radius:60% 40% 45% 55%/40% 60% 55% 45%; }
}

/* Sticker pills floating around image */
.sticker {
  position: absolute; z-index: 5;
  background: var(--white); border-radius: 20px;
  padding: 10px 16px; box-shadow: var(--shadow);
  font-weight: 900; font-size: 13px;
  display: flex; align-items: center; gap: 7px;
  animation: floatSticker 3s ease-in-out infinite;
  white-space: nowrap; border-left: 4px solid;
  cursor: default;
  transition: transform var(--transition);
}
.sticker:hover { transform: scale(1.1) rotate(-3deg) !important; animation-play-state: paused; }
.sticker-1 { top: 5%;  left: -12%; border-color: var(--yellow); animation-delay: 0s; }
.sticker-2 { top: 38%; right: -10%; border-color: var(--sky);   animation-delay: .8s; }
.sticker-3 { bottom: 10%; left: -6%; border-color: var(--green); animation-delay: 1.6s; }
@keyframes floatSticker {
  0%,100%{ transform: translateY(0) rotate(-2deg); }
  50%    { transform: translateY(-12px) rotate(2deg); }
}

/* ── 11. WAVE SEPARATORS ───────────────────────────────────── */
.wave-sep {
  display: block; width: 100%; overflow: hidden;
  line-height: 0; position: relative; z-index: 1;
}
.wave-sep svg { display: block; width: 100%; }

/* ── 12. ABOUT ─────────────────────────────────────────────── */
.about {
  background: var(--white);
  padding: 90px 6%;
  position: relative; overflow: hidden; z-index: 1;
}
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}

/* Image collage */
.about-collage { position: relative; }
.collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 14px;
}
.collage-img {
  border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow .3s;
}
.collage-img img { width:100%; height:100%; object-fit:cover; }
.collage-img:hover { transform: translateY(-8px) scale(1.03); box-shadow: var(--shadow); }
.collage-img.span-full {
  grid-column: 1 / -1; height: 220px;
}
.collage-img:nth-child(2) { transform: rotate(2deg); }
.collage-img:nth-child(2):hover { transform: rotate(2deg) translateY(-8px) scale(1.03); }
.collage-img:nth-child(3) { transform: rotate(-2deg); }
.collage-img:nth-child(3):hover { transform: rotate(-2deg) translateY(-8px) scale(1.03); }

.exp-badge {
  position: absolute; bottom: -24px; right: -20px;
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  color: var(--white); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  font-weight: 900; font-size: 13px; line-height: 1.3;
  box-shadow: 0 8px 28px rgba(200,16,46,.4);
  animation: floatDeco 4s ease-in-out infinite;
  z-index: 4; cursor: default;
  transition: transform var(--transition);
}
.exp-badge:hover { transform: scale(1.15) rotate(10deg); animation-play-state: paused; }
.exp-badge strong { font-size: 32px; line-height: 1; }

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.feature-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px 18px 18px; border-radius: 18px;
  border: 2px solid transparent; background: #FAFAFA;
  cursor: default;
  transition: transform .3s, background .3s, border-color .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.feature-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 5px; border-radius: 18px 0 0 18px;
  transition: width .3s;
}
.fi-navy::before   { background: var(--navy); }
.fi-red::before    { background: var(--red); }
.fi-green::before  { background: var(--green); }
.fi-orange::before { background: var(--orange); }

.feature-item:hover {
  transform: translateX(8px);
  border-color: rgba(26,35,126,.12);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.feature-item:hover::before { width: 8px; }
.feature-icon {
  width: 52px; height: 52px; border-radius: 16px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; transition: transform var(--transition);
}
.feature-item:hover .feature-icon { transform: scale(1.15) rotate(-6deg); }
.fi-navy .feature-icon   { background: #EEF1FF; }
.fi-red .feature-icon    { background: #FFF0F3; }
.fi-green .feature-icon  { background: #F0FBF0; }
.fi-orange .feature-icon { background: #FFF4ED; }
.feature-item h4 { font-size: 15px; font-weight: 900; color: var(--navy); margin-bottom: 4px; }
.feature-item p  { font-size: 13px; color: #888; line-height: 1.55; }

/* ── 13. PROGRAMS ──────────────────────────────────────────── */
.programs {
  background: linear-gradient(180deg, #F2F4FF 0%, #FFF0F3 50%, #F0FBF0 100%);
  padding: 90px 6%; position: relative; z-index: 1;
}
.programs-header { text-align: center; margin-bottom: 60px; }
.programs-header .section-sub { margin: 0 auto; }

.programs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px; max-width: 1200px; margin: 0 auto;
}

.program-card {
  background: var(--white); border-radius: 28px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow .35s;
  cursor: default; position: relative;
}
.program-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* Gradient top accent bar */
.program-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 5px;
  transition: height .35s;
}
.card-navy::before  { background: linear-gradient(90deg, var(--navy), var(--sky)); }
.card-red::before   { background: linear-gradient(90deg, var(--red), var(--pink)); }
.card-green::before { background: linear-gradient(90deg, var(--green), var(--mint)); }
.program-card:hover::before { height: 8px; }

.program-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.program-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.program-card:hover .program-img img { transform: scale(1.1) rotate(1deg); }

.program-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,35,126,.5) 0%, transparent 60%);
  opacity: 0; transition: opacity .35s;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.program-card:hover .program-img-overlay { opacity: 1; }

.program-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--white); border-radius: 50px;
  padding: 5px 14px; font-size: 12px; font-weight: 900;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
  display: flex; align-items: center; gap: 5px;
}

.program-body { padding: 26px; }
.program-body h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 22px; color: var(--navy); margin-bottom: 8px;
}
.program-body p { font-size: 13px; color: #888; line-height: 1.65; margin-bottom: 20px; }

.program-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 2px dashed #EEE;
}
.program-age {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 800; padding: 6px 14px;
  border-radius: 50px; border: 2px solid;
}
.age-navy  { color: var(--navy);  border-color: var(--navy);  background: #EEF1FF; }
.age-red   { color: var(--red);   border-color: var(--red);   background: #FFF0F3; }
.age-green { color: var(--green); border-color: var(--green); background: #F0FBF0; }

.learn-more-link {
  font-size: 13px; font-weight: 900; color: var(--red);
  display: flex; align-items: center; gap: 4px;
  transition: gap .3s, color .25s;
}
.learn-more-link:hover { gap: 10px; color: var(--orange); }

/* ── 14. STATS ─────────────────────────────────────────────── */
.stats {
  background: linear-gradient(135deg, var(--navy) 0%, #283593 50%, #3949AB 100%);
  padding: 100px 6%; position: relative; overflow: hidden; z-index: 1;
}
/* Polka-dot overlay */
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 28px; max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 2;
}
.stat-card {
  text-align: center; padding: 36px 20px;
  border-radius: 28px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  transition: transform var(--transition), background .3s, box-shadow .3s;
  cursor: default; position: relative; overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.1), transparent);
  opacity: 0; transition: opacity .3s;
}
.stat-card:hover {
  transform: translateY(-12px) scale(1.04);
  background: rgba(255,255,255,.13);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.stat-card:hover::after { opacity: 1; }

.stat-icon {
  font-size: 50px; display: block; margin-bottom: 14px;
  animation: iconBounce 2.5s ease-in-out infinite;
}
@keyframes iconBounce {
  0%,100%{ transform: translateY(0) scale(1); }
  30%    { transform: translateY(-10px) scale(1.1); }
  60%    { transform: translateY(-4px) scale(1.05); }
}
/* Stagger bounce per card */
.stat-card:nth-child(1) .stat-icon { animation-delay: 0s; }
.stat-card:nth-child(2) .stat-icon { animation-delay: .3s; }
.stat-card:nth-child(3) .stat-icon { animation-delay: .6s; }
.stat-card:nth-child(4) .stat-icon { animation-delay: .9s; }

.stat-number {
  font-family: 'Baloo 2', cursive;
  font-size: 58px; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 10px;
}
.stat-label { font-size: 15px; font-weight: 800; color: rgba(255,255,255,.85); }

/* ── 15. ACTIVITIES ────────────────────────────────────────── */
.activities {
  padding: 90px 6%;
  background: linear-gradient(135deg, #FFF4ED 0%, #FFFBF2 50%, #F0FBF0 100%);
  position: relative; overflow: hidden; z-index: 1;
}
.activities-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.act-img-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  position: relative;
}
.act-img {
  border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow-sm); position: relative;
  cursor: default; transition: transform var(--transition), box-shadow .3s;
}
.act-img img { width:100%; height:100%; object-fit:cover; display:block; aspect-ratio:1; }
.act-img:nth-child(even)  { margin-top: 28px; }
.act-img:nth-child(odd)   { margin-top: -14px; }
.act-img:nth-child(1)     { margin-top: 0; }
.act-img:hover { transform: scale(1.06) rotate(2deg); box-shadow: var(--shadow); }

/* Emoji pop on hover */
.act-img::after {
  content: attr(data-emoji);
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  font-size: 50px; transition: transform var(--transition);
  z-index: 2;
}
.act-img:hover::after { transform: translate(-50%,-50%) scale(1); }

/* Color overlays */
.act-img::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  transition: opacity .35s; z-index: 1; border-radius: inherit;
}
.act-img:nth-child(1)::before { background: rgba(26,35,126,.45); }
.act-img:nth-child(2)::before { background: rgba(200,16,46,.45); }
.act-img:nth-child(3)::before { background: rgba(45,125,50,.45); }
.act-img:nth-child(4)::before { background: rgba(255,107,53,.45); }
.act-img:hover::before { opacity: 1; }

.activity-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 30px;
}
.act-card {
  padding: 20px 18px; border-radius: 20px;
  display: flex; flex-direction: column; gap: 8px;
  cursor: default; transition: transform var(--transition), box-shadow .3s;
  border: 2px solid transparent; position: relative; overflow: hidden;
}
.act-card::before {
  content: '';
  position: absolute; inset: 0; opacity: 0;
  transition: opacity .3s; border-radius: inherit;
}
.act-card:hover { transform: translateY(-8px) scale(1.03); box-shadow: var(--shadow); border-color: rgba(0,0,0,.05); }
.act-card:hover::before { opacity: 1; }

.ac-navy   { background: #EEF1FF; }
.ac-red    { background: #FFF0F3; }
.ac-green  { background: #F0FBF0; }
.ac-yellow { background: #FFFDE7; }
.ac-navy::before   { background: linear-gradient(135deg,rgba(26,35,126,.06),transparent); }
.ac-red::before    { background: linear-gradient(135deg,rgba(200,16,46,.06),transparent); }
.ac-green::before  { background: linear-gradient(135deg,rgba(45,125,50,.06),transparent); }
.ac-yellow::before { background: linear-gradient(135deg,rgba(255,214,0,.12),transparent); }

.act-card-icon {
  font-size: 32px; transition: transform var(--transition);
}
.act-card:hover .act-card-icon { transform: scale(1.3) rotate(-10deg); }
.act-card h4 { font-size: 15px; font-weight: 900; color: var(--navy); }
.act-card p  { font-size: 12px; color: #888; }

/* ── 16. GALLERY ───────────────────────────────────────────── */
.gallery {
  padding: 90px 6%;
  background: var(--white);
  position: relative; overflow: hidden; z-index: 1;
}
.gallery-header { text-align: center; margin-bottom: 52px; }
.gallery-header .section-sub { margin: 0 auto; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
  max-width: 1200px; margin: 0 auto;
}
.g-item {
  border-radius: 22px; overflow: hidden;
  position: relative; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow .35s;
}
.g-item:hover { transform: scale(1.04) rotate(-.5deg); box-shadow: var(--shadow-lg); }
.g-item.tall  { grid-row: span 2; }
.g-item.wide  { grid-column: span 2; }
.g-item img   { width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.g-item:hover img { transform: scale(1.12); }

.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,35,126,.75) 0%, rgba(200,16,46,.2) 60%, transparent 100%);
  opacity: 0; transition: opacity .35s;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end; padding: 20px;
  gap: 6px;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay .g-emoji { font-size: 40px; transform: scale(0); transition: transform var(--transition); }
.g-item:hover .g-overlay .g-emoji { transform: scale(1); }
.g-overlay span { color: var(--white); font-weight: 900; font-size: 14px; }

/* Gallery filter tabs */
.gallery-filter {
  display: flex; gap: 10px; justify-content: center;
  margin-bottom: 36px; flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 22px; border-radius: 50px; border: 2.5px solid;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 13px;
  cursor: pointer; transition: all .3s;
  background: transparent;
}
.filter-btn.active, .filter-btn:hover {
  background: linear-gradient(135deg, var(--navy), var(--sky));
  color: var(--white); border-color: transparent;
  transform: translateY(-2px); box-shadow: var(--shadow-sm);
}
.filter-btn { color: var(--navy); border-color: var(--navy); }

/* ── 17. EVENTS ────────────────────────────────────────────── */
.events {
  padding: 90px 6%;
  background: linear-gradient(135deg, #F8F0FF 0%, #FFF0F3 50%, #EEF1FF 100%);
  position: relative; overflow: hidden; z-index: 1;
}
.events-header { text-align: center; margin-bottom: 56px; }
.events-header .section-sub { margin: 0 auto; }

.events-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; max-width: 1200px; margin: 0 auto;
}
.event-card {
  background: var(--white); border-radius: 28px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow .35s;
  cursor: default; position: relative;
}
.event-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); }
.event-img { aspect-ratio: 3/2; overflow: hidden; position: relative; }
.event-img img { width:100%;height:100%;object-fit:cover;transition:transform .6s; }
.event-card:hover .event-img img { transform: scale(1.1); }

/* Colour ribbon on top */
.event-ribbon {
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
}
.er-celebration { background: linear-gradient(90deg, var(--red), var(--pink)); }
.er-festival    { background: linear-gradient(90deg, var(--yellow), var(--orange)); }
.er-performance { background: linear-gradient(90deg, var(--navy), var(--purple)); }
.er-activity    { background: linear-gradient(90deg, var(--green), var(--mint)); }

.event-body { padding: 22px 24px; }
.event-badge {
  font-size: 11px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 1.5px; padding: 5px 14px; border-radius: 50px;
  display: inline-flex; align-items: center; gap: 5px;
  margin-bottom: 12px;
}
.eb-celebration { background:#FFF0F3; color:var(--red); }
.eb-festival    { background:#FFFDE7; color:#E65100; }
.eb-performance { background:#F3EFFF; color:var(--purple); }
.eb-activity    { background:#F0FBF0; color:var(--green); }

.event-body h3 { font-size: 20px; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.event-body p  { font-size: 13px; color: #888; line-height: 1.6; }

/* ── 18. TESTIMONIALS ──────────────────────────────────────── */
.testimonials {
  padding: 90px 6%;
  background: linear-gradient(180deg, #E8F4FF 0%, #F0F8FF 100%);
  position: relative; overflow: hidden; z-index: 1; text-align: center;
}
.testimonials-header { margin-bottom: 52px; }
.testimonials-header .section-sub { margin: 0 auto; }

.testi-track-wrapper {
  overflow: hidden;
  mask: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.testi-track {
  display: flex; gap: 24px;
  animation: scrollLeft 32s linear infinite;
  width: max-content;
}
.testi-track:hover { animation-play-state: paused; }
@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testi-card {
  background: var(--white); border-radius: 24px; padding: 28px 26px;
  min-width: 320px; max-width: 320px; text-align: left;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid; transition: transform var(--transition);
  cursor: default;
}
.testi-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.tc-1 { border-color: var(--red); }
.tc-2 { border-color: var(--navy); }
.tc-3 { border-color: var(--green); }
.tc-4 { border-color: var(--orange); }
.tc-5 { border-color: var(--purple); }

.testi-stars { color: var(--yellow); font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text  { font-size: 14px; color: #555; line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; background: #EEF1FF; flex-shrink: 0;
}
.testi-name { font-weight: 900; font-size: 14px; color: var(--navy); }
.testi-role { font-size: 12px; color: #AAA; margin-top: 2px; }

/* ── 19. CTA ───────────────────────────────────────────────── */
.cta-section {
  padding: 90px 6%;
  background: linear-gradient(135deg, var(--red) 0%, #A00020 60%, var(--navy) 100%);
  color: var(--white); text-align: center;
  position: relative; overflow: hidden; z-index: 1;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,214,0,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(255,107,53,.12) 0%, transparent 60%);
}
.cta-section > .cta-inner { position: relative; z-index: 2; }

.cta-section h2 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(30px, 4vw, 52px); margin-bottom: 16px;
}
.cta-section p { font-size: 17px; opacity: .9; max-width: 540px; margin: 0 auto 40px; line-height: 1.7; }

.cta-form {
  display: flex; gap: 12px; max-width: 500px; margin: 0 auto;
  flex-wrap: wrap; justify-content: center;
}
.cta-input {
  flex: 1; min-width: 220px; padding: 14px 22px;
  border-radius: 50px; border: none; outline: none;
  font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 600;
  background: rgba(255,255,255,.95);
  transition: transform .2s, box-shadow .2s;
}
.cta-input:focus { transform: scale(1.02); box-shadow: 0 0 0 4px rgba(255,214,0,.4); }
.cta-input.error { box-shadow: 0 0 0 4px rgba(255,100,100,.5); }

/* Floating CTA stars */
.cta-star {
  position: absolute; font-size: 28px; pointer-events: none;
  animation: floatDeco 5s ease-in-out infinite; opacity: .45;
}
.cta-star:nth-child(1){ top:10%; left:5%;  animation-delay:0s; }
.cta-star:nth-child(2){ top:20%; right:7%; animation-delay:1.5s; }
.cta-star:nth-child(3){ bottom:15%; left:8%; animation-delay:3s; }
.cta-star:nth-child(4){ bottom:20%; right:5%; animation-delay:.8s; }
.cta-star:nth-child(5){ top:55%; left:2%; animation-delay:2.2s; }
.cta-star:nth-child(6){ top:60%; right:3%; animation-delay:2.8s; }

/* ── 20. FOOTER ────────────────────────────────────────────── */
footer {
  background: linear-gradient(180deg, var(--navy) 0%, #0D1752 100%);
  color: rgba(255,255,255,.82);
  padding: 70px 6% 32px;
  position: relative; overflow: hidden; z-index: 1;
}
footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.footer-inner { position: relative; z-index: 2; }
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 52px; margin-bottom: 52px;
}
.footer-brand img {
  height: 58px; margin-bottom: 18px;
  filter: brightness(0) invert(1);
  transition: transform var(--transition);
}
.footer-brand img:hover { transform: scale(1.06) rotate(-3deg); }
.footer-brand p { font-size: 14px; line-height: 1.75; opacity: .7; margin-bottom: 22px; }
.footer-tagline {
  font-style: italic; font-weight: 700;
  color: var(--yellow); font-size: 15px; margin-bottom: 22px;
}

.social-row { display: flex; gap: 12px; }
.social-btn {
  width: 42px; height: 42px; border-radius: 13px; font-size: 18px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
}
.social-btn:hover { transform: translateY(-4px) scale(1.15); background: var(--red); border-color: var(--red); }

.footer-col h4 { font-size: 15px; font-weight: 900; color: var(--white); margin-bottom: 22px; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
  font-size: 14px; opacity: .7; transition: opacity .25s, color .25s, padding-left .25s;
  display: flex; align-items: center; gap: 7px;
}
.footer-links li a:hover { opacity: 1; color: var(--yellow); padding-left: 6px; }

.footer-contact li {
  display: flex; gap: 10px; font-size: 14px; opacity: .75;
  align-items: flex-start; margin-bottom: 14px;
  transition: opacity .25s;
}
.footer-contact li:hover { opacity: 1; }
.footer-contact li .fc-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 26px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; opacity: .6; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { opacity: 1; color: var(--yellow); }

/* ── 21. LIGHTBOX ──────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.9); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-img {
  max-width: 88vw; max-height: 88vh;
  border-radius: 24px; object-fit: contain;
  transform: scale(.9); transition: transform .35s var(--transition);
  box-shadow: 0 0 60px rgba(0,0,0,.5);
}
.lightbox.open .lb-img { transform: scale(1); }
.lb-close {
  position: absolute; top: 22px; right: 26px;
  color: var(--white); font-size: 40px; font-weight: 900;
  cursor: pointer; line-height: 1;
  transition: transform var(--transition), color .25s;
}
.lb-close:hover { transform: rotate(90deg) scale(1.2); color: var(--yellow); }
.lb-caption {
  position: absolute; bottom: 28px;
  color: var(--white); font-weight: 800; font-size: 16px;
  background: rgba(0,0,0,.4); padding: 8px 20px; border-radius: 50px;
}

/* ── 22. CURSOR SPARKLE ────────────────────────────────────── */
.sparkle-dot {
  position: fixed; pointer-events: none; z-index: 9998;
  border-radius: 50%; animation: sparklePop .7s forwards;
}
@keyframes sparklePop {
  0%  { transform: scale(1) translateY(0); opacity: 1; }
  100%{ transform: scale(0) translateY(-40px); opacity: 0; }
}

/* ── 23. CONFETTI PARTICLE ─────────────────────────────────── */
.confetti-piece {
  position: fixed; pointer-events: none; z-index: 9997;
  width: 10px; height: 10px; border-radius: 2px;
  animation: confettiFall 2s ease-in forwards;
}
@keyframes confettiFall {
  0%  { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100%{ transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* ── 24. PROGRESS BAR ──────────────────────────────────────── */
#read-progress {
  position: fixed; top: 0; left: 0; height: 4px; z-index: 10001;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow));
  width: 0%; transition: width .1s;
  box-shadow: 0 0 8px rgba(200,16,46,.5);
}

/* ── 25. BACK TO TOP ───────────────────────────────────────── */
#back-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 52px; height: 52px; border-radius: 18px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white); font-size: 22px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 6px 22px rgba(200,16,46,.45);
  transition: all var(--transition);
  opacity: 0; transform: translateY(20px) scale(.8);
  pointer-events: none;
}
#back-top.visible { opacity: 1; transform: none; pointer-events: all; }
#back-top:hover { transform: translateY(-4px) scale(1.1); }

/* ── 26. RESPONSIVE ────────────────────────────────────────── */

/* ─── Large Desktop 1280px+ ─── */
@media (min-width: 1280px) {
  .hero { padding: 80px 7% 100px; }
  .programs-grid, .events-grid, .about-inner, .activities-inner { max-width: 1280px; margin-left: auto; margin-right: auto; }
}

/* ─── Medium Desktop / Large Tablet 1100px ─── */
@media (max-width: 1100px) {
  #navbar { padding: 0 4%; height: 84px; }
  .nav-logo img { height: 68px; }
  .mobile-menu  { top: 84px; }
  .nav-links    { gap: 24px; }

  .hero { padding: 60px 4% 70px; gap: 30px; }

  .programs-grid  { grid-template-columns: 1fr 1fr; gap: 22px; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid    { grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; }
  /* Hide the 4th footer col (contact) into 3-col layout */
  .footer-grid > .footer-col:last-child { grid-column: 1 / -1; }

  .about-inner      { gap: 40px; }
  .activities-inner { gap: 40px; }
  .collage-grid     { grid-template-rows: 180px 180px; }
}

/* ─── Tablet 900px ─── */
@media (max-width: 900px) {
  #navbar { padding: 0 4%; height: 80px; }
  .nav-logo img { height: 62px; }
  .mobile-menu  { top: 80px; }
  .nav-links    { display: none; }
  .hamburger    { display: flex; }

  /* Hero: stack vertically */
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 50px 5% 70px;
    min-height: auto;
    gap: 36px;
  }
  .hero p     { max-width: 540px; margin: 0 auto 32px; }
  .hero h1    { font-size: clamp(32px, 6vw, 52px); }
  .hero-btns  { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { order: -1; max-width: 400px; margin: 0 auto; }
  .sticker     { display: none; }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .collage-grid { grid-template-rows: 200px 200px; }
  .exp-badge   { right: 0; bottom: -16px; }

  /* Programs */
  .programs-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .stat-number { font-size: 46px; }

  /* Activities */
  .activities-inner { grid-template-columns: 1fr; gap: 40px; }
  /* Reset the staggered offset margins on smaller screens */
  .act-img:nth-child(even) { margin-top: 0; }
  .act-img:nth-child(odd)  { margin-top: 0; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
  .g-item.wide { grid-column: span 1; }
  .g-item.tall { grid-row: span 2; }

  /* Events */
  .events-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > .footer-col:last-child { grid-column: unset; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ─── Small Tablet 768px ─── */
@media (max-width: 768px) {
  section { padding: 64px 5%; }
  .stats  { padding: 80px 5%; }

  .hero   { padding: 44px 5% 64px; }
  .hero h1 { font-size: clamp(30px, 7vw, 46px); }

  .section-title  { font-size: clamp(24px, 5vw, 38px); }

  /* About collage slightly shorter */
  .collage-grid { grid-template-rows: 170px 170px; }

  /* Programs single column */
  .programs-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  /* Stats 2x2 still fine */
  .stats-grid { gap: 16px; }
  .stat-card  { padding: 28px 16px; }
  .stat-number { font-size: 42px; }
  .stat-icon   { font-size: 40px; }

  /* Activities cards 2-col */
  .activity-cards { grid-template-columns: 1fr 1fr; }

  /* Gallery 2-col */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .g-item.tall { grid-row: span 1; }
  .g-item.wide { grid-column: span 2; }

  /* Events single column */
  .events-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  /* Testimonials */
  .testi-card { min-width: 280px; max-width: 280px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ─── Mobile 480px ─── */
@media (max-width: 480px) {
  #navbar { padding: 0 4%; height: 72px; }
  .nav-logo img { height: 56px; }
  .mobile-menu  { top: 72px; }

  section { padding: 52px 4%; }
  .stats  { padding: 64px 4%; }

  .hero { padding: 36px 4% 56px; gap: 28px; }
  .hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .hero p  { font-size: 15px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
  .btn { width: 100%; max-width: 320px; justify-content: center; }

  .hero-trust { gap: 12px; }
  .hero-visual { max-width: 300px; }

  .hero-badge { font-size: 12px; padding: 6px 14px; }

  /* About */
  .about-inner { gap: 36px; }
  .collage-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 140px 140px;
  }
  .collage-img.span-full { height: 200px; }
  .exp-badge { width: 90px; height: 90px; font-size: 11px; right: 4px; }
  .exp-badge strong { font-size: 26px; }

  /* Feature items */
  .feature-icon { width: 44px; height: 44px; font-size: 20px; }
  .feature-item h4 { font-size: 14px; }

  /* Programs */
  .programs-grid { max-width: 100%; }
  .program-body { padding: 18px; }

  /* Stats */
  .stats-grid  { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card   { padding: 22px 12px; }
  .stat-number { font-size: 36px; }
  .stat-icon   { font-size: 34px; }
  .stat-label  { font-size: 13px; }

  /* Activities */
  .act-img-grid { grid-template-columns: 1fr 1fr; }
  .activity-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .act-card { padding: 14px 12px; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: 10px;
  }
  .g-item.wide { grid-column: span 2; }
  .g-item.tall { grid-row: span 1; }
  .gallery-filter { gap: 8px; }
  .filter-btn { padding: 7px 14px; font-size: 12px; }

  /* Events */
  .events-grid { max-width: 100%; }

  /* Testimonials */
  .testi-card { min-width: 260px; max-width: 260px; padding: 20px; }
  .testi-text { font-size: 13px; }

  /* CTA */
  .cta-form { flex-direction: column; align-items: center; }
  .cta-input { min-width: unset; width: 100%; max-width: 320px; }
  .btn-yellow { width: 100%; max-width: 320px; justify-content: center; }
  .cta-section h2 { font-size: clamp(22px, 7vw, 36px); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: unset; }
  .footer-grid > .footer-col:last-child { grid-column: unset; }

  /* Section titles */
  .section-title { font-size: clamp(22px, 6vw, 32px); }
  .section-sub   { font-size: 14px; }
}

/* ─── Extra Small 360px ─── */
@media (max-width: 360px) {
  #navbar { padding: 0 3%; height: 68px; }
  .nav-logo img { height: 50px; }
  .mobile-menu  { top: 68px; }

  .hero h1     { font-size: 26px; }
  .hero-visual { max-width: 260px; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-number { font-size: 30px; }
  .stat-icon   { font-size: 28px; }

  .gallery-grid { grid-auto-rows: 120px; gap: 8px; }

  .activity-cards { grid-template-columns: 1fr; }
  .act-card { padding: 12px; }
}