/* ============================================
   Macmillan Wise Kids School — Magical Dreamland Theme
   Design System: Bricolage Grotesque + DM Sans
   Palette: Coral, Green, Indigo, Yellow on Warm Whites & Deep Purple
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #1A1A1A;
  background: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* --- Design Tokens --- */
:root {
  /* Accent Colors */
  --coral: #FF6B6B;
  --coral-light: #FFF0E6;
  --coral-glow: #FF6B6B50;
  --green: #22C55E;
  --green-light: #F0FDF4;
  --green-glow: #22C55E40;
  --indigo: #6366F1;
  --indigo-light: #F0F5FF;
  --indigo-glow: #6366F140;
  --yellow: #FCD34D;
  --yellow-light: #FFFBEB;
  --orange: #D97706;

  /* Backgrounds */
  --bg-white: #FFFFFF;
  --bg-warm: #FFFAF5;
  --bg-card: #F6F7F8;
  --bg-dark: #1A1030;
  --bg-footer: #0F0A1F;

  /* Text */
  --text-primary: #1A1A1A;
  --text-secondary: #4B5563;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;

  /* Typography */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --section-padding: 100px 120px;
  --section-gap: 60px;

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --radius-pill: 30px;
  --radius-full: 40px;
}

/* --- Utility Classes --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-body);
}

.badge-coral {
  background: var(--coral-light);
  color: var(--coral);
}

.badge-indigo {
  background: var(--indigo-light);
  color: var(--indigo);
}

.badge-green {
  background: var(--green-light);
  color: var(--green);
}

.badge-glass {
  background: rgba(255, 255, 255, 0.12);
  color: var(--coral);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.section-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
}

/* --- Icons --- */
.icon-sm {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.icon-inline {
  display: inline-block;
  vertical-align: middle;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral), #FF8E53);
  color: #FFFFFF;
  box-shadow: 0 8px 30px var(--coral-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--coral-glow);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.btn-white {
  background: #FFFFFF;
  color: #6B21A8;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.btn-green {
  background: var(--green);
  color: #FFFFFF;
  box-shadow: 0 4px 16px var(--green-glow);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--green-glow);
}

.btn-indigo {
  background: var(--indigo);
  color: #FFFFFF;
  box-shadow: 0 4px 16px var(--indigo-glow);
}

.btn-indigo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--indigo-glow);
}

.btn-sm {
  padding: 14px 28px;
  font-size: 14px;
}

.btn-lg {
  padding: 20px 48px;
  font-size: 18px;
}

/* --- Animation Utils --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.animate-on-scroll:nth-child(2) {
  transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(3) {
  transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(4) {
  transition-delay: 0.3s;
}

.animate-on-scroll:nth-child(5) {
  transition-delay: 0.4s;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(15, 10, 31, 0.92);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo .logo-icon {
  font-size: 32px;
}

.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
}

.nav-logo .logo-accent {
  color: var(--coral);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.nav-links a:hover {
  color: #FFFFFF;
}

.nav-cta {
  padding: 12px 28px !important;
  font-size: 15px !important;
  border-radius: var(--radius-pill) !important;
  background: var(--coral) !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: #FF5252 !important;
  transform: translateY(-2px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: #FFFFFF;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(26, 16, 48, 0.5) 0%,
      rgba(45, 27, 105, 0.56) 40%,
      rgba(107, 33, 168, 0.63) 70%,
      rgba(147, 51, 234, 0.69) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-badge span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.87);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--coral), #FF8E53, var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* Floating hero decorations */
.hero-float {
  position: absolute;
  z-index: 2;
  font-size: 32px;
  animation: float 6s ease-in-out infinite;
  opacity: 0.7;
  pointer-events: none;
}

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

.hero-float:nth-child(2) {
  top: 25%;
  right: 12%;
  animation-delay: 1.5s;
}

.hero-float:nth-child(3) {
  bottom: 20%;
  left: 15%;
  animation-delay: 3s;
}

.hero-float:nth-child(4) {
  bottom: 30%;
  right: 10%;
  animation-delay: 4.5s;
}

.hero-float:nth-child(5) {
  top: 40%;
  left: 5%;
  animation-delay: 2s;
  font-size: 24px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--bg-warm);
  padding: var(--section-padding);
}

.about .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--section-gap);
}

.about-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.about-image {
  flex: 0 0 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-text p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.highlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
}

.highlight-tag.green {
  background: var(--green-light);
  color: var(--green);
}

.highlight-tag.indigo {
  background: var(--indigo-light);
  color: var(--indigo);
}

.highlight-tag.coral {
  background: var(--coral-light);
  color: var(--coral);
}

.highlight-tag.yellow {
  background: var(--yellow-light);
  color: var(--orange);
}

/* ============================================
   CLASSES SECTION
   ============================================ */
.classes {
  background: var(--bg-white);
  padding: var(--section-padding);
}

.classes .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--section-gap);
}

.classes-grid {
  display: flex;
  gap: 32px;
  width: 100%;
  justify-content: center;
}

.class-card {
  flex: 1;
  max-width: 560px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.class-card:hover {
  transform: translateY(-6px);
}

.class-card.lkg {
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.12);
}

.class-card.lkg:hover {
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.2);
}

.class-card.ukg {
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.12);
}

.class-card.ukg:hover {
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.class-card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

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

.class-card:hover .class-card-image img {
  transform: scale(1.05);
}

.class-card-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.class-card.lkg .class-card-body {
  background: var(--green-light);
}

.class-card.ukg .class-card-body {
  background: var(--indigo-light);
}

.class-label {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  width: fit-content;
}

.class-card.lkg .class-label {
  background: var(--green);
}

.class-card.ukg .class-label {
  background: var(--indigo);
}

.class-age {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
}

.class-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.class-items li {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}

.class-time {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
}

.class-card.lkg .class-time {
  color: var(--green);
}

.class-card.ukg .class-time {
  color: var(--indigo);
}

/* ============================================
   ACTIVITIES SECTION
   ============================================ */
.activities {
  background: linear-gradient(180deg, #F5F3FF 0%, #FFF0F5 50%, #FFFAF5 100%);
  padding: var(--section-padding);
}

.activities .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--section-gap);
}

.activities-grid {
  display: flex;
  gap: 24px;
  width: 100%;
  justify-content: center;
}

.activity-card {
  flex: 1;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.activity-icon {
  font-size: 40px;
}

.activity-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.activity-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   STATS / WHY CHOOSE US SECTION
   ============================================ */
.stats {
  background: var(--bg-dark);
  padding: var(--section-padding);
}

.stats .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--section-gap);
}

.stats .section-title {
  color: #FFFFFF;
}

.stats .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.stats-grid {
  display: flex;
  gap: 32px;
  width: 100%;
  justify-content: center;
}

.stat-card {
  flex: 1;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.stat-number.coral {
  color: var(--coral);
}

.stat-number.green {
  color: var(--green);
}

.stat-number.yellow {
  color: var(--yellow);
}

.stat-number.indigo {
  color: var(--indigo);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  background: var(--bg-white);
  padding: var(--section-padding);
}

.testimonials .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--section-gap);
}

.testimonials-grid {
  display: flex;
  gap: 24px;
  width: 100%;
}

.testimonial-card {
  flex: 1;
  padding: 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-card.warm {
  background: var(--bg-warm);
  border: 1px solid var(--coral-light);
}

.testimonial-card.purple {
  background: #F5F3FF;
  border: 1px solid #E0E7FF;
}

.testimonial-card.mint {
  background: var(--green-light);
  border: 1px solid #DCFCE7;
}

.testimonial-stars {
  font-size: 18px;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
}

.testimonial-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(107, 33, 168, 0.82) 0%,
      rgba(147, 51, 234, 0.75) 50%,
      rgba(192, 38, 211, 0.69) 100%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
}

.cta-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 600px;
}

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

.cta-trust {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--bg-footer);
  padding: 60px 120px 40px;
}

.footer-grid {
  display: flex;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-about {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo .logo-icon {
  font-size: 24px;
}

.footer-logo .logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
}

.footer-about p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  font-size: 18px;
  transition: background 0.3s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.footer-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
}

.footer-col a,
.footer-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   CONFETTI ANIMATION (form success)
   ============================================ */
.confetti-piece {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  z-index: 9999;
  pointer-events: none;
  animation: confetti-fall 3s ease-in forwards;
}

@keyframes confetti-fall {
  0% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }

  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(720deg);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1100px) {
  :root {
    --section-padding: 80px 48px;
  }

  .navbar {
    padding: 16px 32px;
  }

  .navbar.scrolled {
    padding: 12px 32px;
  }

  footer {
    padding: 48px 48px 32px;
  }

  .hero-title {
    font-size: 52px;
  }

  .section-title {
    font-size: 38px;
  }

  .cta-title {
    font-size: 42px;
  }

  .stat-number {
    font-size: 42px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 10, 31, 0.96);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
  }

  .about-grid {
    flex-direction: column;
  }

  .about-image {
    flex: none;
    width: 100%;
  }

  .about-image img {
    height: 300px;
  }

  .classes-grid {
    flex-direction: column;
  }

  .class-card {
    max-width: 100%;
  }

  .activities-grid {
    flex-wrap: wrap;
  }

  .activity-card {
    flex: 0 0 calc(50% - 12px);
  }

  .stats-grid {
    flex-wrap: wrap;
  }

  .stat-card {
    flex: 0 0 calc(50% - 16px);
  }

  .testimonials-grid {
    flex-direction: column;
  }

  .footer-grid {
    flex-direction: column;
    gap: 40px;
  }

  .footer-about {
    flex: none;
  }
}

@media (max-width: 600px) {
  :root {
    --section-padding: 60px 24px;
  }

  .navbar {
    padding: 14px 20px;
  }

  .nav-logo .logo-text {
    font-size: 18px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-subtitle {
    font-size: 16px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-card {
    padding: 24px;
  }

  .activity-card {
    flex: 0 0 100%;
  }

  .class-card-image {
    height: 200px;
  }

  .class-age {
    font-size: 22px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 14px;
  }

  .btn-lg {
    padding: 16px 36px;
    font-size: 16px;
  }

  /* Form Responsive Fixes */
  .enquiry-form {
    padding: 30px 20px !important;
  }

  .form-row {
    flex-direction: column !important;
    gap: 20px !important;
  }

  footer {
    padding: 40px 24px 24px;
  }
}