:root {
  /* Color Palette - Orange & Blue combinations (Classy & Playful) */
  --sky: #3B9ED4;                   /* Vibrant Playful Blue */
  --sky-dark: #1E65A7;              /* Classy Navy/Blue highlights */
  --sky-light: #E8F5FD;             /* Pastel Blue background */
  
  --orange: #F4861A;                /* Warm playful Montessori Orange */
  --orange-dark: #D36C0A;           /* Rich Orange accent */
  --orange-light: #FFF5EC;          /* Pastel Orange background */
  
  --yellow: #FFD700;                /* Sunny accents */
  --yellow-dark: #E6C200;
  
  --pink: #E85FA3;                  /* Creative accents */
  --pink-light: #FCEEF5;
  
  --teal: #2EC4B6;                  /* Playful teal */
  --teal-light: #EAF9F8;
  
  --purple: #8B5CF6;                /* Whimsical purple */
  --purple-light: #F3EFFF;
  
  --green: #4CAF50;                 /* Montessori green */
  --green-light: #EBF7EC;

  /* Neutral tones */
  --white: #ffffff;
  --cream: #FFFDF8;                 /* Soft warm linen cream */
  --text: #1E293B;                  /* Sophisticated dark slate text instead of harsh black */
  --text-light: #64748B;            /* Classy medium grey for descriptions */
  --border-light: rgba(30, 80, 140, 0.06);

  /* Layout tokens */
  --radius-xl: 36px;                /* Soft child-friendly card shape */
  --radius-lg: 24px;                /* Standard rounded container */
  --radius-md: 16px;                /* Buttons & badges */
  --radius-sm: 8px;
  
  /* Classy Soft Shadows */
  --shadow: 0 16px 36px rgba(30, 53, 87, 0.05), 0 4px 12px rgba(30, 53, 87, 0.02);
  --shadow-lg: 0 24px 48px rgba(30, 53, 87, 0.08), 0 8px 16px rgba(30, 53, 87, 0.03);
  --shadow-hover: 0 28px 56px rgba(244, 134, 26, 0.12); /* Soft orange-warm glow */
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background-color: var(--cream);
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

/* Page Background Gradient Blobs */
body::before {
  content:'';
  position: fixed;
  inset: -20vh -10vw;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(ellipse at 15% 15%, rgba(59, 158, 212, 0.06) 0 300px, transparent 500px),
    radial-gradient(ellipse at 85% 20%, rgba(244, 134, 26, 0.05) 0 280px, transparent 480px),
    radial-gradient(ellipse at 80% 80%, rgba(59, 158, 212, 0.05) 0 350px, transparent 600px);
  filter: blur(40px);
}

/* NAV */
.site-nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  position: sticky; 
  top: 0; 
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(30, 53, 87, 0.04);
  padding: 0 6vw;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  height: 80px;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--sky), var(--orange), var(--teal), var(--yellow), var(--sky)) 1;
  transition: var(--transition);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition-bounce);
}

.nav-logo:hover img {
  transform: scale(1.05) rotate(-2deg);
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.nav-links a:hover:not(.nav-cta) {
  background: var(--sky-light);
  color: var(--sky-dark);
}

.nav-links a.active:not(.nav-cta) {
  background: var(--sky-light);
  color: var(--sky-dark);
  border-color: rgba(59, 158, 212, 0.15);
  box-shadow: 0 4px 12px rgba(59, 158, 212, 0.06);
}

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white) !important;
  border-radius: 50px;
  padding: 10px 24px !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 16px rgba(244, 134, 26, 0.25);
  animation: ctaPulse 2.4s ease-in-out infinite;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 20px rgba(244, 134, 26, 0.35);
  background: linear-gradient(135deg, var(--orange-dark), var(--orange)) !important;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244, 134, 26, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(244, 134, 26, 0); }
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--sky-dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(30, 53, 87, 0.08);
  flex-direction: column;
  gap: 10px;
  border-bottom: 4px solid var(--sky);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 16px;
  font-size: 1.05rem;
  transition: var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--sky-light);
  color: var(--sky-dark);
}

/* FLOATING BACKGROUND SHAPES */
.page-floaters {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

/* Floating Bubbles */
.bubble-floater {
  position: absolute;
  bottom: -60px;
  border-radius: 50%;
  background: rgba(59, 158, 212, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset -3px -3px 8px rgba(59, 158, 212, 0.08), inset 3px 3px 5px rgba(255, 255, 255, 0.5);
  pointer-events: none;
  animation: riseAndSway 15s linear infinite;
}

@keyframes riseAndSway {
  0% {
    transform: translateY(0) translateX(0) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-115vh) translateX(40px) scale(1.1);
    opacity: 0;
  }
}

/* Swimming Fishes */
.fish-floater {
  position: absolute;
  width: 44px;
  height: 28px;
  pointer-events: none;
  opacity: 0.16;
  transition: var(--transition);
}

.fish-floater.swim-right {
  animation: swimRight 22s linear infinite;
}

.fish-floater.swim-left {
  animation: swimLeft 26s linear infinite;
}

@keyframes swimRight {
  0% {
    left: -60px;
    transform: translateY(0) scaleY(1) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) scaleY(0.95) rotate(2deg);
  }
  50% {
    transform: translateY(0) scaleY(1) rotate(-1deg);
  }
  75% {
    transform: translateY(15px) scaleY(0.95) rotate(3deg);
  }
  100% {
    left: 105vw;
    transform: translateY(0) scaleY(1) rotate(0deg);
  }
}

@keyframes swimLeft {
  0% {
    right: -60px;
    transform: scaleX(-1) translateY(0) scaleY(1) rotate(0deg);
  }
  25% {
    transform: scaleX(-1) translateY(15px) scaleY(0.95) rotate(2deg);
  }
  50% {
    transform: scaleX(-1) translateY(0) scaleY(1) rotate(-1deg);
  }
  75% {
    transform: scaleX(-1) translateY(-15px) scaleY(0.95) rotate(3deg);
  }
  100% {
    right: 105vw;
    transform: scaleX(-1) translateY(0) scaleY(1) rotate(0deg);
  }
}

/* HERO SECTION */
.hero {
  background: 
    radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.12), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(59, 158, 212, 0.08), transparent 30%),
    linear-gradient(135deg, #2B8DC4 0%, #1A5A82 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 6vw;
  color: var(--white);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

/* Playful background doodles in hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 24 A 12 12 0 0 1 36 24 A 12 12 0 0 1 12 24 Z' fill='none' stroke='rgba%28255,255,255,0.04%29' stroke-width='2'/%3E%3Cpath d='M45 45 L50 45 L50 50 L45 50 Z' fill='none' stroke='rgba%28255,255,255,0.04%29' stroke-width='2'/%3E%3C/svg%3E");
  opacity: 0.8;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-family: 'Baloo 2', sans-serif;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  animation: bounce 3s ease-in-out infinite;
}

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

.hero h1 {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(30, 53, 87, 0.15);
}

.hero h1 .highlight {
  color: var(--yellow);
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--orange);
  border-radius: 3px;
  opacity: 0.8;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 500;
  max-width: 580px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: var(--text);
  border: none;
  cursor: pointer;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-bounce);
  box-shadow: 0 6px 20px rgba(230, 194, 0, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 28px rgba(230, 194, 0, 0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
  transform: translateY(-2px);
}

.hero-visuals {
  position: absolute;
  right: 6vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 2;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  animation: floatCard 4s ease-in-out infinite;
}

.hero-card:nth-child(2) { animation-delay: 1s; }
.hero-card:nth-child(3) { animation-delay: 2s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1.5deg); }
}

.hero-card .card-icon {
  font-size: 2.2rem;
  display: block;
}

.floating-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: drift 12s ease-in-out infinite;
}

.shape1 { width: 350px; height: 350px; background: var(--yellow); top: -100px; left: -100px; }
.shape2 { width: 250px; height: 250px; background: var(--white); bottom: -50px; left: 35%; animation-delay: 2s; }
.shape3 { width: 180px; height: 180px; background: var(--orange); top: 15%; right: 25%; animation-delay: 4s; }

.mini-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.35);
  animation: bubbleFloat 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.2; }
  50% { transform: translateY(-30px) scale(1.1); opacity: 0.5; }
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.04); }
  66% { transform: translate(-15px, 25px) scale(0.96); }
}

/* ANNOUNCEMENT BANNER */
.announcement-bar {
  background: linear-gradient(90deg, var(--sky-dark), var(--sky), var(--orange), var(--sky-dark));
  background-size: 300% 100%;
  color: var(--white);
  text-align: center;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  animation: announcementWave 10s linear infinite;
}

.announcement-bar a {
  text-decoration: underline;
  font-weight: 800;
}

.announcement-bar .pulse {
  display: inline-block;
  background: var(--yellow);
  color: var(--text);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 900;
  margin-right: 6px;
  vertical-align: middle;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.95); opacity: 0.8; }
}

@keyframes announcementWave {
  to { background-position: 300% 0; }
}

/* SECTION STYLES */
section {
  padding: 100px 6vw;
  position: relative;
}

.section-tag {
  display: inline-block;
  background: var(--sky-light);
  color: var(--sky-dark);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(59, 158, 212, 0.06);
  border: 1px solid rgba(59, 158, 212, 0.12);
}

.section-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--sky);
}

.section-sub {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 680px;
  font-weight: 500;
}

.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.center .section-sub {
  margin: 0 auto;
}

/* Wave Dividers */
.wave-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 4%;
  background: transparent;
  pointer-events: none;
  overflow: hidden;
}

.wave-container svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ABOUT SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  background: linear-gradient(135deg, var(--sky-light), var(--sky));
  border-radius: var(--radius-xl);
  padding: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px dashed rgba(255, 255, 255, 0.4);
}

.about-img-wrap::before {
  content: '🏫';
  font-size: 110px;
  filter: drop-shadow(0 10px 15px rgba(30,53,87,0.15));
  animation: bounce 4s infinite;
}

.about-stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition-bounce);
  border: 1px solid var(--border-light);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(244, 134, 26, 0.15);
}

.stat-card .num {
  font-family: 'Baloo 2', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--sky-dark);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-card .label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.about-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition-bounce);
  border-left: 8px solid var(--sky);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
}

.about-feature:nth-child(2) { border-left-color: var(--orange); }
.about-feature:nth-child(3) { border-left-color: var(--pink); }
.about-feature:nth-child(4) { border-left-color: var(--green); }

.about-feature:hover {
  transform: translateX(8px) translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.02);
}

.fi-blue { background: var(--sky-light); color: var(--sky-dark); }
.fi-pink { background: var(--pink-light); color: var(--pink); }
.fi-orange { background: var(--orange-light); color: var(--orange); }
.fi-green { background: var(--green-light); color: var(--green); }

.feature-text h4 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* PROGRAMS */
.programs {
  background: linear-gradient(180deg, var(--white) 0%, var(--sky-light) 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition-bounce);
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-12px) rotate(0.5deg);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59, 158, 212, 0.2);
}

.program-header {
  padding: 40px 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.prog-badge {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
}

.program-body {
  padding: 0 32px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.program-body h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}

.program-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.prog-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 24px;
}

.prog-features li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.prog-features li svg {
  flex-shrink: 0;
  color: var(--green);
}

.prog-time {
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--border-light);
}

.prog-time svg {
  color: var(--sky-dark);
}

/* CURRICULUM */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.curr-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition-bounce);
  border: 1px solid var(--border-light);
  border-top: 8px solid var(--sky);
}

.curr-card:nth-child(2n) { border-top-color: var(--orange); }
.curr-card:nth-child(3n) { border-top-color: var(--teal); }
.curr-card:nth-child(4n) { border-top-color: var(--pink); }
.curr-card:nth-child(5n) { border-top-color: var(--purple); }
.curr-card:nth-child(6n) { border-top-color: var(--yellow); }

.curr-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: var(--shadow-hover);
  border-color: rgba(244, 134, 26, 0.15);
}

.curr-card h4 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  margin-bottom: 12px;
  font-size: 1.15rem;
  color: var(--text);
}

.curr-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* GALLERY */
.gallery-section {
  background: var(--white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow);
}

.gallery-item:hover {
  transform: scale(1.03) rotate(0.5deg);
  box-shadow: var(--shadow-lg);
}

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

.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 30px;
  text-align: center;
  height: 100%;
}

.gallery-placeholder small {
  font-weight: 500;
  opacity: 0.85;
  margin-top: 4px;
  display: block;
}

.g1 { background: linear-gradient(135deg, var(--sky), var(--teal)); }
.g2 { background: linear-gradient(135deg, var(--orange), var(--yellow)); }
.g3 { background: linear-gradient(135deg, var(--teal), var(--sky-dark)); }
.g4 { background: linear-gradient(135deg, var(--pink), var(--orange)); }
.g5 { background: linear-gradient(135deg, var(--green), var(--teal)); }
.g6 { background: linear-gradient(135deg, var(--sky-dark), var(--purple)); }

/* TEACHERS */
.teachers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 60px;
  justify-content: center;
}

.teacher-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition-bounce);
  width: 350px;
  border: 1px solid var(--border-light);
}

.teacher-card:hover {
  transform: translateY(-10px) rotate(0.5deg);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59, 158, 212, 0.2);
}

.teacher-avatar {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.teacher-avatar img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 6px solid var(--white);
  box-shadow: 0 6px 20px rgba(30, 53, 87, 0.15);
  display: block;
  transition: var(--transition-bounce);
}

.teacher-card:hover .teacher-avatar img {
  transform: scale(1.06) rotate(-2deg);
}

.teacher-info {
  padding: 10px 32px 36px;
}

.teacher-info h3 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--text);
}

.teacher-role {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.teacher-info p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

.teacher-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.tag {
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, var(--sky-dark) 0%, var(--sky) 100%);
  border-radius: var(--radius-xl);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.testimonials .section-title, 
.testimonials .section-sub {
  color: var(--white);
}

.testimonials .section-tag {
  background: rgba(255, 255, 255, 0.15);
  color: var(--yellow);
  border-color: rgba(255, 255, 255, 0.25);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
}

.testi-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-8px) rotate(-0.5deg);
  border-color: rgba(255, 255, 255, 0.3);
}

.testi-stars {
  color: var(--yellow);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.testi-text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 500;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--sky-dark);
  font-weight: 800;
}

.testi-name {
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
}

.testi-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
}

/* EVENTS */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: var(--transition-bounce);
  border: 1px solid var(--border-light);
}

.event-card:hover {
  transform: translateY(-10px) rotate(0.5deg);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59, 158, 212, 0.2);
}

.event-date-bar {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.event-date {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 10px 16px;
  text-align: center;
  flex-shrink: 0;
}

.event-date .day {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.event-date .month {
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-title-bar h4 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
}

.event-title-bar p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.event-body {
  padding: 24px;
  flex: 1;
}

.event-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ADMISSIONS */
.admissions {
  background: var(--white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.admissions-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
}

.admissions-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(90deg, var(--sky), var(--orange), var(--teal));
  z-index: 0;
  border-radius: 4px;
  opacity: 0.3;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  transition: var(--transition-bounce);
  border: 1px solid var(--border-light);
}

.step-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: var(--shadow-hover);
  border-color: rgba(244, 134, 26, 0.15);
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.step-card h4 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 1.15rem;
  color: var(--text);
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.admission-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.info-block {
  background: var(--orange-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 2px dashed rgba(244, 134, 26, 0.2);
}

.info-block:nth-child(2) {
  background: var(--sky-light);
  border-color: rgba(59, 158, 212, 0.2);
}

.info-block h3 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  color: var(--text);
}

.info-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-block ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
}

.info-block ul li svg {
  flex-shrink: 0;
  margin-top: 4px;
}

/* CONTACT */
.contact-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--orange-light) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: var(--transition-bounce);
  border-left: 8px solid var(--sky);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
}

.contact-card:nth-child(2) { border-left-color: var(--pink); }
.contact-card:nth-child(3) { border-left-color: var(--orange); }
.contact-card:nth-child(4) { border-left-color: var(--green); }
.contact-card:nth-child(5) { border-left-color: var(--purple); }

.contact-card:hover {
  transform: translateX(8px) translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cc-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.cc-icon-blue { background: var(--sky-light); color: var(--sky-dark); }
.cc-icon-pink { background: var(--pink-light); color: var(--pink); }
.cc-icon-orange { background: var(--orange-light); color: var(--orange); }
.cc-icon-green { background: var(--green-light); color: var(--green); }

.cc-text h4 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.cc-text p, .cc-text a {
  font-size: 0.92rem;
  color: var(--text-light);
  text-decoration: none;
  line-height: 1.6;
}

.cc-text a:hover {
  color: var(--sky-dark);
  text-decoration: underline;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.contact-form h3 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 28px;
  color: var(--text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input, 
.form-group select, 
.form-group textarea {
  border: 2px solid rgba(30, 53, 87, 0.08);
  border-radius: 16px;
  padding: 14px 18px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  background: var(--white);
  width: 100%;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(59, 158, 212, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 16px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-bounce);
  box-shadow: 0 6px 20px rgba(59, 158, 212, 0.25);
  margin-top: 10px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(59, 158, 212, 0.4);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success h4 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-light);
  font-size: 1rem;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #122438, #18283B);
  color: var(--white);
  padding: 80px 6vw 30px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

footer::before {
  content:'';
  position: absolute;
  width: 200px;
  height: 200px;
  right: -50px;
  top: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent 60%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.1fr 1.1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-text {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-brand .logo-text .tw { color: var(--sky); }
.footer-brand .logo-text .bu { color: var(--orange); }

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 320px;
}

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

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition-bounce);
}

.social-link:hover {
  background: var(--sky);
  color: var(--white);
  transform: translateY(-4px) rotate(360deg);
}

.footer-col h4 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--yellow);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* RESPONSIVE */
@media(max-width:1100px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .curriculum-grid { grid-template-columns: repeat(2, 1fr); }
  .admissions-steps { grid-template-columns: repeat(2, 1fr); }
  .admissions-steps::before { display: none; }
}

@media(max-width:960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding: 100px 6vw 80px; }
  .hero-visuals { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .admission-info-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
}

@media(max-width:640px) {
  section { padding: 70px 5vw; }
  .programs-grid, .admissions-steps, .events-grid, .curriculum-grid, .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .page-intro::before { width: 140px; height: 140px; right: -30px; }
  .page-intro::after { width: 56px; height: 56px; left: -15px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Scroll reveal animation */
.will-reveal {
  opacity:0;
  transform:translateY(30px);
  transition:opacity .75s cubic-bezier(0.25, 0.8, 0.25, 1), transform .75s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-delay:var(--reveal-delay, 0ms);
}

.will-reveal.in-view {
  opacity:1;
  transform:translateY(0);
}

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