/* ============================================
   Galaxy Infant School — Brand Styles & Motion
   ============================================ */

:root {
  --navy: #101844;
  --navy-soft: #1a2558;
  --cyan: #00aeef;
  --cyan-soft: #e8f8fe;
  --cyan-mid: #5dcef5;
  --orange: #f7941d;
  --orange-soft: #fff4e5;
  --purple: #3f3c8d;
  --purple-soft: #ebeaf5;
  --mint: #7ed9b8;
  --mint-soft: #e8f9f2;
  --cream: #f7f4ff;
  --cream-deep: #efe8ff;
  --sky: #e8eeff;
  --cosmos: #1b1464;
  --nebula-pink: #c084fc;
  --nebula-blue: #60a5fa;
  --yellow: #ffe566;
  --yellow-soft: #fff9d6;
  --white: #ffffff;
  --text: #1e2448;
  --text-muted: #5a6180;
  --shadow-soft: 0 8px 30px rgba(27, 20, 100, 0.1);
  --shadow-lift: 0 16px 40px rgba(27, 20, 100, 0.14);
  --shadow-orange: 0 10px 28px rgba(247, 148, 29, 0.35);
  --radius-blob: 40% 60% 55% 45% / 50% 45% 55% 50%;
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8.5rem;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(96, 165, 250, 0.18), transparent 50%),
    radial-gradient(ellipse 70% 40% at 90% 10%, rgba(192, 132, 252, 0.16), transparent 45%),
    linear-gradient(180deg, #eef2ff 0%, var(--cream) 40%, #faf8ff 100%);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin: 0;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

/* ---------- Announcement Bar ---------- */
.announce {
  background: linear-gradient(90deg, var(--navy) 0%, var(--purple) 50%, var(--navy) 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.announce::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 174, 239, 0.25), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(247, 148, 29, 0.2), transparent 40%);
  pointer-events: none;
}

.announce-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  position: relative;
}

.announce-text {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  min-width: 0;
}

.announce-sep {
  opacity: 0.45;
}

.announce-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--orange);
  color: #fff;
  padding: 0.45rem 1.05rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(247, 148, 29, 0.4);
}

.announce-call:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow-orange);
}

/* ---------- Site header + Navbar ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
}

.navbar {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 24, 68, 0.07);
  transition: box-shadow 0.3s ease, background 0.3s ease;
  overflow: visible;
}

.navbar.scrolled {
  box-shadow: 0 10px 32px rgba(16, 24, 68, 0.1);
  background: #fff;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.15rem 0;
  min-height: 5.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}

.logo img {
  height: 58px;
  width: auto;
  max-width: 148px;
  object-fit: contain;
  display: block;
}

.nav-inner > nav {
  display: none;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  position: relative;
  flex-shrink: 0;
}

.nav-links a {
  display: block;
  padding: 0.65rem 0.95rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-soft);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--cyan-soft);
  color: var(--cyan);
}

.nav-cta {
  display: none;
  flex-shrink: 0;
  padding: 0.75rem 1.4rem;
  font-size: 0.9rem;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--orange) 0%, #ffb347 100%);
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.65rem;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 12px;
  transition: background 0.2s ease;
  margin-left: 0.25rem;
}

.menu-toggle:hover {
  background: var(--cyan-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #ffb347 100%);
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 32px rgba(247, 148, 29, 0.45);
}

.btn-primary.pulse {
  animation: btnPulse 2.2s ease-in-out infinite;
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-cyan {
  background: linear-gradient(135deg, var(--cyan) 0%, #4dc8f5 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 174, 239, 0.35);
}

.btn-cyan:hover {
  transform: translateY(-3px) scale(1.03);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 0 1.15rem;
  border-top: 1px solid rgba(16, 24, 68, 0.06);
}

.mobile-menu.open {
  display: flex;
  animation: fadeScaleIn 0.25s ease both;
}

.mobile-menu a {
  padding: 0.8rem 0.65rem;
  font-weight: 700;
  color: var(--navy);
  border-radius: 12px;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-menu a:hover {
  background: var(--cyan-soft);
  color: var(--cyan);
}

.mobile-menu .btn {
  margin-top: 0.65rem;
  width: 100%;
  justify-content: center;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .whatsapp-float {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

@media (min-width: 1100px) {
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    padding: 1.35rem 0;
    min-height: 6.25rem;
  }

  .logo {
    margin-right: auto;
  }

  .logo img {
    height: 62px;
    max-width: 156px;
  }

  .nav-inner > nav {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
    background: linear-gradient(135deg, var(--orange) 0%, #ffb347 100%);
    color: #fff;
    box-shadow: var(--shadow-orange);
  }

  .menu-toggle {
    display: none;
  }
}

/* ---------- Hero + admissions (merged cosmic band) ---------- */
.hero-launch {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse 90% 55% at 80% 12%, rgba(99, 102, 241, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 45% at 10% 22%, rgba(192, 132, 252, 0.28), transparent 50%),
    radial-gradient(ellipse 55% 40% at 50% 58%, rgba(0, 174, 239, 0.2), transparent 55%),
    radial-gradient(ellipse 45% 35% at 88% 72%, rgba(247, 148, 29, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 40% at 20% 88%, rgba(99, 102, 241, 0.22), transparent 55%),
    linear-gradient(
      180deg,
      #1b1464 0%,
      #2d1b69 18%,
      #3f3c8d 40%,
      #4a3f9a 55%,
      #3f3c8d 70%,
      #2d1b69 88%,
      #1b1464 100%
    );
}

.hero {
  position: relative;
  z-index: 1;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: center;
  padding: 2.5rem 0 1.5rem;
  background: transparent;
  overflow: visible;
  color: #fff;
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.nebula {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: nebulaPulse 8s ease-in-out infinite;
}

.nebula-1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #c084fc 0%, transparent 70%);
  top: -60px;
  right: 5%;
}

.nebula-2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #00aeef 0%, transparent 70%);
  bottom: 5%;
  left: -40px;
  animation-delay: -3s;
}

.nebula-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #f7941d 0%, transparent 70%);
  top: 40%;
  left: 35%;
  opacity: 0.35;
  animation-delay: -5s;
}

.starfield {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(1.5px 1.5px at 20% 60%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 35% 15%, rgba(255, 255, 255, 0.85), transparent),
    radial-gradient(1.5px 1.5px at 50% 40%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 65% 70%, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(1.5px 1.5px at 75% 25%, rgba(255, 255, 255, 0.75), transparent),
    radial-gradient(1px 1px at 85% 55%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1.5px 1.5px at 90% 80%, rgba(255, 255, 255, 0.65), transparent),
    radial-gradient(1px 1px at 15% 85%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 42% 78%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1.5px 1.5px at 58% 12%, rgba(255, 255, 255, 0.85), transparent),
    radial-gradient(1px 1px at 28% 45%, rgba(255, 255, 255, 0.6), transparent);
  animation: twinkleField 4s ease-in-out infinite;
}

.shooting-star {
  position: absolute;
  width: 100px;
  height: 2.5px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 229, 102, 0.55), transparent);
  border-radius: 999px;
  opacity: 0;
  animation: shoot 5.5s linear infinite;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.55));
}

.shooting-star::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px 3px rgba(255, 255, 255, 0.95), 0 0 22px 6px rgba(255, 229, 102, 0.45);
}

.ss-1 {
  top: 18%;
  left: 60%;
  animation-delay: 1s;
}

.ss-2 {
  top: 45%;
  left: 30%;
  animation-delay: 4s;
  width: 60px;
}

.ss-3 {
  top: 12%;
  left: 20%;
  animation-delay: 0.4s;
  width: 95px;
  animation-duration: 5.2s;
}

.ss-4 {
  top: 32%;
  left: 72%;
  animation-delay: 2.2s;
  width: 70px;
  animation-duration: 6.8s;
}

.ss-5 {
  top: 58%;
  left: 48%;
  animation-delay: 3.4s;
  width: 110px;
  animation-duration: 5.6s;
}

.ss-6 {
  top: 8%;
  left: 42%;
  animation-delay: 5.1s;
  width: 55px;
  animation-duration: 4.8s;
}

.ss-7 {
  top: 68%;
  left: 15%;
  animation-delay: 1.8s;
  width: 85px;
  animation-duration: 7.2s;
}

.star {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--yellow);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: twinkle 3s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(255, 229, 102, 0.8));
}

.star.purple {
  background: #d8b4fe;
  filter: drop-shadow(0 0 6px rgba(192, 132, 252, 0.9));
}

.star.cyan {
  background: #7dd3fc;
  filter: drop-shadow(0 0 6px rgba(0, 174, 239, 0.9));
}

.star.orange {
  background: var(--orange);
  filter: drop-shadow(0 0 6px rgba(247, 148, 29, 0.9));
}

.planet {
  z-index: 1;
  position: absolute;
  border-radius: 50%;
  animation: floatPlanet 8s ease-in-out infinite;
}

.planet-1 {
  width: 56px;
  height: 56px;
  background: linear-gradient(145deg, #ff9a76, #f7941d);
  box-shadow: inset -10px -8px 0 rgba(0, 0, 0, 0.12), 0 0 24px rgba(247, 148, 29, 0.45);
  top: 14%;
  right: 6%;
}

.planet-2 {
  width: 36px;
  height: 36px;
  background: linear-gradient(145deg, #67e8f9, #00aeef);
  box-shadow: inset -6px -4px 0 rgba(0, 0, 0, 0.1), 0 0 18px rgba(0, 174, 239, 0.45);
  bottom: 26%;
  left: 5%;
  animation-delay: -2s;
}

.planet-3 {
  width: 24px;
  height: 24px;
  background: linear-gradient(145deg, #e9d5ff, #a78bfa);
  box-shadow: 0 0 16px rgba(167, 139, 250, 0.5);
  top: 58%;
  right: 16%;
  animation-delay: -4s;
}

.planet-4 {
  width: 18px;
  height: 18px;
  background: linear-gradient(145deg, #fef08a, #facc15);
  box-shadow: 0 0 14px rgba(250, 204, 21, 0.5);
  top: 32%;
  left: 12%;
  animation-delay: -1s;
}

.moon {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8fafc, #cbd5e1);
  box-shadow: inset -10px -6px 0 rgba(100, 116, 139, 0.25), 0 0 20px rgba(255, 255, 255, 0.35);
  top: 22%;
  left: 28%;
  animation: floatPlanet 10s ease-in-out infinite;
  animation-delay: -3s;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.14);
  color: #e9d5ff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
  backdrop-filter: blur(8px);
}

.hero h1,
.hero-title {
  position: relative;
  z-index: 5;
  font-size: clamp(1.75rem, 3.8vw, 2.85rem);
  letter-spacing: -0.025em;
  margin-bottom: 1.35rem;
  max-width: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  line-height: 1.08;
}

.hero-phrase {
  --rise-delay: calc(0.22s + (var(--i, 0) * 0.28s));
  --rule-delay: calc(0.55s + (var(--i, 0) * 0.28s));
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
}

.hero-phrase-mask {
  display: block;
  overflow: hidden;
  padding: 0.08em 0.12em 0.12em 0;
}

.hero-phrase-text {
  display: inline-block;
  white-space: nowrap;
  transform: translateY(115%) rotate(2deg);
  opacity: 0;
  filter: blur(8px);
  transform-origin: left bottom;
  animation:
    heroPhraseIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) var(--rise-delay) both,
    heroPhraseFloat 4.8s ease-in-out calc(var(--rise-delay) + 1s) infinite;
  text-shadow:
    0 2px 0 rgba(16, 24, 68, 0.15),
    0 10px 28px rgba(0, 0, 0, 0.28);
}

.hero-phrase-text em {
  font-style: normal;
  font-weight: inherit;
  position: relative;
  display: inline-block;
}

.hero-phrase-heart .hero-phrase-text em {
  background: linear-gradient(120deg, #ffd1dc 0%, #fff 45%, #ff9eb5 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmerText 4s linear calc(var(--rise-delay) + 0.9s) infinite;
  filter: drop-shadow(0 0 14px rgba(255, 158, 181, 0.45));
}

.hero-phrase-roots .hero-phrase-text em {
  background: linear-gradient(115deg, #ffe566 0%, #fff 38%, #f7941d 78%, #ffe566 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmerText 3.4s linear calc(var(--rise-delay) + 0.9s) infinite;
  filter: drop-shadow(0 0 16px rgba(247, 148, 29, 0.5));
}

.hero-phrase-learn .hero-phrase-text em {
  background: linear-gradient(120deg, #9fe3f8 0%, #fff 42%, #00aeef 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmerText 3.8s linear calc(var(--rise-delay) + 0.9s) infinite;
  filter: drop-shadow(0 0 16px rgba(0, 174, 239, 0.55));
}

.hero-phrase-rule {
  display: block;
  height: 3px;
  width: 100%;
  margin-top: 0.18rem;
  border-radius: 999px;
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
  animation: heroRuleDraw 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--rule-delay) both;
}

.hero-phrase-heart .hero-phrase-rule {
  background: linear-gradient(90deg, rgba(255, 158, 181, 0.95), rgba(255, 255, 255, 0.15));
  box-shadow: 0 0 12px rgba(255, 158, 181, 0.45);
}

.hero-phrase-roots .hero-phrase-rule {
  background: linear-gradient(90deg, rgba(247, 148, 29, 0.95), rgba(255, 229, 102, 0.2));
  box-shadow: 0 0 12px rgba(247, 148, 29, 0.45);
}

.hero-phrase-learn .hero-phrase-rule {
  background: linear-gradient(90deg, rgba(0, 174, 239, 0.95), rgba(255, 255, 255, 0.15));
  box-shadow: 0 0 12px rgba(0, 174, 239, 0.45);
}

.hero h1 span {
  color: inherit;
  position: relative;
}

.hero h1 .text-shimmer {
  color: transparent;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 38ch;
  margin: 0 0 1.75rem;
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}

.hero .btn-secondary:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 380px;
  width: 100%;
}

.hero-mascot {
  position: relative;
  width: min(100%, 420px);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.mascot-stage {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mascot-glow {
  position: absolute;
  width: 88%;
  height: 88%;
  top: 50%;
  left: 50%;
  transform: translate(-54%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, rgba(167, 139, 250, 0.38) 40%, transparent 70%);
  filter: blur(6px);
  animation: galaxyGlow 4s ease-in-out infinite;
  z-index: 0;
}

.mascot-orbit {
  position: absolute;
  width: 94%;
  height: 94%;
  top: 50%;
  left: 50%;
  transform: translate(-54%, -50%);
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.42);
  z-index: 1;
  pointer-events: none;
  box-sizing: border-box;
}

.mascot-orbit::before {
  content: "★";
  position: absolute;
  top: 6%;
  right: 10%;
  color: var(--yellow);
  font-size: 1rem;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(255, 229, 102, 0.85));
  animation: twinkle 2.8s ease-in-out infinite;
}

.mascot-orbit::after {
  content: "✦";
  position: absolute;
  bottom: 14%;
  left: 8%;
  color: #7dd3fc;
  font-size: 0.9rem;
  filter: drop-shadow(0 0 6px rgba(125, 211, 252, 0.85));
  animation: twinkle 3.2s ease-in-out infinite;
  animation-delay: -1s;
}

.orbit-rocket-wrap {
  position: absolute;
  width: 94%;
  height: 94%;
  top: 50%;
  left: 50%;
  transform: translate(-54%, -50%);
  z-index: 4;
  pointer-events: none;
}

.orbit-rocket-track {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: spinSlow 12s linear infinite;
}

.orbit-rocket {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  width: 2.6rem;
  height: 2.6rem;
  margin-left: -1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.35rem;
  line-height: 1;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.4));
  transform: rotate(90deg);
}

.mascot-img {
  position: relative;
  z-index: 2;
  width: 84%;
  height: auto;
  max-height: 94%;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
  animation: mascotFloat 5s ease-in-out infinite;
  user-select: none;
  -webkit-user-drag: none;
  margin-left: -6%;
}

.mascot-caption {
  position: relative;
  z-index: 2;
  margin-top: 0.35rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.65rem 1.25rem;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.mascot-caption span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

.mascot-caption small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 900px) {
  .hero-visual {
    display: block;
    min-height: 380px;
  }

  .float-badge {
    position: absolute;
  }
}

.float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.65rem 1rem;
  border-radius: 18px;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  z-index: 4;
  animation: floatBadge 4.5s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.float-badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.badge-1 {
  top: 6%;
  left: -2%;
  animation-delay: 0s;
}

.badge-2 {
  top: 38%;
  right: -6%;
  animation-delay: -1.5s;
}

.badge-3 {
  bottom: 18%;
  left: -4%;
  animation-delay: -3s;
}

/* ---------- Section commons ---------- */
.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-alt {
  background:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(192, 132, 252, 0.12), transparent 50%),
    linear-gradient(180deg, #fff 0%, #eef2ff 100%);
}

.section-mint {
  background:
    radial-gradient(ellipse 50% 40% at 10% 20%, rgba(0, 174, 239, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(192, 132, 252, 0.12), transparent 50%),
    linear-gradient(180deg, #f0ebff 0%, #f7f4ff 100%);
}

.section-cream {
  background:
    radial-gradient(ellipse 40% 30% at 50% 0%, rgba(99, 102, 241, 0.08), transparent 60%),
    var(--cream);
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--purple);
  background: var(--purple-soft);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin: 0 0 0.85rem;
}

.section-header h2 {
  display: block;
  width: 100%;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  margin: 0 0 0.75rem;
}

.section-header p {
  color: var(--text-muted);
  font-weight: 600;
  margin: 0;
  font-size: 1.05rem;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-visual {
  position: relative;
}

.about-photo {
  margin: 0;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(63, 60, 141, 0.28);
  background: var(--navy);
  aspect-ratio: 4 / 5;
}

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

.about-photo:hover img {
  transform: scale(1.04);
}

.about-photo figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 18px;
  background: rgba(27, 20, 100, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.about-photo figcaption strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.about-photo figcaption span {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.85;
}

.about-content .section-label {
  margin-bottom: 0.75rem;
}

.about-content h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
}

.about-content > p {
  color: var(--text-muted);
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  background: #fff;
  border: 1.5px solid rgba(16, 24, 68, 0.08);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(16, 24, 68, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.pill:hover {
  transform: translateY(-3px) rotate(-1deg);
  border-color: var(--cyan);
}

/* ---------- Legacy of Innovation ---------- */
.legacy-section {
  background:
    radial-gradient(ellipse 45% 40% at 8% 20%, rgba(247, 148, 29, 0.14), transparent 55%),
    radial-gradient(ellipse 40% 35% at 92% 15%, rgba(0, 174, 239, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(192, 132, 252, 0.12), transparent 55%),
    linear-gradient(180deg, #fffaf3 0%, #f4f0ff 55%, #eef8ff 100%);
}

.legacy-intro {
  max-width: 720px;
  margin: -1rem auto 2.25rem;
  text-align: center;
}

.legacy-intro p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.7;
}

.legacy-pillars {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .legacy-pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
}

.legacy-pillar {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 1.55rem 1.4rem 1.65rem;
  min-height: 13.5rem;
  color: var(--navy);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.legacy-pillar::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  right: -36px;
  bottom: -48px;
  opacity: 0.3;
  pointer-events: none;
}

.legacy-pillar:hover {
  transform: translateY(-7px) scale(1.01);
  box-shadow: 0 18px 40px rgba(27, 20, 100, 0.14);
}

.legacy-emoji {
  display: grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 1rem;
  font-size: 1.5rem;
  margin-bottom: 0.9rem;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 20px rgba(16, 24, 68, 0.08);
}

.legacy-kicker {
  margin: 0 0 0.3rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}

.legacy-pillar h3 {
  font-size: 1.18rem;
  margin: 0 0 0.45rem;
  color: inherit;
}

.legacy-pillar > p:not(.legacy-kicker) {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(16, 24, 68, 0.74);
  max-width: 28ch;
}

.pillar-create {
  background: linear-gradient(155deg, #fff1df 0%, #ffd39a 55%, #f7a94a 100%);
}
.pillar-create::after { background: #f7941d; }

.pillar-character {
  background: linear-gradient(155deg, #ecebff 0%, #c5c2f2 55%, #8f8bd4 100%);
}
.pillar-character::after { background: #3f3c8d; }

.pillar-mind {
  background: linear-gradient(155deg, #dff6ff 0%, #9fe3f8 55%, #5dcef5 100%);
}
.pillar-mind::after { background: #00aeef; }

/* ---------- Resilience & Growth ---------- */
.resilience-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse 60% 70% at 85% 20%, rgba(0, 174, 239, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 55% at 10% 80%, rgba(247, 148, 29, 0.22), transparent 50%),
    linear-gradient(165deg, #15104f 0%, #1b1464 42%, #3f3c8d 100%);
}

.resilience-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .resilience-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.resilience-copy .section-label {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.resilience-copy h2 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.85rem;
}

.resilience-lead {
  font-size: 1.12rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1rem;
}

.resilience-copy > p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  line-height: 1.7;
  max-width: 42ch;
}

.resilience-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.resilience-stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 0.95rem 0.85rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.resilience-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--yellow);
  margin-bottom: 0.2rem;
}

.resilience-stat span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

.resilience-visual figure {
  margin: 0;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  aspect-ratio: 16 / 10;
  max-height: min(420px, 70vh);
  background: #1a1640;
}

.resilience-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.resilience-visual figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(16, 24, 68, 0.72);
  backdrop-filter: blur(10px);
  color: #fff;
}

.resilience-visual figcaption strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.resilience-visual figcaption span {
  font-size: 0.82rem;
  opacity: 0.85;
  font-weight: 600;
}

/* ---------- Educational Philosophy ---------- */
.philosophy-section {
  background:
    radial-gradient(ellipse 50% 45% at 90% 10%, rgba(0, 174, 239, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(126, 217, 184, 0.14), transparent 50%),
    linear-gradient(180deg, #f7f4ff 0%, #eef9f4 55%, #fff 100%);
}

.philosophy-layout {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

@media (min-width: 900px) {
  .philosophy-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.philosophy-copy .section-label {
  background: rgba(0, 174, 239, 0.12);
  color: var(--cyan);
}

.philosophy-copy h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 1rem;
}

.philosophy-copy p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.7;
  max-width: 48ch;
}

.philosophy-copy .btn {
  margin-top: 0.75rem;
}

.philosophy-aside {
  display: grid;
  gap: 1rem;
}

.philosophy-orbit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.philosophy-orbit span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--navy);
  background: #fff;
  border: 1.5px solid rgba(16, 24, 68, 0.08);
  box-shadow: 0 4px 12px rgba(16, 24, 68, 0.04);
}

.philosophy-photo {
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 3 / 4;
  max-height: min(480px, 70vh);
  background: #1a1640;
}

.philosophy-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.6s ease;
}

.philosophy-photo:hover img {
  transform: scale(1.04);
}

@media (max-width: 640px) {
  .resilience-stats {
    grid-template-columns: 1fr;
  }

  .resilience-visual figure {
    max-height: 420px;
  }

  .philosophy-photo {
    max-height: 360px;
  }
}

/* ---------- Programs (tabs) ---------- */
.programs-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 0 0 1rem;
}

.programs-photo-strip figure {
  margin: 0;
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-lift);
  aspect-ratio: 3 / 4;
}

.programs-photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.55s ease;
}

.programs-photo-strip figure:hover img {
  transform: scale(1.04);
}

.programs-photo-strip figcaption {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  background: rgba(27, 20, 100, 0.78);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.programs-photo-note {
  margin: 0 0 1.75rem;
  text-align: center;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 700px) {
  .programs-photo-strip {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto;
  }
}

.programs-photo {
  margin: 0 0 2rem;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  max-height: 360px;
}

.programs-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.programs-photo:hover img {
  transform: scale(1.03);
}

.programs-photo figcaption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  right: 1.25rem;
  max-width: 460px;
  padding: 0.95rem 1.2rem;
  border-radius: 18px;
  background: rgba(27, 20, 100, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.programs-photo figcaption strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.programs-photo figcaption span {
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.85;
}

.programs-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.tab-btn {
  background: #fff;
  border: 2px solid rgba(16, 24, 68, 0.08);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tab-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(16, 24, 68, 0.25);
}

.tab-panels {
  position: relative;
}

.tab-panel {
  display: none;
  background: #fff;
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(16, 24, 68, 0.04);
  animation: fadeScaleIn 0.4s ease;
}

.tab-panel.active {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 768px) {
  .tab-panel.active {
    grid-template-columns: auto 1fr;
    padding: 2.5rem;
  }
}

.program-badge {
  width: 120px;
  height: 120px;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto;
  animation: bounceSoft 3s ease-in-out infinite;
  box-shadow: var(--shadow-soft);
}

.program-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--orange-soft);
  color: #c46a00;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.tab-panel h3 {
  font-size: 1.55rem;
  margin-bottom: 0.65rem;
}

.tab-panel p {
  color: var(--text-muted);
  font-weight: 600;
  margin: 0 0 1.25rem;
}

.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: var(--cyan-soft);
  color: #0077a8;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

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

@media (min-width: 640px) {
  .zones-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .zones-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
  }
}

.zone-card {
  background: #fff;
  border-radius: 24px;
  padding: 1.35rem 1.1rem;
  text-align: center;
  border: 1.5px solid rgba(16, 24, 68, 0.05);
  box-shadow: 0 4px 16px rgba(16, 24, 68, 0.04);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.zone-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: linear-gradient(160deg, transparent 40%, rgba(0, 174, 239, 0.08));
}

.zone-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lift);
  border-color: transparent;
}

.zone-card:hover::before {
  opacity: 1;
}

.zone-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 0.85rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}

.zone-card:hover .zone-icon {
  transform: scale(1.12) rotate(-6deg);
}

.zone-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
  position: relative;
  z-index: 1;
}

.zone-sub {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  font-style: italic;
  position: relative;
  z-index: 1;
  margin: 0;
}

.zone-expand {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin 0.35s ease;
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0;
}

.zone-card:hover .zone-expand {
  max-height: 80px;
  opacity: 1;
  margin-top: 0.65rem;
}

/* Zone color variants */
.z-climb .zone-icon { background: #ffe0cc; }
.z-nursery .zone-icon { background: #fce4ec; }
.z-outdoor .zone-icon { background: #e8f5e9; }
.z-sand .zone-icon { background: #fff3cd; }
.z-organic .zone-icon { background: #e8f9f2; }
.z-aqua .zone-icon { background: #e3f4fc; }
.z-av .zone-icon { background: #ebeaf5; }
.z-soft .zone-icon { background: #fce4ec; }
.z-recipe .zone-icon { background: #fff4e5; }
.z-art .zone-icon { background: #f3e5f5; }
.z-dress .zone-icon { background: #e8eaf6; }
.z-story .zone-icon { background: #e0f2f1; }
.z-theatre .zone-icon { background: #fff8e1; }

/* Featured 13th zone spans */
@media (min-width: 1024px) {
  .zone-card.z-theatre {
    grid-column: 2 / 4;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-align: left;
    padding: 1.35rem 1.75rem;
  }

  .zone-card.z-theatre .zone-icon {
    margin: 0;
    flex-shrink: 0;
  }

  .zone-card.z-theatre .zone-expand {
    max-height: none;
    opacity: 1;
    margin-top: 0.35rem;
  }
}

/* ---------- Why choose (legacy) ---------- */
.why-banner {
  margin: 0 0 1.75rem;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  max-height: 320px;
}

.why-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.why-banner:hover img {
  transform: scale(1.03);
}

.why-banner figcaption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  right: 1.25rem;
  max-width: 420px;
  padding: 0.95rem 1.2rem;
  border-radius: 18px;
  background: rgba(27, 20, 100, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.why-banner figcaption strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.why-banner figcaption span {
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.85;
}

.why-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid .why-card:last-child {
    grid-column: 2;
  }
}

.why-card {
  background: #fff;
  border-radius: 28px;
  padding: 1.75rem 1.5rem;
  border: 1.5px solid rgba(16, 24, 68, 0.05);
  box-shadow: 0 4px 16px rgba(16, 24, 68, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.why-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  margin-bottom: 1rem;
  background: var(--cyan-soft);
}

.why-card:hover .why-icon {
  transform: scale(1.08);
}

.why-card:nth-child(1) .why-icon { background: var(--cyan-soft); }
.why-card:nth-child(2) .why-icon { background: var(--purple-soft); }
.why-card:nth-child(3) .why-icon { background: var(--sky); }
.why-card:nth-child(4) .why-icon { background: var(--yellow-soft); }
.why-card:nth-child(5) .why-icon { background: var(--mint-soft); }

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.why-card p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1.55;
}

/* ---------- Facilities & Care (redesign) ---------- */
.care-section {
  background:
    radial-gradient(ellipse 45% 40% at 10% 10%, rgba(0, 174, 239, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 35% at 90% 90%, rgba(247, 148, 29, 0.12), transparent 50%),
    linear-gradient(180deg, #f4fbff 0%, #fff8ef 55%, #f7f4ff 100%);
}

.care-showcase {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 900px) {
  .care-showcase {
    grid-template-columns: 1.35fr 0.85fr;
    gap: 1.25rem;
    align-items: stretch;
  }
}

.care-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow-lift);
  background: var(--navy);
}

.care-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.care-media-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.95rem 1.15rem;
  border-radius: 18px;
  background: rgba(16, 24, 68, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
}

.care-media-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.15rem;
}

.care-media-caption span {
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.88;
}

.care-highlights {
  display: grid;
  gap: 0.85rem;
}

.care-chip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 1rem 1.1rem;
  border: 1.5px solid rgba(16, 24, 68, 0.06);
  box-shadow: 0 8px 22px rgba(16, 24, 68, 0.05);
}

.care-chip > span {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  background: var(--cyan-soft);
}

.care-chip:nth-child(2) > span { background: var(--purple-soft); }
.care-chip:nth-child(3) > span { background: var(--yellow-soft); }

.care-chip h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.care-chip p {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.45;
}

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

@media (min-width: 640px) {
  .care-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .care-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .care-grid .care-tile:nth-child(4) {
    grid-column: 1;
  }

  .care-grid .care-tile:nth-child(5) {
    grid-column: 2 / span 2;
  }
}

.care-tile {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 1.4rem 1.25rem 1.45rem;
  min-height: 10.5rem;
  color: var(--navy);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.care-tile::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  right: -30px;
  bottom: -40px;
  opacity: 0.28;
  pointer-events: none;
}

.care-tile:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 36px rgba(27, 20, 100, 0.14);
}

.care-icon {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 0.9rem;
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 18px rgba(16, 24, 68, 0.08);
}

.care-tile h3 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}

.care-tile p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(16, 24, 68, 0.72);
  max-width: 30ch;
}

.care-cyan { background: linear-gradient(155deg, #dff6ff 0%, #9fe3f8 55%, #5dcef5 100%); }
.care-cyan::after { background: #00aeef; }
.care-purple { background: linear-gradient(155deg, #ecebff 0%, #c5c2f2 55%, #8f8bd4 100%); }
.care-purple::after { background: #3f3c8d; }
.care-sky { background: linear-gradient(155deg, #e8f9f2 0%, #b6efd8 55%, #7ed9b8 100%); }
.care-sky::after { background: #2bb98a; }
.care-sun { background: linear-gradient(155deg, #fff1df 0%, #ffd39a 55%, #f7a94a 100%); }
.care-sun::after { background: #f7941d; }
.care-mint { background: linear-gradient(155deg, #fff8df 0%, #ffe58a 55%, #ffd24d 100%); }
.care-mint::after { background: #e6b800; }

@media (max-width: 640px) {
  .care-media img {
    min-height: 220px;
    max-height: 260px;
  }
}

/* ---------- Reviews ---------- */
.reviews-wrap {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 min(100%, 380px);
  background: #fff;
  border-radius: 28px;
  padding: 1.75rem;
  border: 1.5px solid rgba(16, 24, 68, 0.05);
  box-shadow: var(--shadow-soft);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .review-card {
    flex: 0 0 calc(50% - 0.625rem);
  }
}

@media (min-width: 1024px) {
  .review-card {
    flex: 0 0 calc(33.333% - 0.84rem);
  }
}

.stars-row {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}

.review-card blockquote {
  margin: 0 0 1.25rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
  flex: 1;
  line-height: 1.65;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 800;
  color: var(--navy);
  font-size: 0.95rem;
}

.reviewer-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.reviews-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(16, 24, 68, 0.1);
  background: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--navy);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-nav button:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: scale(1.08);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.reviews-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(16, 24, 68, 0.15);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.reviews-dots button.active {
  background: var(--orange);
  width: 28px;
  border-radius: 999px;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }

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

  .gallery-tall {
    grid-row: span 2;
  }
}

.gallery-item {
  margin: 0;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 8px 28px rgba(27, 20, 100, 0.12);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease;
  min-height: 240px;
  aspect-ratio: 4 / 3;
}

.gallery-tall {
  aspect-ratio: 3 / 4;
  min-height: 320px;
}

.gallery-wide {
  aspect-ratio: 16 / 9;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  position: absolute;
  inset: 0;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(16, 24, 68, 0.85));
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
}

/* ---------- Homepage gallery peek ---------- */
.peek-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 45% at 8% 20%, rgba(0, 174, 239, 0.14), transparent 55%),
    radial-gradient(ellipse 45% 40% at 92% 80%, rgba(247, 148, 29, 0.14), transparent 50%),
    linear-gradient(165deg, #101844 0%, #1b1464 42%, #3f3c8d 100%);
  color: #fff;
}

.peek-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 229, 102, 0.12), transparent 28%),
    radial-gradient(circle at 20% 75%, rgba(0, 174, 239, 0.16), transparent 32%);
}

.peek-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 960px) {
  .peek-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
    gap: 2.5rem;
  }
}

.peek-copy .section-label {
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.peek-copy h2 {
  color: #fff;
  margin-bottom: 0.85rem;
  max-width: 12ch;
}

.peek-copy > p {
  margin: 0 0 1.25rem;
  max-width: 34ch;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.peek-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.5rem;
  padding: 0;
}

.peek-tags li {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.peek-cta {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.peek-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1.15fr 0.85fr;
  gap: 0.85rem;
  position: relative;
  min-height: 420px;
}

.peek-shot {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1.35rem;
  background: rgba(16, 24, 68, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  isolation: isolate;
  text-decoration: none;
  color: #fff;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.peek-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(16, 24, 68, 0.78) 100%);
  z-index: 1;
  pointer-events: none;
}

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

.peek-shot:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.peek-shot:hover img {
  transform: scale(1.07);
}

.peek-caption {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.85rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.peek-hero {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 280px;
}

.peek-mid {
  grid-column: 2;
  grid-row: 1;
  min-height: 160px;
}

.peek-wide {
  grid-column: 2;
  grid-row: 2;
  min-height: 140px;
}

.peek-accent {
  grid-column: 1 / -1;
  grid-row: 3;
  max-width: 210px;
  margin-left: auto;
  margin-right: 8%;
  margin-top: -2.4rem;
  aspect-ratio: 3 / 4;
  border-radius: 1.1rem;
  transform: rotate(4deg);
  border: 4px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
  z-index: 3;
  animation: peekFloat 5.5s ease-in-out infinite;
}

.peek-accent::after {
  background: linear-gradient(180deg, transparent 55%, rgba(16, 24, 68, 0.72) 100%);
}

.peek-accent:hover {
  animation: none;
  transform: rotate(2deg) translateY(-6px) scale(1.02);
}

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

@media (max-width: 959px) {
  .peek-copy h2 {
    max-width: none;
  }

  .peek-mosaic {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .peek-hero {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
    min-height: 220px;
  }

  .peek-mid,
  .peek-wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .peek-accent {
    grid-column: 1 / -1;
    margin: -1.5rem auto 0;
    max-width: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .peek-accent {
    animation: none;
  }

  .peek-shot:hover,
  .peek-shot:hover img {
    transform: none;
  }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
  }
}

.contact-info {
  background: linear-gradient(160deg, var(--navy) 0%, var(--purple) 100%);
  color: #fff;
  border-radius: 32px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: "✦";
  position: absolute;
  font-size: 8rem;
  opacity: 0.08;
  top: -1rem;
  right: 1rem;
  animation: twinkle 4s ease-in-out infinite;
}

.contact-info h2 {
  color: #fff;
  font-size: 1.85rem;
  margin-bottom: 0.75rem;
}

.contact-info > p {
  opacity: 0.85;
  font-weight: 600;
  margin: 0 0 1.75rem;
}

.contact-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-list .ci {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-list a:hover {
  color: var(--yellow);
}

.social-row {
  display: flex;
  gap: 0.65rem;
}

.social-row a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: background 0.25s ease, transform 0.25s ease;
}

.social-row a:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

.contact-form-wrap {
  background: #fff;
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(16, 24, 68, 0.04);
}

.contact-form-wrap h3 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.contact-form-wrap > p {
  color: var(--text-muted);
  font-weight: 600;
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid .full {
    grid-column: 1 / -1;
  }
}

.field label {
  display: block;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(16, 24, 68, 0.1);
  border-radius: 16px;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.15);
  background: #fff;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-success {
  display: none;
  background: var(--mint-soft);
  color: #1a8f6a;
  font-weight: 800;
  padding: 1rem;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 1rem;
}

.form-success.show {
  display: block;
  animation: fadeScaleIn 0.4s ease;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--orange), var(--yellow), var(--mint));
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand img {
  height: 72px;
  width: auto;
  margin-bottom: 1rem;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.footer-brand p {
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
  max-width: 32ch;
  line-height: 1.6;
}

.footer h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.wa-label {
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
  animation: fadeScaleIn 0.5s ease 1.5s both;
}

@media (max-width: 560px) {
  .wa-label {
    display: none;
  }
}

.wa-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: waPulse 2.5s ease-in-out infinite;
}

.wa-btn:hover {
  transform: scale(1.12);
}

/* ---------- Scroll reveal ---------- */
/* Visible by default so pages never go blank if JS/CSS path fails on hosting. */
.reveal,
.reveal-scale {
  opacity: 1;
  transform: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html.js .reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Creative polish ---------- */
.hero-enter {
  animation: heroInLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-enter .hero-eyebrow { animation: fadeScaleIn 0.6s ease 0.12s both; }
.hero-enter h1,
.hero-enter .hero-title { animation: none; }
.hero-enter .hero-sub { animation: heroInLeft 0.85s cubic-bezier(0.22, 1, 0.36, 1) 1.25s both; }
.hero-enter .hero-ctas { animation: heroInLeft 0.85s cubic-bezier(0.22, 1, 0.36, 1) 1.4s both; }

.hero-enter-visual {
  animation: heroInRight 1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.text-shimmer {
  background: linear-gradient(105deg, #ffe566 0%, #fff 35%, #ffe566 50%, #f7941d 75%, #ffe566 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  animation: shimmerText 3.5s linear infinite;
}

.float-badge {
  overflow: hidden;
}

.float-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: badgeShine 4.5s ease-in-out infinite;
}

.badge-2::after { animation-delay: 1.2s; }
.badge-3::after { animation-delay: 2.4s; }

.zone-card[style*="--i"] {
  transition-delay: calc(var(--i) * 0.05s);
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.tilt-card .zone-icon {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tilt-card:hover .zone-icon {
  animation: iconPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.section-header h2 {
  position: relative;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 5px;
  margin: 0.75rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--orange), var(--yellow));
  background-size: 200% 100%;
  animation: gradientSlide 3s linear infinite;
}

.cosmic-cta {
  position: relative;
  z-index: 1;
  overflow: visible;
  padding: 0.75rem 0 3.75rem;
  margin-top: 0;
  background: transparent;
  color: #fff;
}

.cosmic-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
  animation: sparkFloat 5s ease-in-out infinite;
}

.spark.s1 { top: 20%; left: 12%; animation-delay: 0s; }
.spark.s2 { top: 60%; left: 28%; background: var(--yellow); animation-delay: -1s; width: 8px; height: 8px; }
.spark.s3 { top: 30%; right: 18%; background: var(--cyan); animation-delay: -2s; }
.spark.s4 { bottom: 22%; right: 30%; background: #d8b4fe; animation-delay: -0.5s; }
.spark.s5 { top: 45%; left: 55%; animation-delay: -3s; width: 4px; height: 4px; }

/* Match hero-grid column rhythm exactly */
.cosmic-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .cosmic-cta-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }
}

.cosmic-cta-copy {
  max-width: 38ch;
}

.cosmic-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.75rem;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

.cosmic-cta h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  margin-bottom: 0.65rem;
  max-width: 16ch;
  line-height: 1.2;
}

.cosmic-cta-copy > p:last-of-type {
  margin: 0;
  max-width: 38ch;
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.82);
}

.cosmic-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

@media (min-width: 900px) {
  .cosmic-cta-actions {
    justify-content: flex-start;
    padding-left: 0.5rem;
  }
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  transform: translateY(-2px);
}

.zone-marquee {
  overflow: hidden;
  background: linear-gradient(90deg, #fff4e5, #ebeaf5, #e8f8fe);
  border-block: 1px solid rgba(16, 24, 68, 0.06);
  padding: 0.85rem 0;
}

.zone-marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 38s linear infinite;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--navy);
}

.zone-marquee-track span {
  white-space: nowrap;
  opacity: 0.85;
}

.zone-marquee:hover .zone-marquee-track {
  animation-play-state: paused;
}

.review-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.review-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: var(--shadow-lift);
}

.tab-btn.active {
  animation: tabPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.magnetic {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.mascot-stage {
  transition: transform 0.2s ease-out;
}

.pill {
  position: relative;
  overflow: hidden;
}

.pill:hover {
  background: linear-gradient(135deg, #fff, var(--cyan-soft));
}

.why-card {
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.12), transparent 70%);
  top: -40px;
  right: -40px;
  transition: transform 0.45s ease;
}

.why-card:hover::after {
  transform: scale(1.6);
}

@keyframes heroInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes heroPhraseIn {
  0% {
    opacity: 0;
    transform: translateY(115%) rotate(2.5deg) scale(0.96);
    filter: blur(8px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
    filter: blur(0);
  }
}

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

@keyframes heroRuleDraw {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes heroLineRise {
  from {
    opacity: 0;
    transform: translateY(110%);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroInRight {
  from { opacity: 0; transform: translateX(36px) scale(0.96); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes shimmerText {
  to { background-position: 220% center; }
}

@keyframes badgeShine {
  0%, 60%, 100% { transform: translateX(-120%); }
  75% { transform: translateX(120%); }
}

@keyframes sparkFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-14px) scale(1.4); opacity: 1; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes gradientSlide {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes iconPop {
  0% { transform: scale(1) rotate(0); }
  40% { transform: scale(1.2) rotate(-8deg); }
  100% { transform: scale(1.12) rotate(-6deg); }
}

@keyframes tabPop {
  from { transform: scale(0.92); }
  to { transform: scale(1); }
}

/* ---------- Mobile-first responsive polish ---------- */
@media (max-width: 1099px) {
  .nav-cta {
    display: none !important;
  }
}

@media (max-width: 899px) {
  html {
    scroll-padding-top: 7.5rem;
  }

  .container {
    width: min(1180px, calc(100% - 1.5rem));
  }

  .announce {
    font-size: 0.75rem;
  }

  .announce-inner {
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.6rem 0;
    flex-wrap: nowrap;
  }

  .announce-sep,
  .announce-text span:last-child {
    display: none;
  }

  .announce-text {
    justify-content: flex-start;
    text-align: left;
    flex: 1 1 auto;
    min-width: 0;
  }

  .announce-call {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    white-space: nowrap;
  }

  .logo img {
    height: 54px;
    max-width: 140px;
  }

  .nav-inner {
    padding: 1rem 0;
    min-height: 5.25rem;
    gap: 1rem;
  }

  .btn {
    padding: 0.8rem 1.25rem;
    font-size: 0.9rem;
    min-height: 44px;
  }

  .hero {
    min-height: auto;
    padding: 1.5rem 0 1.25rem;
    align-items: flex-start;
  }

  .cosmic-cta {
    padding: 0.5rem 0 2.75rem;
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .hero h1,
  .hero-title {
    font-size: clamp(1.55rem, 6.5vw, 2.15rem);
    max-width: none;
    gap: 0.4rem;
  }

  .hero-phrase {
    width: max-content;
    max-width: 100%;
  }

  .hero-sub {
    max-width: none;
    font-size: 0.98rem;
  }

  .hero-ctas {
    width: 100%;
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 0;
    gap: 0.65rem;
    overflow: visible;
    align-items: center;
  }

  .hero-mascot {
    order: -1;
    width: 100%;
  }

  .mascot-stage {
    width: min(100%, 280px);
    margin-inline: auto;
  }

  .float-badge {
    position: static;
    width: 100%;
    max-width: 300px;
    justify-content: flex-start;
    animation: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    font-size: 0.74rem;
    padding: 0.55rem 0.85rem;
  }

  .float-badge:last-of-type {
    margin-bottom: 0.5rem;
  }

  .float-badge::after {
    display: none;
  }

  .badge-1,
  .badge-2,
  .badge-3 {
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .orbit-rocket {
    font-size: 1.85rem;
  }

  .cosmic-cta-copy {
    max-width: none;
  }

  .cosmic-cta h2 {
    max-width: none;
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .cosmic-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .cosmic-cta-actions .btn {
    width: 100%;
  }

  .section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 1.75rem;
  }

  .section-header h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .programs-photo,
  .why-banner {
    max-height: none;
    border-radius: 22px;
  }

  .programs-photo img,
  .why-banner img {
    height: 220px;
  }

  .programs-photo figcaption,
  .why-banner figcaption {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: none;
    padding: 0.7rem 0.9rem;
  }

  .programs-photo figcaption strong,
  .why-banner figcaption strong {
    font-size: 1rem;
  }

  .programs-photo figcaption span,
  .why-banner figcaption span {
    font-size: 0.8rem;
  }

  .programs-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.45rem;
    padding-bottom: 0.35rem;
    margin-inline: -0.25rem;
    padding-inline: 0.25rem;
    scrollbar-width: none;
  }

  .programs-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
  }

  .tab-panel {
    padding: 1.35rem !important;
    border-radius: 24px;
  }

  .program-badge {
    width: 88px;
    height: 88px;
    font-size: 2.25rem;
    border-radius: 28px;
  }

  .zones-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .zone-card {
    padding: 1rem 0.75rem;
    border-radius: 18px;
  }

  .zone-card h3 {
    font-size: 0.86rem;
  }

  .zone-sub {
    font-size: 0.7rem;
  }

  .zone-icon {
    width: 52px;
    height: 52px;
    font-size: 1.45rem;
    border-radius: 16px;
    margin-bottom: 0.65rem;
  }

  .zone-expand {
    display: block;
    max-height: none;
    opacity: 1;
    margin-top: 0.45rem;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .about-photo {
    aspect-ratio: 4 / 5;
    max-height: 420px;
    border-radius: 24px;
  }

  .gallery-item {
    min-height: 200px;
    border-radius: 18px;
    aspect-ratio: 1;
  }

  .gallery-tall,
  .gallery-wide {
    aspect-ratio: 4 / 3;
  }

  .gallery-item figcaption {
    font-size: 0.82rem;
    padding: 2rem 0.75rem 0.75rem;
  }

  .contact-info,
  .contact-form-wrap {
    padding: 1.5rem;
    border-radius: 24px;
  }

  .review-card {
    flex: 0 0 100%;
    min-height: 0;
    padding: 1.35rem;
  }

  .whatsapp-float {
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    right: calc(1rem + env(safe-area-inset-right, 0px));
  }

  .wa-btn {
    width: 54px;
    height: 54px;
    font-size: 1.6rem;
  }

  .zone-marquee {
    padding: 0.7rem 0;
  }

  .zone-marquee-track {
    font-size: 0.8rem;
    gap: 1.25rem;
  }

  .footer {
    padding: 2.5rem 0 1.25rem;
  }

  .tilt-card:hover {
    transform: none;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }

  .mobile-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .why-grid {
    gap: 0.85rem;
  }

  .why-card {
    padding: 1.15rem;
  }

  .reviews-track {
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .zones-grid {
    grid-template-columns: 1fr;
  }

  .zone-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.85rem;
    row-gap: 0.15rem;
    text-align: left;
    padding: 0.9rem 1rem;
    align-items: start;
  }

  .zone-icon {
    grid-row: 1 / span 4;
    margin: 0;
    align-self: center;
  }

  .zone-card h3,
  .zone-sub,
  .zone-expand {
    grid-column: 2;
  }

  .zone-card.z-theatre {
    display: grid;
  }

  .announce-call {
    flex-shrink: 0;
  }

  .hero-eyebrow,
  .cosmic-kicker {
    font-size: 0.72rem;
  }

  .nebula-1,
  .nebula-2,
  .nebula-3 {
    width: 160px;
    height: 160px;
  }

  .planet-1 {
    width: 36px;
    height: 36px;
  }

  .orbit-ring {
    width: min(92vw, 280px);
    height: min(92vw, 280px);
  }
}

@media (hover: none) and (pointer: coarse) {
  .magnetic:hover,
  .tilt-card:hover,
  .zone-card:hover,
  .why-card:hover,
  .gallery-item:hover,
  .review-card:hover {
    transform: none;
  }

  .btn:hover {
    transform: none;
  }
}

/* ---------- Keyframes ---------- */
@keyframes floatCloud {
  from { transform: translateX(0); }
  to { transform: translateX(40px); }
}

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

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

@keyframes twinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.85) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(12deg); }
}

@keyframes twinkleField {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes nebulaPulse {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50% { transform: scale(1.12); opacity: 0.7; }
}

@keyframes shoot {
  0% { opacity: 0; transform: translateX(0) translateY(0) rotate(-35deg); }
  5% { opacity: 1; }
  30% { opacity: 0; transform: translateX(-220px) translateY(140px) rotate(-35deg); }
  100% { opacity: 0; transform: translateX(-220px) translateY(140px) rotate(-35deg); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes galaxyGlow {
  0%, 100% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.08), 0 0 50px rgba(167, 139, 250, 0.45), inset 0 -20px 40px rgba(0, 0, 0, 0.25); }
  50% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.12), 0 0 70px rgba(192, 132, 252, 0.65), inset 0 -20px 40px rgba(0, 0, 0, 0.25); }
}

@keyframes orbitRocket {
  from {
    transform: rotate(0deg) translateX(168px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(168px) rotate(-360deg);
  }
}

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

@keyframes floatRocket {
  0%, 100% { transform: rotate(-28deg) translateY(0); }
  50% { transform: rotate(-22deg) translateY(-16px); }
}

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

@keyframes blobMorph {
  0%, 100% { border-radius: 58% 42% 48% 52% / 48% 55% 45% 52%; }
  33% { border-radius: 45% 55% 58% 42% / 55% 48% 52% 45%; }
  66% { border-radius: 52% 48% 42% 58% / 45% 55% 48% 52%; }
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(247, 148, 29, 0.35); }
  50% { box-shadow: 0 10px 28px rgba(247, 148, 29, 0.55), 0 0 0 12px rgba(247, 148, 29, 0.12); }
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55), 0 0 0 10px rgba(37, 211, 102, 0.15); }
}

@keyframes fadeScaleIn {
  from { opacity: 0; transform: scale(0.96) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

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

  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-scale,
  .hero-enter,
  .hero-enter-visual,
  .hero-line-text,
  .hero-comma,
  .hero-phrase-text,
  .hero-phrase-text em,
  .hero-phrase-rule {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }

  .zone-marquee-track {
    animation: none !important;
  }
}
