
:root {
  --pink: #ffd6e8;
  --pink-deep: #ff7db8;
  --blue: #d9f1ff;
  --blue-deep: #58b7ef;
  --mint: #dff9ec;
  --mint-deep: #54c894;
  --cream: #fff7d9;
  --yellow: #ffe78a;
  --lavender: #eadfff;
  --purple: #8a73ff;
  --peach: #ffe2cc;
  --text: #35405a;
  --muted: #71809a;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(96, 111, 147, 0.18);
  --radius-xl: 36px;
  --radius-lg: 24px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #fffaf0 0%, #f5fbff 40%, #fff4fb 100%);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img, video { max-width: 100%; display: block; }
.top-header {
  background: linear-gradient(90deg, var(--pink), var(--blue), var(--mint), var(--cream));
  padding: 10px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 800;
  color: #4a4f70;
  border-bottom: 3px dashed rgba(255,255,255,.9);
  position: relative;
  z-index: 20;
}
.header-contact, .social-links { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.header-contact span, .social-links a {
  background: rgba(255,255,255,.7);
  padding: 8px 13px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(79, 113, 155, .08);
  transition: .3s ease;
}
.social-links a:hover, .header-contact span:hover { transform: translateY(-3px) rotate(-1deg); background: #fff; }
.social-links i { color: var(--pink-deep); }
nav {
  position: sticky;
  top: 0;
  z-index: 19;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6%;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(108, 132, 173, .1);
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-badge {
  width: 58px; height: 58px;
  border-radius: 20px;
  background: conic-gradient(from 180deg, var(--pink-deep), var(--yellow), var(--mint-deep), var(--blue-deep), var(--purple), var(--pink-deep));
  display: grid; place-items: center;
  color: white;
  font-size: 27px;
  box-shadow: var(--shadow);
  animation: floaty 4s ease-in-out infinite;
}
.logo h1 { font-family: 'Baloo 2', cursive; font-size: 31px; line-height: 1; color: #3a4570; }
.logo p { color: var(--muted); font-weight: 800; font-size: 13px; }
.nav-links { display: flex; align-items: center; gap: 22px; font-weight: 900; }
.nav-links a { padding: 9px 12px; border-radius: 999px; transition: .3s ease; }
.nav-links a:hover, .nav-links a.active { background: var(--lavender); color: var(--purple); transform: translateY(-2px); }
section, .page-section { padding: 90px 6%; position: relative; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title span {
  display: inline-block;
  background: var(--cream);
  color: var(--pink-deep);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 10px;
  box-shadow: 0 8px 20px rgba(255, 125, 184, .12);
}
.section-title h2 { font-family: 'Baloo 2', cursive; font-size: clamp(34px, 5vw, 56px); color: #344066; }
.section-title p { color: var(--muted); font-weight: 700; max-width: 720px; margin: 8px auto 0; }
.home {
  min-height: 840px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 42px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 214, 232, .75) 0 12%, transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(217, 241, 255, .9) 0 13%, transparent 34%),
    radial-gradient(circle at 70% 85%, rgba(223, 249, 236, .9) 0 15%, transparent 36%);
}
.hero-content { position: relative; z-index: 2; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 900;
  color: var(--purple);
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}
.hero-content h2 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(44px, 7vw, 82px);
  line-height: .92;
  color: #344066;
  letter-spacing: -1px;
}
.gradient-text {
  background: linear-gradient(90deg, var(--pink-deep), var(--purple), var(--blue-deep));
  -webkit-background-clip: text;
  color: transparent;
}
.hero-content p {
  margin: 24px 0;
  font-size: 19px;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 700;
  max-width: 630px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 15px 26px;
  font-weight: 900;
  transition: .3s ease;
  border: none;
  cursor: pointer;
}
.btn-primary { background: linear-gradient(135deg, var(--pink-deep), var(--purple)); color: white; box-shadow: 0 14px 28px rgba(255, 125, 184, .28); }
.btn-secondary { background: white; color: var(--blue-deep); box-shadow: var(--shadow); }
.btn:hover { transform: translateY(-5px) scale(1.03); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; max-width: 590px; }
.stat-card {
  background: rgba(255,255,255,.72);
  border: 2px solid white;
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(100, 125, 170, .12);
  text-align: center;
  backdrop-filter: blur(8px);
}
.stat-card strong { display: block; font-size: 28px; font-family: 'Baloo 2', cursive; color: var(--pink-deep); }
.stat-card small { color: var(--muted); font-weight: 900; }
.slider-wrap {
  position: relative;
  z-index: 2;
  border-radius: 42px;
  padding: 16px;
  background: linear-gradient(135deg, white, rgba(255,255,255,.5));
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.slider {
  position: relative;
  height: 530px;
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: 1s ease;
}
.slide.active { opacity: 1; transform: scale(1); }
.slide img, .slide video { width: 100%; height: 100%; object-fit: cover; }
.slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(52, 64, 102, .45), transparent 55%); }
.slide-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  background: rgba(255,255,255,.85);
  border-radius: 24px;
  padding: 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0,0,0,.12);
}
.slide-caption h3 { font-family: 'Baloo 2', cursive; font-size: 30px; color: #344066; }
.slide-caption p { color: var(--muted); font-weight: 800; }
.slider-dots { position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.dot { width: 14px; height: 14px; border-radius: 999px; background: white; border: 3px solid var(--pink-deep); cursor: pointer; transition: .3s; }
.dot.active { width: 38px; background: var(--pink-deep); }
.shape { position: absolute; z-index: 1; opacity: .72; animation: floaty 5s ease-in-out infinite; }
.shape.one { top: 16%; left: 47%; width: 70px; height: 70px; background: var(--yellow); border-radius: 26px; transform: rotate(22deg); }
.shape.two { bottom: 12%; left: 4%; font-size: 64px; color: var(--pink-deep); animation-delay: 1s; }
.shape.three { top: 19%; right: 5%; font-size: 58px; color: var(--mint-deep); animation-delay: 1.6s; }
.about-grid, .contact-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.about-image {
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 14px;
  background: white;
  position: relative;
}
.about-image img { border-radius: 32px; height: 520px; width: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  right: 34px;
  bottom: 34px;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  border-radius: 28px;
  padding: 18px 22px;
  font-weight: 900;
  box-shadow: var(--shadow);
}
.about-content h3 { font-family: 'Baloo 2', cursive; font-size: 42px; color: #344066; margin-bottom: 16px; }
.about-content p { color: var(--muted); line-height: 1.85; font-size: 17px; font-weight: 700; margin-bottom: 18px; }
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.feature {
  background: white;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 14px 30px rgba(91, 111, 151, .1);
  border: 2px solid rgba(255,255,255,.8);
  transition: .3s;
}
.feature:hover { transform: translateY(-8px); background: var(--cream); }
.feature i { font-size: 28px; color: var(--pink-deep); margin-bottom: 10px; }
.feature h4 { font-family: 'Baloo 2', cursive; font-size: 23px; color: #344066; }
.feature p { margin: 0; font-size: 14px; line-height: 1.6; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: white;
  border-radius: 32px;
  padding: 18px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: .35s ease;
}
.team-card::before { content: ''; position: absolute; inset: 0 0 auto; height: 105px; background: linear-gradient(135deg, var(--pink), var(--blue)); }
.team-card:hover { transform: translateY(-12px) rotate(-1deg); }
.team-card img {
  width: 150px; height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid white;
  margin: 28px auto 16px;
  position: relative;
  box-shadow: 0 14px 30px rgba(72, 91, 131, .15);
}
.team-card h3 { font-family: 'Baloo 2', cursive; font-size: 26px; color: #344066; }
.team-card p { color: var(--muted); font-weight: 800; margin-bottom: 14px; }
.team-social { display: flex; justify-content: center; gap: 10px; }
.team-social a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--lavender); color: var(--purple); transition: .3s; }
.team-social a:hover { background: var(--purple); color: white; transform: translateY(-4px); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.gallery-item {
  min-height: 240px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 5; }
.gallery-item:nth-child(2), .gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item:nth-child(3), .gallery-item:nth-child(4) { grid-column: span 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: .6s ease; }
.gallery-item:hover img { transform: scale(1.14) rotate(2deg); }
.gallery-item::after {
  content: 'View Memory';
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: rgba(255, 125, 184, .75);
  color: white;
  font-family: 'Baloo 2', cursive;
  font-size: 27px;
  opacity: 0;
  transform: scale(.85);
  transition: .35s ease;
}
.gallery-item:hover::after { opacity: 1; transform: scale(1); }
.contact-card, .map-card {
  background: white;
  border-radius: 36px;
  padding: 34px;
  box-shadow: var(--shadow);
  min-height: 430px;
}
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,214,232,.65), rgba(217,241,255,.58));
  transition: .3s;
}
.contact-item:hover { transform: translateX(8px); }
.contact-item i {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: white;
  color: var(--pink-deep);
  font-size: 22px;
  box-shadow: 0 12px 24px rgba(89, 107, 148, .1);
  flex: 0 0 50px;
}
.contact-item h4 { font-family: 'Baloo 2', cursive; font-size: 24px; color: #344066; }
.contact-item p { color: var(--muted); font-weight: 800; line-height: 1.6; }
.map-card iframe { width: 100%; height: 100%; min-height: 365px; border: 0; border-radius: 28px; filter: saturate(1.1); }
.inner-hero {
  padding: 90px 6%;
  text-align: center;
  background:
    radial-gradient(circle at 10% 30%, rgba(255, 214, 232, .8), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(217, 241, 255, .9), transparent 28%),
    linear-gradient(135deg, #fffaf0, #fff4fb);
}
.inner-hero h2 { font-family: 'Baloo 2', cursive; font-size: clamp(44px, 7vw, 76px); color: #344066; line-height: 1; }
.inner-hero p { color: var(--muted); font-weight: 800; margin-top: 12px; font-size: 19px; }
footer {
  padding: 64px 6% 24px;
  background: linear-gradient(135deg, #344066, #5f4acb);
  color: white;
  position: relative;
  overflow: hidden;
}
footer::before { content: ''; position: absolute; width: 420px; height: 420px; background: rgba(255,255,255,.08); border-radius: 50%; right: -110px; top: -150px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr 1fr; gap: 34px; position: relative; z-index: 2; }
.footer-box h3 { font-family: 'Baloo 2', cursive; font-size: 32px; margin-bottom: 14px; }
.footer-box p, .footer-box li { color: rgba(255,255,255,.82); font-weight: 700; line-height: 1.8; list-style: none; }
.footer-box a:hover { color: var(--yellow); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.13); display: grid; place-items: center; transition: .3s; }
.footer-social a:hover { transform: translateY(-5px); background: white; color: var(--purple); }
.copyright {
  position: relative; z-index: 2;
  text-align: center;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.17);
  color: rgba(255,255,255,.86);
  font-weight: 800;
}
.copyright a { color: var(--yellow); font-weight: 900; }
.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid;
  place-items: center;
  font-size: 35px;
  box-shadow: 0 15px 35px rgba(37, 211, 102, .4);
  animation: pulse 1.8s infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(4deg); }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .45); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Enhanced pre-primary home elements */
.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  color: #344066;
  font-size: 22px;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.home-extra {
  padding-top: 30px;
}
.kid-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -40px;
  position: relative;
  z-index: 5;
}
.kid-card {
  background: rgba(255,255,255,.9);
  border: 3px solid white;
  border-radius: 30px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: .35s ease;
  position: relative;
  overflow: hidden;
}
.kid-card::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 231, 138, .45);
  border-radius: 50%;
  top: -35px;
  right: -35px;
}
.kid-card:hover { transform: translateY(-12px) rotate(-1deg); }
.kid-card i {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  color: var(--purple);
  font-size: 30px;
}
.kid-card h3 { font-family: 'Baloo 2', cursive; font-size: 26px; color: #344066; }
.kid-card p { color: var(--muted); font-weight: 800; line-height: 1.5; }

.program-clouds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}
.cloud-board {
  background: white;
  border-radius: 44px;
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.cloud-board::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 3px dashed rgba(255,125,184,.35);
  border-radius: 34px;
  pointer-events: none;
}
.cloud-board h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 42px;
  color: #344066;
  margin-bottom: 14px;
}
.cloud-board p {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.8;
}
.program-list {
  display: grid;
  gap: 16px;
}
.program-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(255,214,232,.75), rgba(217,241,255,.75));
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(91,111,151,.1);
  transition: .3s ease;
}
.program-pill:hover { transform: translateX(10px); background: white; }
.program-pill span {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: white;
  color: var(--pink-deep);
  font-size: 26px;
  box-shadow: 0 10px 24px rgba(89,107,148,.1);
}
.program-pill h4 { font-family: 'Baloo 2', cursive; font-size: 25px; color: #344066; }
.program-pill p { color: var(--muted); font-weight: 800; margin: 0; }

.day-timeline {
  background: linear-gradient(135deg, rgba(255,247,217,.75), rgba(234,223,255,.55));
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.time-bubble {
  background: white;
  border-radius: 999px 999px 34px 34px;
  padding: 28px 18px;
  min-height: 210px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 3px solid rgba(255,255,255,.9);
  transition: .35s;
}
.time-bubble:hover { transform: translateY(-12px) scale(1.03); }
.time-bubble strong {
  display: inline-block;
  background: var(--cream);
  color: var(--pink-deep);
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 14px;
  font-weight: 900;
}
.time-bubble i {
  display: block;
  font-size: 34px;
  color: var(--purple);
  margin-bottom: 12px;
}
.time-bubble h4 { font-family: 'Baloo 2', cursive; font-size: 23px; color: #344066; }
.time-bubble p { color: var(--muted); font-weight: 800; font-size: 14px; }

.parent-zone {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
}
.parent-photo {
  border-radius: 42px;
  overflow: hidden;
  padding: 14px;
  background: white;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}
.parent-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 32px;
}
.testimonials {
  display: grid;
  gap: 18px;
}
.testimonial {
  background: white;
  border-radius: 30px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial::before {
  content: '“';
  position: absolute;
  right: 24px;
  top: -8px;
  font-family: 'Baloo 2', cursive;
  font-size: 78px;
  color: rgba(255,125,184,.25);
}
.testimonial p {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.75;
}
.testimonial h4 {
  margin-top: 12px;
  font-family: 'Baloo 2', cursive;
  color: #344066;
  font-size: 24px;
}
.cta-rainbow {
  margin: 0 6% 90px;
  border-radius: 44px;
  padding: 44px;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.5), transparent 18%),
    linear-gradient(135deg, var(--pink-deep), var(--purple), var(--blue-deep));
  color: white;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.cta-rainbow::after {
  content: '✦';
  position: absolute;
  left: 7%;
  top: 15%;
  font-size: 60px;
  opacity: .35;
  animation: floaty 4s ease-in-out infinite;
}
.cta-rainbow h2 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}
.cta-rainbow p {
  max-width: 760px;
  margin: 14px auto 24px;
  font-weight: 800;
  line-height: 1.7;
}
.cta-rainbow .btn-secondary { color: var(--purple); }

.floating-abc {
  position: absolute;
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  color: rgba(138, 115, 255, .14);
  font-size: clamp(50px, 9vw, 120px);
  pointer-events: none;
  animation: drift 9s ease-in-out infinite;
}
.floating-abc.a { left: 3%; top: 35%; }
.floating-abc.b { right: 4%; top: 58%; animation-delay: 1.2s; }
.floating-abc.c { left: 40%; bottom: 2%; animation-delay: 2s; }

@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-24px) rotate(8deg); }
}

/* Real gallery viewer */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(31, 39, 66, .86);
  backdrop-filter: blur(12px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-content {
  max-width: min(1000px, 92vw);
  max-height: 84vh;
  position: relative;
}
.lightbox-content img {
  max-height: 78vh;
  width: auto;
  max-width: 100%;
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,.32);
  background: white;
}
.lightbox-caption {
  color: white;
  text-align: center;
  font-weight: 900;
  margin-top: 14px;
  font-size: 18px;
}
.lightbox button {
  position: absolute;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: #344066;
  background: white;
  box-shadow: var(--shadow);
}
.lightbox-close {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  top: 18px;
  right: 18px;
  font-size: 24px;
}
.lightbox-prev, .lightbox-next {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }


@media (max-width: 1100px) {
  .home, .about-grid, .contact-wrap, .program-clouds, .parent-zone { grid-template-columns: 1fr; }
  .team-grid, .kid-strip { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .slider { height: 450px; }
}
@media (max-width: 760px) {
  .top-header { justify-content: center; text-align: center; }
  .header-contact { justify-content: center; }
  nav { align-items: center; gap: 12px; flex-direction: row; flex-wrap: wrap; }
  .mobile-toggle { display: grid; place-items: center; margin-left: auto; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { text-align: center; background: linear-gradient(135deg, rgba(255,214,232,.55), rgba(217,241,255,.55)); }
  section, .page-section { padding: 64px 5%; }
  .home { min-height: auto; padding-top: 64px; }
  .hero-stats, .features, .team-grid, .footer-grid, .kid-strip, .timeline-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { grid-column: auto !important; }
  .slider { height: 390px; }
  .contact-card, .map-card { padding: 22px; }
  .logo h1 { font-size: 25px; }
  .cta-rainbow { margin: 0 5% 64px; padding: 32px 22px; }
  .parent-photo img { height: 360px; }
  .lightbox-prev, .lightbox-next { top: auto; bottom: 28px; transform: none; }
}
