/* ==========================================================================
   LITTLE FLOCK KINDERGARTEN - DESIGN SYSTEM & BRAND THEME
   Tailored to Official Logo Colors: Apple Green, Cerise Pink, Olive & Amber Gold
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. ROOT VARIABLES (LIGHT & DARK THEMES)
   -------------------------------------------------------------------------- */
:root {
  /* Fonts */
  --font-display: 'Fredoka', 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Brand Core Colors (Extracted from Official Logo) */
  --brand-green: #7CB342;         /* "Little" Lime Green */
  --brand-green-dark: #33691E;    /* "Kindergarten" Olive Green */
  --brand-green-light: #F1F8E9;   /* Soft Sage Tint */
  
  --brand-pink: #E62B64;          /* "flock" Raspberry/Cerise Pink */
  --brand-pink-dark: #C2185B;     /* Deep Cerise */
  --brand-pink-light: #FCE4EC;    /* Soft Rose Tint */

  --brand-gold: #F59E0B;          /* "Shepherding lives" Warm Amber */
  --brand-gold-light: #FEF3C7;    /* Warm Sunny Cream */
  --brand-teal: #0284C7;          /* Sky / Discovery Blue */
  --brand-teal-light: #E0F2FE;

  /* Theme Surfaces - Light Mode */
  --bg-primary: #FCFDF9;
  --bg-secondary: #F6FAF0;
  --bg-tertiary: #FDF2F4;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FAFCF7;
  --bg-overlay: rgba(26, 38, 20, 0.65);

  --text-main: #273024;
  --text-muted: #5C6756;
  --text-light: #8A9684;
  --text-inverse: #FFFFFF;

  /* Playful UI Token Aliases */
  --color-sun-yellow: var(--brand-gold);
  --color-sun-yellow-light: var(--brand-gold-light);
  --color-coral: var(--brand-pink);
  --color-coral-light: var(--brand-pink-light);
  --color-pink: var(--brand-pink);
  --color-pink-light: var(--brand-pink-light);
  --color-mint: var(--brand-green);
  --color-mint-light: var(--brand-green-light);
  --color-teal: var(--brand-teal);
  --color-teal-light: var(--brand-teal-light);
  --color-purple: #8B5CF6;
  --color-purple-light: #F3E8FF;

  /* UI & Borders */
  --border-color: #E2EBD8;
  --border-card: #E5EEDD;
  --shadow-sm: 0 4px 12px rgba(124, 179, 66, 0.1);
  --shadow-md: 0 10px 25px rgba(124, 179, 66, 0.14);
  --shadow-lg: 0 20px 40px rgba(51, 105, 30, 0.16);
  --shadow-hover: 0 16px 32px rgba(230, 43, 100, 0.22);

  --radius-xs: 8px;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-smooth: 0.3s ease-in-out;
}

/* --------------------------------------------------------------------------
   2. DARK MODE OVERRIDES
   -------------------------------------------------------------------------- */
[data-theme="dark"] {
  --bg-primary: #111811;
  --bg-secondary: #162017;
  --bg-tertiary: #22151B;
  --bg-card: #1A261C;
  --bg-card-hover: #223325;
  --bg-overlay: rgba(0, 0, 0, 0.88);

  --text-main: #F3F7F2;
  --text-muted: #A8B8A6;
  --text-light: #7E8F7C;
  --text-inverse: #111811;

  /* Adjusted Accents for Dark Mode */
  --brand-green: #9CCC65;
  --brand-green-light: rgba(156, 204, 101, 0.18);
  --brand-pink: #F06292;
  --brand-pink-light: rgba(240, 98, 146, 0.18);
  --brand-gold: #FBBF24;
  --brand-gold-light: rgba(251, 191, 36, 0.18);
  --brand-teal: #38BDF8;
  --brand-teal-light: rgba(56, 189, 248, 0.18);

  --color-sun-yellow: var(--brand-gold);
  --color-sun-yellow-light: var(--brand-gold-light);
  --color-coral: var(--brand-pink);
  --color-coral-light: var(--brand-pink-light);
  --color-pink: var(--brand-pink);
  --color-pink-light: var(--brand-pink-light);
  --color-mint: var(--brand-green);
  --color-mint-light: var(--brand-green-light);
  --color-teal: var(--brand-teal);
  --color-teal-light: var(--brand-teal-light);

  --border-color: #273A2A;
  --border-card: #2D4230;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.7);
  --shadow-hover: 0 16px 32px rgba(240, 98, 146, 0.35);
}

/* --------------------------------------------------------------------------
   3. CSS RESET & 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);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

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

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

ul, ol {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header .container {
  max-width: 1360px;
  padding: 0 28px;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

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

.badge-green, .badge-mint {
  background: var(--brand-green-light);
  color: var(--brand-green-dark);
}

.badge-yellow {
  background: var(--brand-gold-light);
  color: var(--brand-gold);
}

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

.section-title {
  font-size: 2.65rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

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

/* --------------------------------------------------------------------------
   4. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  text-align: center;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--brand-pink), #D81B60);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(230, 43, 100, 0.32);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #D81B60, #AD1457);
  box-shadow: 0 12px 24px rgba(230, 43, 100, 0.45);
}

.btn-green {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(124, 179, 66, 0.35);
}

.btn-green:hover {
  background: linear-gradient(135deg, #689F38, #2E5B18);
  box-shadow: 0 12px 24px rgba(124, 179, 66, 0.45);
}

.btn-yellow {
  background-color: var(--brand-gold);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}

.btn-yellow:hover {
  background-color: #D97706;
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.45);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--brand-green);
  color: var(--brand-green-dark);
  background-color: var(--brand-green-light);
}

.btn-white {
  background-color: #FFFFFF;
  color: var(--brand-pink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background-color: #FFF0F5;
  color: var(--brand-pink-dark);
  transform: translateY(-3px) scale(1.02);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.92rem;
}

.btn-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-pink);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 0 8px rgba(230, 43, 100, 0.2);
  transition: all var(--transition-normal);
}

.btn-play:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 14px rgba(230, 43, 100, 0.25);
}

/* --------------------------------------------------------------------------
   5. TOP BAR & HEADER / NAVIGATION
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  font-size: 0.88rem;
  padding: 8px 0;
  transition: background-color var(--transition-smooth);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.top-info-item svg, .top-info-item span:first-child {
  color: var(--brand-green);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.social-link:hover svg {
  transform: scale(1.1);
}

.social-link.social-fb:hover {
  background-color: #1877F2;
  border-color: #1877F2;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.social-link.social-ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #dc2743;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.social-link.social-wa:hover {
  background-color: #25D366;
  border-color: #25D366;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Main Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(252, 253, 249, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-smooth);
}

[data-theme="dark"] .site-header {
  background-color: rgba(17, 24, 17, 0.96);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 24px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: max-content;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  background: #FFFFFF;
  padding: 2px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.logo-brand-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.logo-brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--brand-green-dark);
}

[data-theme="dark"] .logo-brand-name {
  color: var(--brand-green);
}

.logo-brand-name span {
  color: var(--brand-pink);
}

.logo-brand-tagline {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-gold);
  letter-spacing: 0.4px;
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 1;
  flex-wrap: nowrap;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-main);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--brand-pink);
  border-radius: var(--radius-full);
  transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--brand-pink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  font-size: 1.2rem;
}

.theme-toggle-btn:hover {
  background: var(--brand-gold-light);
  color: var(--brand-gold);
  transform: rotate(20deg);
}

.menu-toggle-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-main);
  cursor: pointer;
}

/* Mobile Nav Drawer (Hidden by default on Desktop) */
.mobile-menu-drawer {
  display: none;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 70px 0 60px 0;
  background: radial-gradient(circle at 85% 20%, var(--brand-gold-light) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, var(--brand-green-light) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

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

.hero-tagline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-green-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

[data-theme="dark"] .hero-tagline {
  color: var(--brand-green);
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.16;
  margin-bottom: 22px;
  letter-spacing: -1px;
}

.hero-title .highlight {
  color: var(--brand-pink);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 12px;
  background-color: rgba(124, 179, 66, 0.3);
  border-radius: 8px;
  z-index: -1;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 34px;
  max-width: 530px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 50px 30px 60px 30px;
  box-shadow: var(--shadow-lg);
  border: 8px solid #FFFFFF;
}

[data-theme="dark"] .hero-main-img {
  border-color: var(--bg-card);
}

/* Floating Badges on Hero */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: clamp(6px, 1.8vw, 12px) clamp(10px, 2.5vw, 20px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.5vw, 12px);
  z-index: 5;
  max-width: 90%;
  transition: all var(--transition-normal);
}

[data-theme="dark"] .floating-card {
  background: rgba(30, 41, 59, 0.94);
}

.floating-card-1 {
  top: 10%;
  left: -35px;
  animation: floatSlow 4s ease-in-out infinite;
}

.floating-card-2 {
  bottom: 10%;
  right: -25px;
  animation: floatSlow 4s ease-in-out infinite 2s;
}

.floating-icon {
  width: clamp(28px, 4.5vw, 42px);
  height: clamp(28px, 4.5vw, 42px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  flex-shrink: 0;
}

.floating-text strong {
  display: block;
  font-size: clamp(0.74rem, 1.6vw, 0.95rem);
  line-height: 1.2;
  white-space: nowrap;
}

.floating-text span {
  display: block;
  font-size: clamp(0.62rem, 1.3vw, 0.78rem);
  color: var(--text-muted);
  line-height: 1.2;
  white-space: nowrap;
}

/* Hero Feature Cards (3 Pill Cards matching bottom of hero) */
.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.feature-pill-card {
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.feature-pill-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-pill-card.card-pink {
  background: linear-gradient(135deg, var(--brand-pink), #FF5488);
}

.feature-pill-card.card-green {
  background: linear-gradient(135deg, var(--brand-green), #558B2F);
}

.feature-pill-card.card-gold {
  background: linear-gradient(135deg, var(--brand-gold), #FBBF24);
}

.feature-pill-card h4 {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.feature-pill-card p {
  font-size: 0.92rem;
  opacity: 0.95;
}

.feature-pill-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(4px);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* --------------------------------------------------------------------------
   7. LEARNING CATEGORIES / BADGES STRIP
   -------------------------------------------------------------------------- */
.categories-strip {
  padding: 40px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.categories-scroll {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}

.categories-scroll::-webkit-scrollbar {
  display: none;
}

.category-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 110px;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.category-badge-item:hover {
  transform: translateY(-4px);
}

.category-icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.category-badge-item:hover .category-icon-circle {
  box-shadow: var(--shadow-md);
  transform: scale(1.08) rotate(5deg);
}

.category-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  text-align: center;
}

/* --------------------------------------------------------------------------
   8. ABOUT US SECTION
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  position: relative;
  padding: 15px;
}

.about-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 40px;
  border: 8px solid var(--brand-green);
  box-shadow: var(--shadow-lg);
}

.about-badge-experience {
  position: absolute;
  bottom: 10px;
  left: 0;
  background: var(--bg-card);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--brand-pink);
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-badge-experience .exp-number {
  font-size: 2.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--brand-pink);
  line-height: 1;
}

.about-badge-experience .exp-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
}

.about-content h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

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

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--brand-green-light);
  color: var(--brand-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

[data-theme="dark"] .about-feature-icon {
  color: var(--brand-green);
}

.about-feature-text h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

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

/* --------------------------------------------------------------------------
   9. SKILLS & GROWTH OPPORTUNITY SECTION (WITH PROGRESS BARS)
   -------------------------------------------------------------------------- */
.growth-section {
  background-color: var(--bg-secondary);
}

.growth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.progress-group {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.progress-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.progress-track {
  width: 100%;
  height: 14px;
  background: var(--border-color);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 1.5s cubic-bezier(0.1, 0.8, 0.2, 1);
}

.progress-fill.fill-pink { background: linear-gradient(90deg, var(--brand-pink), var(--brand-gold)); }
.progress-fill.fill-green { background: linear-gradient(90deg, var(--brand-green), #33691E); }
.progress-fill.fill-teal { background: linear-gradient(90deg, var(--brand-teal), var(--brand-green)); }

.growth-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.growth-mini-card {
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-normal);
}

.growth-mini-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.growth-card-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px auto;
  object-fit: cover;
  border: 3px solid var(--brand-green);
}

.growth-mini-card h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.growth-mini-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   10. PROGRAMS & CLASSES CARDS SECTION
   -------------------------------------------------------------------------- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.program-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-card);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.program-thumb {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--bg-secondary);
}

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

/* Precise object focal positioning to prevent awkward cropping of children */
.program-card-green .program-thumb img {
  object-position: center 25%;
}

.program-card-pink .program-thumb img {
  object-position: center 8%;
}

.program-card-gold .program-thumb img {
  object-position: 70% 12%;
}

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

.program-age-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--brand-pink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 2;
}

[data-theme="dark"] .program-age-tag {
  background: rgba(24, 34, 24, 0.9);
  color: var(--brand-pink);
  border-color: var(--border-color);
}

.program-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.program-header-banner {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  color: #FFFFFF;
}

.program-card-pink .program-header-banner { background: var(--brand-pink); }
.program-card-green .program-header-banner { background: var(--brand-green); }
.program-card-gold .program-header-banner { background: var(--brand-gold); }

.program-header-banner h3 {
  color: #FFFFFF;
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.program-header-banner span {
  font-size: 0.88rem;
  opacity: 0.95;
}
  opacity: 0.95;
}

.program-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  flex: 1;
}

.program-meta-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.program-meta-item {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.program-meta-item strong {
  color: var(--text-main);
}

/* --------------------------------------------------------------------------
   11. SCALLOP / WAVY STATS COUNTER BANNER
   -------------------------------------------------------------------------- */
.stats-banner-wrap {
  position: relative;
  background: linear-gradient(135deg, var(--brand-green), #558B2F);
  color: #FFFFFF;
  padding: 70px 0;
  overflow: hidden;
}

.stats-scallop-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.stats-scallop-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-card {
  padding: 20px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  color: #FFFFFF;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stat-label {
  font-size: 1.15rem;
  font-weight: 600;
  opacity: 0.95;
  letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   12. PHOTO & ACTIVITY GALLERY (FILTERABLE + LIGHTBOX)
   -------------------------------------------------------------------------- */
.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-tab-btn.active,
.gallery-tab-btn:hover {
  background: var(--brand-pink);
  color: #FFFFFF;
  border-color: var(--brand-pink);
  box-shadow: 0 4px 14px rgba(230, 43, 100, 0.3);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 270px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

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

/* Specific focal positioning for gallery photos */
.gallery-item[data-category="dance"] img {
  object-position: center 10%;
}

.gallery-item[data-category="sports"] img {
  object-position: center 18%;
}

.gallery-item[data-category="outdoor"] img {
  object-position: center 25%;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(230, 43, 100, 0.88), transparent);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #FFFFFF;
  transition: opacity 0.35s ease;
}

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

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

.gallery-overlay h4 {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.gallery-overlay span {
  font-size: 0.85rem;
  opacity: 0.95;
}

/* --------------------------------------------------------------------------
   13. TEACHERS & FACULTY CARDS
   -------------------------------------------------------------------------- */
.teachers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.teacher-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-card);
  text-align: center;
  padding: 28px 20px;
  transition: all var(--transition-normal);
  position: relative;
}

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

.teacher-avatar-frame {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  overflow: hidden;
  position: relative;
  border: 4px solid var(--brand-green);
  box-shadow: var(--shadow-md);
}

.teacher-card:nth-child(2) .teacher-avatar-frame { border-color: var(--brand-pink); }
.teacher-card:nth-child(3) .teacher-avatar-frame { border-color: var(--brand-gold); }

.teacher-avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.teacher-card:hover .teacher-avatar-frame img {
  transform: scale(1.1);
}

.teacher-name {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.teacher-role {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--brand-pink);
  background: var(--brand-pink-light);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.teacher-bio {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.teacher-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* --------------------------------------------------------------------------
   14. TESTIMONIALS / PARENT REVIEWS
   -------------------------------------------------------------------------- */
.testimonials-section {
  background-color: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.testimonial-quote-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--brand-green-light);
  position: relative;
}

.quote-icon {
  font-size: 3.5rem;
  color: var(--brand-green);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--brand-pink);
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

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

.star-rating {
  color: var(--brand-gold);
  font-size: 1.1rem;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   15. CTA ORGANIC BLOB BANNER
   -------------------------------------------------------------------------- */
.cta-blob-container {
  background: linear-gradient(135deg, var(--brand-pink), #D81B60);
  border-radius: 60px 24px 60px 24px;
  padding: 60px 40px;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin: 40px 0;
}

.cta-blob-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
}

.cta-blob-content h2 {
  color: #FFFFFF;
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.cta-blob-content p {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 30px;
}

/* --------------------------------------------------------------------------
   16. BLOG / NEWS & ACTIVITIES
   -------------------------------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.blog-thumb {
  height: 200px;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.blog-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-meta .blog-tag {
  background: var(--brand-green-light);
  color: var(--brand-green-dark);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

[data-theme="dark"] .blog-meta .blog-tag {
  color: var(--brand-green);
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.35;
}

.blog-title a:hover {
  color: var(--brand-pink);
}

.blog-excerpt {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex: 1;
}

/* --------------------------------------------------------------------------
   17. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.faq-visual img {
  border-radius: var(--radius-lg);
  border: 6px solid var(--brand-green);
  box-shadow: var(--shadow-md);
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.accordion-header:hover {
  color: var(--brand-pink);
}

.accordion-icon {
  font-size: 1.3rem;
  color: var(--brand-pink);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.accordion-item.active .accordion-body {
  max-height: 250px;
  padding: 0 24px 20px 24px;
}

/* --------------------------------------------------------------------------
   18. NEWSLETTER & PRE-FOOTER
   -------------------------------------------------------------------------- */
.newsletter-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 60px 0;
  position: relative;
}

.newsletter-box {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  background: var(--bg-card);
  padding: 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 20px;
  font-size: 1rem;
  color: var(--text-main);
}

.newsletter-info-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.newsletter-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
}

.newsletter-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.newsletter-info-text strong {
  display: block;
  font-size: 1.05rem;
}

.newsletter-info-text span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  color: var(--brand-green-dark);
}

[data-theme="dark"] .footer-col h4 {
  color: var(--brand-green);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--brand-pink);
  padding-left: 6px;
}

.footer-hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px dashed var(--border-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   20. MODALS (ENROLLMENT & LIGHTBOX)
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: var(--bg-overlay);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-card);
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-backdrop.active .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-header h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.modal-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-main);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--brand-pink);
}

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

/* Lightbox Image Preview */
.lightbox-dialog {
  max-width: 800px;
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
  text-align: center;
}

.lightbox-dialog img {
  border-radius: var(--radius-md);
  max-height: 80vh;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
}

/* --------------------------------------------------------------------------
   21. RESPONSIVE BREAKPOINTS & MOBILE UX OPTIMIZATIONS
   -------------------------------------------------------------------------- */

/* Backdrop overlay for mobile drawer */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 15, 0.7);
  backdrop-filter: blur(6px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Drawer Styles */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -105%;
  width: 340px;
  max-width: 88vw;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-card);
  z-index: 2000;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: right 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid var(--border-color);
}

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

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
}

.mobile-drawer-header .logo-img {
  height: 40px;
}

.mobile-menu-close {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.mobile-menu-close:hover {
  background: var(--brand-pink-light);
  color: var(--brand-pink);
  transform: rotate(90deg);
}

.mobile-drawer-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px;
  background: var(--brand-green-light);
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
}

[data-theme="dark"] .mobile-drawer-toolbar {
  background: rgba(124, 179, 66, 0.12);
}

.drawer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-green-dark);
}

[data-theme="dark"] .drawer-status-pill {
  color: var(--brand-green);
}

.status-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.35);
  animation: pulse 2s infinite ease-in-out;
}

.drawer-theme-btn {
  width: 32px;
  height: 32px;
  font-size: 0.95rem;
  border-radius: 50%;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  flex-grow: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s ease;
  background: transparent;
  border: 1px solid transparent;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  background: var(--bg-secondary);
  border-color: var(--border-color);
  transform: translateX(3px);
}

.mobile-nav-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bg-green { background: var(--brand-green-light); color: var(--brand-green-dark); }
.bg-yellow { background: var(--brand-gold-light); color: #B45309; }
.bg-pink { background: var(--brand-pink-light); color: var(--brand-pink); }
.bg-teal { background: var(--brand-teal-light); color: var(--brand-teal); }
.bg-purple { background: rgba(147, 51, 234, 0.12); color: #9333EA; }
.bg-orange { background: rgba(249, 115, 22, 0.12); color: #EA580C; }
.bg-gold { background: rgba(245, 158, 11, 0.15); color: #D97706; }
.bg-mint { background: rgba(16, 185, 129, 0.12); color: #059669; }
.bg-coral { background: rgba(239, 68, 68, 0.12); color: #DC2626; }

.mobile-nav-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.mobile-nav-title {
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.mobile-nav-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.2;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-nav-arrow {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.mobile-nav-item:hover .mobile-nav-arrow {
  transform: translateX(3px);
  color: var(--brand-pink);
}

.mobile-drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  flex-shrink: 0;
}

.drawer-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 10px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-display);
  text-decoration: none;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-main);
  transition: all 0.2s;
}

.drawer-contact-btn.btn-call:hover {
  background: var(--brand-green);
  color: #FFFFFF;
  border-color: var(--brand-green);
}

.drawer-contact-btn.btn-whatsapp {
  border-color: #25D366;
  color: #25D366;
}

.drawer-contact-btn.btn-whatsapp:hover {
  background: #25D366;
  color: #FFFFFF;
}

.mobile-drawer-cta {
  padding: 0 14px 10px 14px;
  background: var(--bg-secondary);
  flex-shrink: 0;
}

.mobile-drawer-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 11px 16px;
}

.mobile-drawer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  font-size: 0.72rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.drawer-socials {
  display: flex;
  gap: 6px;
}

.drawer-socials .social-link {
  width: 26px;
  height: 26px;
}

.drawer-socials .social-link svg {
  width: 13px;
  height: 13px;
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */

/* Tablet Landscape & Small Laptops (<= 1024px) */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .growth-grid, .testimonials-grid, .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-container {
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-features-grid, .programs-grid, .teachers-grid, .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

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

/* Navigation Switch to Hamburger (<= 992px) */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .menu-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    font-size: 1.4rem;
    color: var(--text-main);
  }

  .site-header .container {
    padding: 0 20px;
  }
}

/* Tablets Portrait & Large Phones (<= 768px) */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  /* Hide desktop button in header on mobile to prevent navbar overflow */
  .site-header .nav-actions .open-enrollment-modal {
    display: none;
  }

  .site-header .container {
    padding: 0 16px;
  }

  .navbar {
    padding: 10px 0;
    gap: 12px;
  }

  .nav-actions {
    gap: 8px;
  }

  .theme-toggle-btn {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }

  .menu-toggle-btn {
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
  }

  .logo-img {
    height: 40px;
  }

  .logo-brand-name {
    font-size: 1.2rem;
  }

  .logo-brand-tagline {
    font-size: 0.65rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title-wrap {
    margin-bottom: 36px;
  }

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

  .hero-section {
    padding: 35px 0 40px 0;
  }

  .hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1.02rem;
    margin-bottom: 24px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-main-img {
    height: 340px;
  }

  .floating-card-1 {
    top: 4%;
    left: 2%;
  }

  .floating-card-2 {
    bottom: 4%;
    right: 2%;
  }

  .hero-features-grid, .programs-grid, .teachers-grid, .blog-grid {
    grid-template-columns: 1fr;
  }

  .categories-strip {
    padding: 24px 0;
  }

  .about-main-img {
    height: 340px;
  }

  .about-badge-experience {
    bottom: -15px;
    left: 10px;
    padding: 12px 18px;
  }

  .about-badge-experience .exp-number {
    font-size: 1.8rem;
  }

  .stats-banner-wrap {
    padding: 50px 0;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .cta-blob-container {
    padding: 40px 24px;
    border-radius: 32px;
    margin: 24px 0;
  }

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

  .cta-blob-content p {
    font-size: 1.02rem;
  }

  .newsletter-section {
    padding: 60px 0 40px 0;
  }

  .newsletter-form {
    flex-direction: column;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 10px;
  }

  .newsletter-input {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    padding: 14px 20px;
    box-shadow: var(--shadow-sm);
  }

  .newsletter-info-bar {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
    padding-top: 28px;
  }

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

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

  .modal-dialog {
    padding: 28px 20px;
    max-width: 95%;
  }
}

/* Small Phones (<= 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .site-header .container {
    padding: 0 12px;
  }

  .navbar {
    padding: 8px 0;
    gap: 6px;
  }

  .logo-wrapper {
    gap: 8px;
  }

  .logo-img {
    height: 36px;
  }

  .logo-brand-name {
    font-size: 1.05rem;
  }

  .logo-brand-tagline {
    font-size: 0.6rem;
  }

  .theme-toggle-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .menu-toggle-btn {
    width: 36px;
    height: 36px;
    font-size: 1.15rem;
  }

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

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

  .hero-main-img {
    height: 280px;
    border-radius: 32px 18px 40px 18px;
  }

  .floating-card {
    padding: 6px 10px;
    gap: 8px;
    border-radius: var(--radius-sm);
  }

  .floating-card-1 {
    top: 3%;
    left: 2%;
  }

  .floating-card-2 {
    bottom: 3%;
    right: 2%;
  }

  .floating-icon {
    width: 28px;
    height: 28px;
    font-size: 0.88rem;
  }

  .floating-text strong {
    font-size: 0.75rem;
  }

  .floating-text span {
    font-size: 0.64rem;
  }

  .growth-cards-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-filter-tabs {
    gap: 8px;
  }

  .gallery-tab-btn {
    padding: 8px 16px;
    font-size: 0.88rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-card {
    padding: 12px;
  }

  .stat-number {
    font-size: 2.4rem;
  }

  .form-control {
    font-size: 16px; /* Prevents auto-zoom on iOS safari */
    padding: 12px 14px;
  }

  .testimonial-quote-box {
    padding: 24px 18px;
  }

  .testimonial-text {
    font-size: 1.05rem;
  }
}

/* Extra Small Phones (<= 360px) */
@media (max-width: 360px) {
  .floating-card {
    padding: 5px 8px;
    gap: 6px;
  }

  .floating-icon {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }

  .floating-text strong {
    font-size: 0.68rem;
  }

  .floating-text span {
    font-size: 0.58rem;
  }
}

/* --------------------------------------------------------------------------
   22. ANIMATED FLOATING SIDE SHAPES STYLING & POSITIONING
   -------------------------------------------------------------------------- */
.section, .categories-strip, .hero-section, .cta-blob-section, .stats-banner-wrap, .newsletter-section, .site-footer {
  position: relative;
  overflow: hidden;
}

/* Individual side shape placements */
.shape-hero-left {
  top: 15%;
  left: 2%;
  width: clamp(45px, 6.5vw, 85px);
  opacity: 0.92;
}

.shape-hero-right {
  bottom: 8%;
  right: 2%;
  width: clamp(55px, 8vw, 115px);
  opacity: 0.95;
}

.shape-cat-right {
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  width: clamp(35px, 5vw, 65px);
  opacity: 0.85;
}

.shape-about-left {
  top: 12%;
  left: 1.5%;
  width: clamp(45px, 6.5vw, 95px);
  opacity: 0.9;
}

.shape-about-right {
  bottom: 12%;
  right: 2%;
  width: clamp(40px, 5vw, 75px);
  opacity: 0.85;
}

.shape-programs-right {
  top: 6%;
  right: 1.5%;
  width: clamp(45px, 6.5vw, 90px);
  opacity: 0.9;
}

.shape-programs-left {
  bottom: 8%;
  left: 2%;
  width: clamp(35px, 5vw, 70px);
  opacity: 0.85;
}

.shape-growth-right {
  top: 8%;
  right: 2%;
  width: clamp(45px, 6.5vw, 95px);
  opacity: 0.9;
}

.shape-growth-left {
  bottom: 10%;
  left: 1.5%;
  width: clamp(40px, 5vw, 75px);
  opacity: 0.85;
}

.shape-teachers-left {
  top: 8%;
  left: 2%;
  width: clamp(35px, 5vw, 70px);
  opacity: 0.85;
}

.shape-teachers-right {
  bottom: 10%;
  right: 2%;
  width: clamp(40px, 5.5vw, 80px);
  opacity: 0.85;
}

.shape-testimonials-right {
  top: 10%;
  right: 2.5%;
  width: clamp(35px, 5vw, 75px);
  opacity: 0.85;
}

.shape-cta-left {
  top: 18%;
  left: 3%;
  width: clamp(40px, 6vw, 85px);
  opacity: 0.92;
}

.shape-cta-right {
  bottom: 14%;
  right: 3%;
  width: clamp(45px, 7vw, 95px);
  opacity: 0.92;
}

.shape-faq-left {
  top: 12%;
  left: 1.5%;
  width: clamp(40px, 5.5vw, 80px);
  opacity: 0.85;
}

.shape-faq-right {
  bottom: 10%;
  right: 2%;
  width: clamp(35px, 5vw, 70px);
  opacity: 0.85;
}

.shape-newsletter-left {
  top: 12%;
  left: 2%;
  width: clamp(35px, 5vw, 75px);
  opacity: 0.85;
}

.shape-footer-right {
  top: 8%;
  right: 3%;
  width: clamp(45px, 6.5vw, 95px);
  opacity: 0.85;
}

/* Tablet adjustments (<= 1024px) */
@media (max-width: 1024px) {
  .floating-side-shape {
    opacity: 0.8;
  }
}

/* Mobile adjustments (<= 768px) */
@media (max-width: 768px) {
  .floating-side-shape {
    opacity: 0.7;
  }
  .shape-hero-left {
    top: 3%;
    left: 1%;
  }
  .shape-hero-right {
    bottom: 2%;
    right: 1%;
  }
  .shape-about-left {
    top: 4%;
    left: 1%;
  }
  .shape-about-right {
    bottom: 3%;
    right: 1%;
  }
}

/* Extra small phones (<= 480px) */
@media (max-width: 480px) {
  .floating-side-shape {
    opacity: 0.6;
  }
}

/* --------------------------------------------------------------------------
   23. FLOATING WHATSAPP BUTTON / WIDGET
   -------------------------------------------------------------------------- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  padding: 12px 20px 12px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid #FFFFFF;
  cursor: pointer;
}

.floating-whatsapp-btn:hover {
  background: #20BA56;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.65);
  color: #FFFFFF;
}

.whatsapp-icon-svg {
  width: 24px;
  height: 24px;
  fill: #FFFFFF;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.floating-whatsapp-btn:hover .whatsapp-icon-svg {
  transform: rotate(10deg) scale(1.1);
}

.whatsapp-btn-pulse {
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px solid #25D366;
  animation: pulseGlow 2.2s infinite ease-in-out;
  pointer-events: none;
}

/* Mobile responsive styling for floating WhatsApp button */
@media (max-width: 768px) {
  .floating-whatsapp-btn {
    bottom: 20px;
    right: 18px;
    padding: 10px 16px 10px 14px;
    font-size: 0.88rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }

  .whatsapp-icon-svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .floating-whatsapp-btn {
    bottom: 16px;
    right: 14px;
    padding: 9px 14px 9px 12px;
    gap: 8px;
  }

  .whatsapp-btn-text {
    font-size: 0.82rem;
  }
}
