/* ==========================================================================
   DREAMY DUCK PLAY SCHOOL - MASTER STYLESHEET
   Location: Kolar Road, Bhopal
   Aesthetic: Bright, Cheerful, Child-Friendly, Premium Indian Play School
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand Color Palette */
  --primary-blue: #3A86EF;
  --primary-blue-dark: #2563EB;
  --sky-light: #E0F2FE;
  
  --duck-yellow: #FFC837;
  --duck-yellow-light: #FFF9DB;
  --duck-yellow-dark: #F59E0B;

  --coral-pink: #FF5E7E;
  --pink-light: #FFE4E6;
  
  --playful-green: #10B981;
  --green-light: #D1FAE5;
  
  --pastel-purple: #8B5CF6;
  --purple-light: #EDE9FE;

  --warm-orange: #F97316;
  --orange-light: #FFEDD5;

  /* Neutral Colors */
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --bg-body: #FAFBFD;
  --bg-white: #FFFFFF;
  --bg-light: #F1F5F9;
  --border-color: #E2E8F0;

  /* Fonts */
  --font-heading: 'Fredoka', 'Comic Sans MS', cursive, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, sans-serif;

  /* Shadows & Elevations */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(58, 134, 239, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 25px 35px -5px rgba(58, 134, 239, 0.2);

  /* Border Radii */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESETS & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-padding {
  padding: 5rem 0;
}

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

.text-center { text-align: center; }
.w-100 { width: 100%; }
.mt-2 { margin-top: 0.75rem; }
.hidden { display: none !important; }

/* Font utilities */
.font-accent {
  font-family: var(--font-heading);
}

.highlight-text {
  color: var(--primary-blue);
  position: relative;
  display: inline-block;
}

.highlight-pink {
  color: var(--coral-pink);
}

/* --------------------------------------------------------------------------
   3. BUTTONS & BADGES
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: var(--bg-white);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--primary-blue);
  border: 2px solid var(--sky-light);
}

.btn-secondary:hover {
  background-color: var(--sky-light);
  transform: translateY(-3px);
  color: var(--primary-blue-dark);
}

.btn-yellow {
  background: linear-gradient(135deg, var(--duck-yellow), var(--duck-yellow-dark));
  color: #4A3B00;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.btn-yellow:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 25px rgba(245, 158, 11, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--bg-white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
  background: var(--bg-white);
  color: var(--primary-blue-dark);
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.15rem;
}

.btn-bounce:hover {
  animation: pulseGlow 1.5s infinite;
}

/* Section Header Typography */
.section-header {
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  color: var(--coral-pink);
  font-size: 1.05rem;
  font-weight: 600;
  background-color: var(--pink-light);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.15rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   4. ANNOUNCEMENT BAR & STICKY HEADER
   -------------------------------------------------------------------------- */
.announcement-bar {
  background: linear-gradient(90deg, #3A86EF, #8B5CF6, #FF5E7E);
  color: var(--bg-white);
  padding: 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.announcement-badge {
  background-color: rgba(255, 255, 255, 0.25);
  padding: 0.2rem 0.8rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.announcement-info {
  display: flex;
  gap: 1.5rem;
}

.announcement-social a {
  color: var(--duck-yellow);
  font-weight: 700;
}

/* Sticky Header */
.navbar-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition-normal);
  border-bottom: 2px solid rgba(226, 232, 240, 0.6);
}

.navbar-header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0.3rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--duck-yellow);
  box-shadow: var(--shadow-sm);
  background: var(--duck-yellow-light);
  flex-shrink: 0;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--coral-pink);
}

/* Navigation List */
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-blue);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background-color: var(--duck-yellow);
  border-radius: 3px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Hamburger Button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-bar {
  width: 100%;
  height: 3.5px;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition-fast);
}

/* Mobile Drawer Overlay Menu */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--bg-white);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transition: right 0.4s ease;
  padding: 1.5rem;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--bg-light);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.mobile-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.mobile-close-btn {
  font-size: 2.2rem;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.mobile-nav-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  padding: 0.5rem 0;
}

.mobile-nav-link:hover {
  color: var(--primary-blue);
}

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 2px solid var(--bg-light);
}

.mobile-contact-info {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #E0F2FE 0%, #FFF9DB 60%, #FFFFFF 100%);
  padding: 4rem 0 7rem 0;
  overflow: hidden;
}

/* Floating Animations & Visual Elements */
.floating-bg-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.cloud {
  position: absolute;
  color: rgba(255, 255, 255, 0.85);
  filter: drop-shadow(0 8px 15px rgba(0,0,0,0.04));
  animation: floatCloud 25s linear infinite;
}

.cloud-1 { top: 10%; font-size: 4rem; left: -10%; animation-duration: 35s; }
.cloud-2 { top: 35%; font-size: 5rem; left: -15%; animation-duration: 45s; animation-delay: 5s; }
.cloud-3 { top: 70%; font-size: 3.5rem; left: -5%; animation-duration: 30s; animation-delay: 12s; }

.star {
  position: absolute;
  font-size: 1.8rem;
  animation: pulseStar 3s ease-in-out infinite alternate;
}
.star-1 { top: 15%; right: 15%; }
.star-2 { top: 55%; left: 8%; animation-delay: 1s; }
.star-3 { top: 75%; right: 25%; animation-delay: 2s; }

.balloon {
  position: absolute;
  font-size: 3rem;
  animation: floatBalloon 12s ease-in-out infinite alternate;
}
.balloon-yellow { top: 20%; left: 3%; color: var(--duck-yellow); }
.balloon-pink { top: 40%; right: 4%; color: var(--coral-pink); animation-delay: 3s; }

.duck-float {
  position: absolute;
  bottom: 12%;
  left: 5%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--duck-yellow);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  animation: bounceDuck 4s ease-in-out infinite alternate;
}
.duck-float img { width: 100%; height: 100%; object-fit: cover; }

/* Hero Container Grid */
.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg-white);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  max-width: 580px;
}

.hero-location-card {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px dashed var(--primary-blue);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.location-icon {
  color: var(--coral-pink);
  font-size: 1.2rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.trust-badge {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-dark);
}

.text-green { color: var(--playful-green); }
.text-purple { color: var(--pastel-purple); }
.text-yellow { color: var(--duck-yellow-dark); }
.text-pink { color: var(--coral-pink); }
.text-sky { color: var(--primary-blue); }
.text-orange { color: var(--warm-orange); }

/* Hero Image Visual Frame */
.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 12px;
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
  transition: var(--transition-normal);
}

.hero-image-frame:hover {
  transform: rotate(0deg) scale(1.01);
}

.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Floating Overlay Badges on Hero Image */
.floating-badge {
  position: absolute;
  background: var(--bg-white);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: floatSlow 4s ease-in-out infinite alternate;
}

.badge-top-right {
  top: -20px;
  right: -20px;
}

.badge-bottom-left {
  bottom: -20px;
  left: -20px;
  animation-delay: 2s;
}

.badge-icon-bg {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.1rem;
}

.bg-yellow { background-color: var(--duck-yellow-dark); }
.bg-pink { background-color: var(--coral-pink); }
.bg-sky { background-color: var(--primary-blue); }
.bg-green { background-color: var(--playful-green); }
.bg-purple { background-color: var(--pastel-purple); }
.bg-orange { background-color: var(--warm-orange); }

.floating-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.1;
}

.floating-badge small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

/* --------------------------------------------------------------------------
   6. ABOUT US & STATS BANNER
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.about-card {
  background-color: var(--bg-white);
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  transition: var(--transition-normal);
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
}

.card-icon-bubble {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--bg-white);
  margin-bottom: 1.2rem;
}

.about-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.about-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Animated Stats Banner */
.stats-banner {
  background: linear-gradient(135deg, var(--primary-blue), var(--pastel-purple));
  color: var(--bg-white);
  padding: 3rem 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

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

.stat-icon {
  font-size: 2.2rem;
  color: var(--duck-yellow);
  margin-bottom: 0.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--duck-yellow);
  display: inline-block;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 0.4rem;
}

/* --------------------------------------------------------------------------
   7. PROGRAMS SECTION
   -------------------------------------------------------------------------- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.program-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  border-top: 6px solid var(--primary-blue);
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.card-sky { border-top-color: var(--primary-blue); }
.card-yellow { border-top-color: var(--duck-yellow-dark); }
.card-pink { border-top-color: var(--coral-pink); }
.card-green { border-top-color: var(--playful-green); }

.program-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  background-color: var(--bg-light);
  color: var(--text-dark);
  align-self: flex-start;
  margin-bottom: 1rem;
}

.program-icon {
  font-size: 3rem;
  margin-bottom: 0.8rem;
}

.program-title {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.program-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
}

.program-highlights {
  background-color: var(--bg-light);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.program-highlights h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.program-highlights ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.program-highlights li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.program-highlights li i {
  color: var(--playful-green);
  font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   8. WHY CHOOSE US SECTION
   -------------------------------------------------------------------------- */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.why-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.why-card:hover {
  border-color: var(--duck-yellow-dark);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  font-size: 2.8rem;
}

.why-card h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
}

.why-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   9. ACTIVITIES SECTION
   -------------------------------------------------------------------------- */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.activity-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.activity-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.activity-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.activity-card:hover .activity-img {
  transform: scale(1.08);
}

.activity-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--bg-white);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.activity-content {
  padding: 1.5rem;
}

.activity-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.activity-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   10. FACILITIES SECTION
   -------------------------------------------------------------------------- */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.facility-item {
  background-color: var(--bg-white);
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-color);
  transition: var(--transition-normal);
}

.facility-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.facility-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.facility-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.facility-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.facility-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 380px;
}

.facility-banner-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.facility-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30, 41, 59, 0.9) 0%, rgba(30, 41, 59, 0.4) 100%);
  color: var(--bg-white);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 650px;
}

.facility-banner-overlay h3 {
  font-size: 2.2rem;
  color: var(--duck-yellow);
  margin-bottom: 0.8rem;
}

.facility-banner-overlay p {
  font-size: 1.15rem;
  margin-bottom: 1.8rem;
  opacity: 0.95;
}

/* --------------------------------------------------------------------------
   11. GALLERY SECTION WITH LIGHTBOX
   -------------------------------------------------------------------------- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background-color: var(--bg-white);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 2px solid var(--border-color);
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  border-color: var(--primary-blue);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 41, 59, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1rem;
  text-align: center;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  font-size: 2rem;
  color: var(--duck-yellow);
  margin-bottom: 0.6rem;
}

.gallery-caption h4 {
  font-size: 1.2rem;
  color: var(--bg-white);
}

.gallery-caption small {
  color: var(--duck-yellow-light);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: var(--text-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.5rem;
  color: var(--bg-white);
  background: transparent;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}

.lightbox-img-wrapper {
  width: 100%;
  max-height: 550px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrapper img {
  max-width: 100%;
  max-height: 550px;
  object-fit: contain;
}

.lightbox-caption-bar {
  padding: 1rem 1.5rem;
  background-color: #0F172A;
  color: var(--bg-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lightbox-caption-bar h4 {
  color: var(--duck-yellow);
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--bg-white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--primary-blue);
}

.lightbox-prev { left: 15px; }
.lightbox-next { right: 15px; }

/* --------------------------------------------------------------------------
   12. TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--bg-white);
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--coral-pink);
  box-shadow: var(--shadow-md);
}

.rating-stars {
  color: var(--duck-yellow-dark);
  font-size: 1.1rem;
  display: flex;
  gap: 0.3rem;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.6;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--bg-white);
  font-size: 1.1rem;
}

.user-info h4 {
  font-size: 1.1rem;
  line-height: 1.2;
}

.user-info small {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   13. CALL TO ACTION BANNER
   -------------------------------------------------------------------------- */
.cta-banner-section {
  padding: 4rem 0;
}

.cta-card {
  background: linear-gradient(135deg, var(--primary-blue), #6366F1, var(--pastel-purple));
  color: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-duck-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: bounceSoft 2s infinite alternate;
}

.cta-card h2 {
  font-size: 2.8rem;
  color: var(--duck-yellow);
  margin-bottom: 1rem;
}

.cta-card p {
  font-size: 1.25rem;
  max-width: 650px;
  margin: 0 auto 2.2rem auto;
  opacity: 0.95;
}

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

/* --------------------------------------------------------------------------
   14. CONTACT & ADMISSION ENQUIRY FORM
   -------------------------------------------------------------------------- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.info-card {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
  height: 100%;
}

.info-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.info-address {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.location-pin {
  color: var(--coral-pink);
  margin-right: 0.4rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.info-item p, .info-item a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.map-box {
  margin-top: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border-color);
}

.map-header {
  background-color: var(--bg-light);
  padding: 0.6rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Contact Form Styling */
.form-card {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.form-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.required {
  color: var(--coral-pink);
}

.input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-light);
  font-size: 1rem;
  pointer-events: none;
}

.input-icon-wrapper input,
.input-icon-wrapper select,
.input-icon-wrapper textarea {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.8rem;
  background-color: var(--bg-light);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.input-icon-wrapper input:focus,
.input-icon-wrapper select:focus,
.input-icon-wrapper textarea:focus {
  background-color: var(--bg-white);
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(58, 134, 239, 0.15);
}

.input-icon-wrapper.invalid input,
.input-icon-wrapper.invalid select {
  border-color: var(--coral-pink);
  background-color: #FFF5F5;
}

.error-msg {
  font-size: 0.8rem;
  color: var(--coral-pink);
  font-weight: 600;
  display: none;
}

.error-msg.visible {
  display: block;
}

.form-success-banner {
  background: #F0FDF4;
  border: 2px solid var(--playful-green);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.success-icon {
  font-size: 3.5rem;
  margin-bottom: 0.6rem;
}

.form-success-banner h4 {
  font-size: 1.5rem;
  color: #166534;
  margin-bottom: 0.5rem;
}

.form-success-banner p {
  color: #15803D;
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   15. PROGRAM MODAL DIALOG
   -------------------------------------------------------------------------- */
.program-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.program-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.program-modal-box {
  background: var(--bg-white);
  max-width: 600px;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.program-modal-backdrop.active .program-modal-box {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.2rem;
  color: var(--bg-white);
  background: transparent;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}

.program-modal-header {
  padding: 2.5rem 2rem 2rem 2rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--pastel-purple));
  color: var(--bg-white);
  text-align: center;
}

.modal-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.program-modal-header h3 {
  font-size: 2rem;
  color: var(--bg-white);
}

.modal-age-tag {
  display: inline-block;
  background-color: var(--duck-yellow);
  color: #4A3B00;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-pill);
  margin-top: 0.5rem;
}

.program-modal-body {
  padding: 2rem;
}

.modal-divider {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 1.5rem 0;
}

.modal-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.modal-highlights-list li {
  font-size: 1rem;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.modal-highlights-list i {
  color: var(--playful-green);
  margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #0F172A;
  color: var(--bg-white);
  padding: 5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--duck-yellow);
}

.footer-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  background-color: var(--primary-blue);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.2rem;
  color: var(--duck-yellow);
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--primary-blue);
  transform: translateX(5px);
}

.footer-address-box p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.footer-address-box i {
  color: var(--coral-pink);
  margin-top: 0.2rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--bg-white);
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 999;
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  background-color: var(--duck-yellow-dark);
  transform: translateY(-5px);
}

/* --------------------------------------------------------------------------
   17. ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes floatCloud {
  0% { transform: translateX(0); }
  100% { transform: translateX(110vw); }
}

@keyframes floatBalloon {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes bounceDuck {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(-8deg); }
}

@keyframes floatSlow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

@keyframes pulseStar {
  0% { transform: scale(1) rotate(0deg); opacity: 0.7; }
  100% { transform: scale(1.3) rotate(20deg); opacity: 1; }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(58, 134, 239, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(58, 134, 239, 0); }
  100% { box-shadow: 0 0 0 0 rgba(58, 134, 239, 0); }
}

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

/* Scroll Reveal Classes */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   18. RESPONSIVE BREAKPOINTS (MOBILE FIRST APPROACH)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-trust-badges {
    justify-content: center;
  }

  .hero-visual {
    max-width: 550px;
    margin: 0 auto;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .hamburger-btn {
    display: flex;
  }

  .nav-cta-btn {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .announcement-info span:last-child {
    display: none;
  }

  .facility-banner-overlay {
    padding: 1.5rem;
  }

  .facility-banner-overlay h3 {
    font-size: 1.6rem;
  }

  .cta-card h2 {
    font-size: 2.1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-img {
    height: 300px;
  }

  .floating-badge {
    padding: 0.5rem 0.8rem;
  }

  .stats-banner {
    grid-template-columns: 1fr 1fr;
  }

  .btn-lg {
    width: 100%;
  }

  .lightbox-prev, .lightbox-next {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}
