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

:root {
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e3a5f;
  --blue-900: #0f172a;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --orange-500: #f97316;
  --shadow-soft: 0 14px 42px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 20px 50px rgba(15, 23, 42, 0.12);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1200px, calc(100% - 2rem));
  --ease: cubic-bezier(0.2, 0.65, 0.2, 1);
}

a.btn.btn-primary.btn-nav.js-open-register.color {
    color: #fff;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.page-shell {
  position: relative;
  min-height: 100vh;
}

.top-bar {
  background: var(--blue-800);
  color: var(--white);
  padding: 0.75rem 0;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.top-bar strong {
  color: #fcd34d;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(203, 213, 225, 0.7);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.navbar.scrolled,
.navbar.is-scrolled {
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.94);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 1rem;
  min-width: 0;
}

.brand-logo {
  width: auto;
  object-fit: contain;
}

.mirai-logo {
  height: 48px;
}

.casc-logo {
  height: 40px;
}

.brand-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-300);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #000;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
  padding: 0.95rem 1.5rem;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 14px 26px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-700);
  border: 1px solid var(--blue-200);
  padding: 0.95rem 1.5rem;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--blue-50);
  border-color: var(--blue-400);
}

.btn-nav {
  padding-inline: 1.25rem;
}

.btn-lg {
  padding: 1rem 2rem;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.5rem;
  border-radius: 0.75rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--gray-800);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
  position: relative;
  padding: 5rem 0 4.5rem;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 28%),
    linear-gradient(135deg, var(--blue-50) 0%, #ffffff 52%, rgba(219, 234, 254, 0.8) 100%);
  overflow: clip;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.65;
}

.hero-bg-shape-one {
  width: 420px;
  height: 420px;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.18), rgba(59, 130, 246, 0.05), transparent 70%);
  animation: floatBlob 10s ease-in-out infinite;
}

.hero-bg-shape-two {
  width: 320px;
  height: 320px;
  left: -140px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.16), transparent 70%);
  animation: floatBlob 12s ease-in-out infinite reverse;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue-700);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.hero-badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--blue-500);
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45);
  animation: pulseDot 2s infinite;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 1.05;
  color: var(--blue-900);
}

.hero h1 span,
.age-range {
  background: linear-gradient(135deg, var(--blue-600), var(--orange-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  max-width: 580px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin: 0 0 1.75rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-stat {
  min-width: 130px;
  padding: 1rem 1.1rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(191, 219, 254, 0.8);
  box-shadow: var(--shadow-soft);
}

.hero-stat .number {
  display: block;
  color: var(--blue-700);
  font-size: 1.55rem;
  font-weight: 900;
  margin-bottom: 0.2rem;
}

.hero-stat .label {
  color: var(--gray-600);
  font-size: 0.86rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  position: relative;
}

.hero-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  perspective: 1000px;
}

.hero-card {
  margin: 0;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transform: translateZ(0);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.hero-card:nth-child(1) { border-radius: 1.4rem 1.4rem 0.4rem 1.4rem; }
.hero-card:nth-child(2) { border-radius: 1.4rem 1.4rem 1.4rem 0.4rem; }
.hero-card:nth-child(3) { border-radius: 0.4rem 1.4rem 1.4rem 1.4rem; }
.hero-card:nth-child(4) { border-radius: 1.4rem 0.4rem 1.4rem 1.4rem; }

.hero-card img {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

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

.hero-date-card {
  position: absolute;
  left: 50%;
  bottom: -1.4rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: min(92%, 320px);
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1rem;
  border: 1px solid rgba(191, 219, 254, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.cal-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--blue-100);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.date-text strong {
  display: block;
  font-size: 0.96rem;
  color: var(--blue-800);
}

.date-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-top: 0.15rem;
}

.marquee-section {
  background: linear-gradient(90deg, var(--blue-700), var(--blue-600));
  padding: 0.95rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
  padding-inline: 1.5rem;
}

.marquee-track span::before {
  content: "★";
  margin-right: 0.85rem;
  opacity: 0.55;
}

.section {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title .overline {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--blue-500);
}

.section-title h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.16;
}

.section-title p {
  max-width: 680px;
  margin: 0.9rem auto 0;
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.75;
}

.activities-grid,
.packages-grid,
.includes-grid {
  display: grid;
  gap: 1.5rem;
}

.activities-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.activity-card,
.package-card,
.include-item,
.campus-feature,
.cta-card,
.age-banner {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease, background 0.35s ease;
}

.activity-card {
  overflow: hidden;
  background: var(--white);
  border-radius: 1.25rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.03);
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: var(--blue-300);
}

.activity-card img {
  width: 100%;
  aspect-ratio: 1 / 0.7;
  object-fit: cover;
}

.card-body {
  padding: 1.25rem;
}

.activity-icon-badge {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--blue-50);
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
}

.activity-card h3,
.package-card h3,
.include-item h4,
.campus-feature h4 {
  margin: 0 0 0.45rem;
}

.activity-card h3 {
  color: var(--blue-900);
  font-size: 1.02rem;
}

.activity-card p {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.campus {
  background: linear-gradient(180deg, var(--blue-50), rgba(255, 255, 255, 0.96));
}

.campus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  align-items: center;
}

.campus-img {
  width: 100%;
  min-height: 420px;
  border-radius: 1.5rem;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.campus-features {
  display: grid;
  gap: 1rem;
}

.campus-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 1.1rem;
  border: 1px solid rgba(203, 213, 225, 0.72);
  backdrop-filter: blur(10px);
}

.campus-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--blue-300);
}

.campus-feature .icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-100);
  font-size: 1.3rem;
}

.campus-feature p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 0.93rem;
}

.age-group {
  background: var(--white);
  padding-top: 1rem;
}

.age-banner {
  padding: 3.4rem 2rem;
  border-radius: 1.6rem;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  text-align: center;
  border: 1px solid var(--blue-200);
  box-shadow: var(--shadow-soft);
}

.age-banner h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "Playfair Display", serif;
  color: var(--blue-900);
}

.age-range {
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 4.8rem);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.age-banner p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--gray-600);
  line-height: 1.75;
  font-size: 1.02rem;
}

.packages-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-card {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--gray-200);
  border-radius: 1.45rem;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.03);
  text-align: center;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: var(--blue-300);
}

.package-card.featured {
  border: 2px solid var(--blue-500);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.14);
}

.package-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.45rem 1rem;
  letter-spacing: 0.04em;
}

.camp-num {
  color: var(--blue-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.package-card h3 {
  font-size: 1.55rem;
  color: var(--blue-900);
  font-family: "Playfair Display", serif;
}

.dates {
  margin-top: 0.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-600);
  line-height: 1.8;
}

.schedule {
  color: var(--blue-600);
  font-weight: 700;
  font-size: 0.9rem;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 1.7rem;
  text-align: left;
}

.package-card li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.8rem;
  color: var(--gray-700);
  line-height: 1.55;
  font-size: 0.95rem;
}

.package-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-500);
  font-weight: 900;
}

.btn-register-full {
  width: 100%;
}

.includes {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  color: var(--white);
}

.section-title.inverse .overline {
  color: var(--blue-200);
}

.section-title.inverse h2,
.section-title.inverse p {
  color: var(--white);
}

.section-title.inverse p {
  opacity: 0.8;
}

.includes-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.include-item {
  text-align: center;
  padding: 1.8rem 1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.include-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
}

.include-item .icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.include-item h4 {
  font-size: 0.96rem;
  color: var(--white);
}

.include-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
  font-size: 0.85rem;
}

.cta {
  background: linear-gradient(180deg, var(--gray-50), var(--blue-50));
}

.cta-card {
  text-align: center;
  padding: 3.5rem 2rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.cta-logos,
.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.cta-logos img,
.footer-logos img {
  width: auto;
  object-fit: contain;
}

.cta-logos img {
  height: 42px;
}

.x-mark,
.footer-divider {
  color: var(--blue-400);
  font-weight: 800;
}

.cta-card h2 {
  margin: 1.6rem 0 0.8rem;
  color: var(--blue-900);
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.cta-card > p {
  max-width: 680px;
  margin: 0 auto 1.8rem;
  color: var(--gray-600);
  line-height: 1.75;
}

.cta-contacts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
}

.cta-contact-item .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--blue-100);
}

.cta-contact-item a {
  display: inline-block;
  font-weight: 800;
  color: var(--blue-800);
  margin-bottom: 0.1rem;
}

.cta-contact-item span,
.cta-location {
  color: var(--gray-600);
}

.cta-location {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  padding: 2rem 0;
  font-size: 0.88rem;
}

.footer-logos {
  margin-bottom: 1rem;
}

.footer-logos img {
  height: 50px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.floating-card {
  animation: floatCard 4.6s ease-in-out infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45); }
  70% { box-shadow: 0 0 0 12px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

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

@keyframes floatBlob {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, 18px, 0) scale(1.03); }
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .campus-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-sub {
    margin-inline: auto;
  }

  .hero-stats,
  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    max-width: 720px;
    margin-inline: auto;
  }

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

  .includes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
  }
}

@media (max-width: 820px) {
  .navbar-inner {
    min-height: 74px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0.75rem;
    right: 0.75rem;
    display: grid;
    gap: 0.7rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--gray-200);
    border-radius: 1.1rem;
    box-shadow: var(--shadow-soft);
    transform-origin: top;
    transform: scaleY(0.85);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
  }

  .nav-links.open,
  .nav-links.is-open {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.8rem 0.9rem;
    border-radius: 0.8rem;
  }

  .nav-links a:hover {
    background: var(--blue-50);
  }

  .btn-nav {
    width: 100%;
  }

  .section {
    padding: 5rem 0;
  }

  .campus-img {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .top-bar {
    font-size: 0.78rem;
    padding: 0.65rem 0;
  }

  .mirai-logo {
    height: 40px;
  }

  .casc-logo {
    height: 32px;
  }

  .brand-divider {
    height: 32px;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-mosaic {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    aspect-ratio: 1 / 0.62;
  }

  .hero-date-card {
    position: static;
    transform: none;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }

  .floating-card {
    animation: none;
  }

  .hero-stats {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-actions {
    flex-direction: column;
  }

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

  .activities-grid,
  .includes-grid {
    grid-template-columns: 1fr;
  }

  .age-banner,
  .cta-card,
  .package-card {
    padding-inline: 1.25rem;
  }

  .cta-contacts {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-contact-item {
    width: 100%;
    justify-content: flex-start;
  }
}


.register-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  align-content: space-around;
}

.register-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.register-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
}

.register-modal__dialog {
  position: relative;
  width: min(100%, 430px);
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
  padding: 1.35rem;
  z-index: 1;
  max-height: calc(100dvh - 1.5rem);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  animation: modalUp 0.32s var(--ease);
  scrollbar-width: thin;
}

.register-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-800);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.register-modal__header h3 {
  margin: 0.2rem 0 0.45rem;
  font-size: clamp(1.1rem, 2.5vw, 1.75rem);
  color: var(--blue-900);
  line-height: 1.4;
}

.register-modal__header p {
  margin: 0 0 1rem;
  color: var(--gray-600);
  font-size: 0.94rem;
  line-height: 1.3;
}

.register-form {
  display: grid;
  gap: 0px;
}

.form-field {
  display: grid;
  gap: 10px;
}

.form-field label {
  font-weight: 700;
  color: var(--gray-800);
  font-size: 0.92rem;
}

.form-field input {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  min-height: 36px;
  padding: 0.60rem 0.9rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-field input:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.12);
}

.form-field input.input-error {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220,38,38,0.08);
}

.error-message {
  min-height: 1rem;
  color: #dc2626;
  font-size: 0.82rem;
}

.form-actions {
  padding-top: 0.2rem;
}

.form-actions .btn {
  width: 100%;
}

.form-success {
  margin: 0;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  background: #ecfdf5;
  color: #166534;
  border: 1px solid #86efac;
  font-weight: 600;
  font-size: 0.92rem;
}

.register-modal__dialog::-webkit-scrollbar {
  width: 8px;
}

.register-modal__dialog::-webkit-scrollbar-thumb {
  background: rgba(37, 99, 235, 0.28);
  border-radius: 999px;
}

.register-modal__dialog::-webkit-scrollbar-track {
  background: transparent;
}

@media (min-width: 641px) {
  .register-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .form-field:first-child,
  .form-actions,
  .form-success {
    grid-column: 1 / -1;
  }
}

body.modal-open {
  overflow: hidden;
}

@keyframes modalUp {
  from { transform: translateY(18px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

@media (max-width: 640px) {
  .register-modal {
    padding: 0.5rem;
    align-items: end;
  }

  .register-modal__dialog {
    width: 100%;
    max-height: calc(100dvh - 1rem);
    padding: 1rem;
    border-radius: 20px;
  }

  .register-modal__close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }
}


.mobile-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 -10px 26px rgba(15, 23, 42, 0.12);
  border-top: 1px solid rgba(203, 213, 225, 0.9);
}

.mobile-sticky-bar__btn {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-decoration: none;
  margin: 0 0.3rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s ease;
}

.mobile-sticky-bar__btn:active {
  transform: translateY(1px);
}

.mobile-sticky-bar__btn--call {
  color: var(--blue-700);
  background: linear-gradient(180deg, #ffffff, #eff6ff);
  border: 1px solid var(--blue-200);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.10);
}

.mobile-sticky-bar__btn--enquiry {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--blue-600));
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  .mobile-sticky-bar {
    display: grid;
  }
  .cta-contact-item {
    display: flex;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    border-radius: 1rem;
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    flex-direction: column;
    align-items: flex-start;
}
}



.mobile-sticky-bar__btn i,
.cal-icon i,
.activity-icon-badge i,
.campus-feature .icon i,
.include-item .icon i,
.cta-contact-item .icon i,
.x-mark i,
.cta-location i { line-height: 1; }


.premium-header {
  position: relative;
  padding: 1.25rem 1.25rem 0.2rem;
  margin: -0.5rem -0.5rem 0.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.95));
  color: var(--white);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  overflow: hidden;
}

.premium-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(251, 191, 36, 0.24), transparent 32%);
  pointer-events: none;
}

.premium-kicker {
  display: inline-flex;
  margin-bottom: 0.65rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fde68a;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1rem;
}

.form-field--full {
  margin-top: 1rem;
}

.register-form select,
.register-form textarea,
.register-form input {
  width: 100%;
}

.register-form select,
.register-form textarea {
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.98);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--gray-800);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.register-form select:focus,
.register-form textarea:focus,
.register-form input:focus {
  border-color: rgba(37, 99, 235, 0.65);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

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

.form-success {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  background: #ecfdf5;
  color: #065f46;
  font-weight: 600;
}

.form-error-general {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  background: #fef2f2;
  color: #991b1b;
  font-weight: 600;
}

.register-modal__dialog {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.2);
}

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

/* Exact popup style refresh */
.exact-popup {
  width: min(100%, 784px);
  padding: 42px 48px 26px;
  border-radius: 32px;
  background: linear-gradient(180deg, #fefefe 0%, #fbfbfd 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 35px 90px rgba(15, 23, 42, 0.22);
}

.exact-popup__header {
  margin: 0 0 16px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
}

.exact-popup__header::after,
.exact-popup__header .premium-kicker {
  display: none;
}

.exact-popup__header h3 {
  margin: 0;
  color: #16295f;
  font-size: clamp(2rem, 3.4vw, 2.95rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.exact-popup__header p {
  margin: 10px 0 0;
  color: #5a6785;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.45;
}

.exact-popup__form {
  display: block;
}

.exact-popup__form .form-field {
  display: block;
  margin: 22px 0 0;
}

.exact-popup__form .form-field label {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
  color: #1d2958;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 800;
}

.exact-popup__form .form-field label span {
  font-weight: 500;
  color: #5d6882;
}

.input-shell {
  display: flex;
  align-items: center;
  min-height: 68px;
  border: 1.5px solid #d9dde7;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  overflow: hidden;
}

.input-shell__icon,
.input-shell__prefix,
.input-shell__date-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #4f679b;
}

.input-shell__icon {
  width: 68px;
  font-size: 1.45rem;
}

.input-shell__prefix {
  min-width: 78px;
  padding: 0 18px 0 22px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #33456e;
}

.input-shell__date-icon {
  width: 68px;
  font-size: 1.55rem;
  color: #2d3653;
}

.input-shell__icon::after,
.input-shell__prefix::after {
  content: "";
  width: 1px;
  align-self: stretch;
  background: #d7dbe5;
  margin-left: 18px;
}

.input-shell--prefix .input-shell__prefix::after {
  margin-left: 16px;
}

.input-shell input {
  border: 0 !important;
  background: transparent !important;
  min-height: 66px;
  padding: 0 20px 0 4px !important;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem) !important;
  color: #3c4968;
  box-shadow: none !important;
}

.input-shell input::placeholder {
  color: #6b758d;
  opacity: 1;
}

.input-shell:focus-within {
  border-color: #7fa3ff;
  box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.10);
}

.input-shell .input-error {
  box-shadow: none !important;
}

.input-shell--date {
  position: relative;
}

.input-shell--date input[type="date"] {
  padding-right: 10px !important;
}

.input-shell--date input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.whatsapp-consent {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 0;
  color: #273556;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  font-weight: 500;
  cursor: pointer;
}

.whatsapp-consent input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.whatsapp-consent__box {
  width: 31px;
  height: 31px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #39a7ff 0%, #1f7ef1 100%);
  color: white;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18);
  font-size: 0.95rem;
}

.whatsapp-consent input:not(:checked) + .whatsapp-consent__box {
  background: #eef2f8;
  color: transparent;
  box-shadow: inset 0 0 0 1px #d5dbe8;
}

.form-actions {
  margin-top: 22px;
  padding-top: 0;
}

.exact-popup__submit {
  width: 100%;
  min-height: 68px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #356df4 0%, #2f63eb 40%, #2c4ed7 100%);
  color: #fff;
  font-size: clamp(1.12rem, 2vw, 1.28rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 16px 28px rgba(44, 78, 215, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.exact-popup__submit:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 20px 34px rgba(44, 78, 215, 0.3);
}

.popup-assurance,
.popup-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.popup-assurance {
  margin: 14px 0 0;
  color: #5f6981;
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
}

.popup-assurance__dot,
.popup-trust__star {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  flex: 0 0 auto;
}

.popup-assurance__dot {
  background: #57bf72;
  color: white;
  font-size: 0.78rem;
}

.popup-trust {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e8ebf1;
  color: #41506f;
  font-size: clamp(1rem, 1.65vw, 1.15rem);
}

.popup-trust strong {
  color: #263457;
}

.popup-trust__star {
  color: #f2c75c;
  font-size: 1.28rem;
}

.register-modal__close {
  top: 22px;
  right: 28px;
  width: 62px;
  height: 62px;
  background: #eef0f5;
  color: #1b2b59;
  font-size: 2.75rem;
  font-weight: 300;
  box-shadow: none;
}

.error-message {
  min-height: 1rem;
  padding-left: 6px;
  margin-top: 8px;
}

.form-success,
.form-error-general {
  margin-top: 14px;
  border-radius: 16px;
  font-size: 0.98rem;
}

@media (max-width: 767px) {
  .register-modal {
    padding: 0.75rem;
    align-items: center;
  }

  .exact-popup {
    width: 100%;
    max-height: calc(100dvh - 1.5rem);
    padding: 28px 18px 20px;
    border-radius: 24px;
  }

  .register-modal__close {
    top: 14px;
    right: 14px;
    width: 50px;
    height: 50px;
    font-size: 2.35rem;
  }

  .exact-popup__header h3 {
    max-width: calc(100% - 70px);
  }

  .input-shell {
    min-height: 58px;
    border-radius: 18px;
  }

  .input-shell__icon,
  .input-shell__date-icon {
    width: 56px;
    font-size: 1.2rem;
  }

  .input-shell__prefix {
    min-width: 64px;
    padding-left: 18px;
    padding-right: 14px;
    font-size: 1rem;
  }

  .input-shell__icon::after,
  .input-shell__prefix::after {
    margin-left: 14px;
  }

  .input-shell input {
    min-height: 56px;
    padding-right: 14px !important;
  }

  .exact-popup__submit {
    min-height: 58px;
  }

  .popup-assurance,
  .popup-trust,
  .whatsapp-consent {
    justify-content: flex-start;
    text-align: left;
  }
}


/* Compact mini cute popup refinements */
.exact-popup {
  width: min(100%, 550px);
  padding: 20px 22px 14px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
}

.exact-popup__header {
  margin-bottom: 8px;
}

.exact-popup__header h3 {
  font-size: clamp(1.35rem, 2vw, 1.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.exact-popup__header p {
  margin-top: 6px;
  font-size: 0.88rem;
  line-height: 1.4;
}

.exact-popup__form .form-field {
  margin-top: 0px;
}

.exact-popup__form .form-field label {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.input-shell {
  min-height: 46px;
  border-radius: 15px;
  border: 1.5px solid #dde3ef;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92), 0 4px 10px rgba(111, 133, 187, 0.05);
}

.input-shell__icon,
.input-shell__date-icon {
  width: 42px;
  font-size: 0.98rem;
}

.input-shell__prefix {
  min-width: 52px;
  padding: 0 10px 0 14px;
  font-size: 0.9rem;
}

.input-shell__icon::after,
.input-shell__prefix::after {
  margin-left: 10px;
}

.input-shell input {
  min-height: 44px;
  padding: 0 12px 0 2px !important;
  font-size: 0.92rem !important;
}

.whatsapp-consent {
  gap: 8px;
  margin-top: 11px;
  font-size: 0.86rem;
}

.whatsapp-consent__box {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  font-size: 0.7rem;
}

.form-actions {
  margin-top: 12px;
}

.exact-popup__submit {
  min-height: 46px;
  font-size: 0.98rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 10px 18px rgba(44, 78, 215, 0.16);
}

.popup-assurance {
  margin-top: 9px;
  font-size: 0.82rem;
}

.popup-assurance__dot,
.popup-trust__star {
  width: 18px;
  height: 18px;
}

.popup-trust {
  margin-top: 10px;
  padding-top: 10px;
  font-size: 0.84rem;
}

.register-modal__close {
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  background: #f1f4fb;
  box-shadow: 0 6px 14px rgba(148, 163, 184, 0.14);
}

.error-message {
  min-height: 0.8rem;
  margin-top: 5px;
  font-size: 0.72rem;
}

.form-success,
.form-error-general {
  margin-top: 10px;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  font-size: 0.82rem;
}

@media (max-width: 767px) {
  .register-modal {
    padding: 0.5rem;
    align-items: center;
  }

  .exact-popup {
    width: min(100%, 350px);
    max-height: calc(100dvh - 1rem);
    padding: 18px 14px 14px;
    border-radius: 22px;
  }

  .exact-popup__header h3 {
    max-width: calc(100% - 44px);
    font-size: 1.22rem;
  }

  .exact-popup__header p {
    font-size: 0.8rem;
  }

  .register-modal__close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    font-size: 1.4rem;
  }

  .input-shell {
    min-height: 42px;
    border-radius: 14px;
  }

  .input-shell__icon,
  .input-shell__date-icon {
    width: 38px;
    font-size: 0.9rem;
  }

  .input-shell__prefix {
    min-width: 48px;
    padding-left: 12px;
    padding-right: 10px;
    font-size: 0.84rem;
  }

  .input-shell input {
    min-height: 40px;
    font-size: 0.86rem !important;
  }

  .exact-popup__submit {
    min-height: 44px;
    font-size: 0.94rem;
  }

  .popup-assurance,
  .popup-trust,
  .whatsapp-consent {
    justify-content: flex-start;
    text-align: left;
    font-size: 0.82rem;
  }
}
