/* ===== BRAINY BEEZ MONTESSORI - MAIN STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
  --yellow: #FFD700;
  --yellow-light: #FFF3B0;
  --pink: #FF6B9D;
  --pink-light: #FFE0EE;
  --blue: #4FC3F7;
  --blue-dark: #0288D1;
  --blue-light: #E1F5FE;
  --purple: #AB47BC;
  --purple-light: #F3E5F5;
  --orange: #FF8C42;
  --orange-light: #FFF0E6;
  --green: #66BB6A;
  --green-light: #E8F5E9;
  --red: #EF5350;
  --white: #FFFFFF;
  --bg: #FEFEF8;
  --text: #2C2C2C;
  --text-light: #666;
  --shadow: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.16);
  --radius: 24px;
  --radius-sm: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Baloo 2', cursive;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.nav-logo img {
  height: 52px;
  width: auto;
  border-radius: 10px;
}

.nav-logo-text {
  font-family: 'Baloo 2', cursive;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--blue-dark);
}

.nav-logo-text span {
  color: var(--pink);
  display: block;
  font-size: 0.75rem;
}

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

.nav-links a {
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem;
  border-radius: 50px;
  transition: all 0.3s;
  color: var(--text);
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--yellow);
  color: #333;
}

.nav-cta {
  background: var(--pink) !important;
  color: white !important;
  border-radius: 50px;
  padding: 0.5rem 1.2rem !important;
}

.nav-cta:hover {
  background: var(--purple) !important;
  color: white !important;
}

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

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

/* ===== FLOATING SHAPES ===== */
.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) { width: 120px; height: 120px; background: var(--yellow); top: 10%; left: 5%; animation-delay: 0s; }
.shape:nth-child(2) { width: 80px; height: 80px; background: var(--pink); top: 20%; right: 8%; animation-delay: 1s; }
.shape:nth-child(3) { width: 100px; height: 100px; background: var(--blue); bottom: 20%; left: 10%; animation-delay: 2s; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
.shape:nth-child(4) { width: 60px; height: 60px; background: var(--purple); bottom: 30%; right: 5%; animation-delay: 0.5s; }
.shape:nth-child(5) { width: 90px; height: 90px; background: var(--orange); top: 50%; right: 15%; animation-delay: 1.5s; }
.shape:nth-child(6) { width: 70px; height: 70px; background: var(--green); top: 60%; left: 20%; animation-delay: 3s; border-radius: 50% 50% 0 0; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  background: linear-gradient(135deg, #FFF9E6 0%, #E8F4FF 40%, #FFE8F5 70%, #F0F9E8 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 2rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-tagline {
  display: inline-block;
  background: var(--yellow);
  color: #333;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  animation: bounceIn 0.8s ease;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  color: var(--blue-dark);
  margin-bottom: 1rem;
  animation: slideUp 0.8s ease 0.2s both;
}

.hero h1 span { color: var(--pink); }

.hero p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
  animation: slideUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: slideUp 0.8s ease 0.6s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.5);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(79, 195, 247, 0.5);
}

.btn-outline {
  background: white;
  color: var(--orange);
  border: 2.5px solid var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-3px);
}

.hero-image {
  position: relative;
  animation: slideRight 0.8s ease 0.3s both;
}

.hero-image .main-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-image .logo-img {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: var(--shadow);
  object-fit: cover;
  animation: float 4s ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: white;
  border-radius: 20px;
  padding: 0.8rem 1.2rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-badge .badge-icon { font-size: 1.8rem; }
.hero-badge .badge-text { font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 0.85rem; color: var(--blue-dark); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: white;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item .stat-num {
  font-family: 'Baloo 2', cursive;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-dark);
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 2rem;
}

.section-alt {
  background: linear-gradient(135deg, #f8f9ff, #fff8f9);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.label-yellow { background: var(--yellow-light); color: #B8860B; }
.label-pink { background: var(--pink-light); color: #C2185B; }
.label-blue { background: var(--blue-light); color: var(--blue-dark); }
.label-purple { background: var(--purple-light); color: #6A1B9A; }
.label-orange { background: var(--orange-light); color: #E65100; }
.label-green { background: var(--green-light); color: #1B5E20; }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}

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

.section-desc {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 1rem;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  width: 80%;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.about-img-secondary {
  position: absolute;
  width: 55%;
  border-radius: 20px;
  box-shadow: var(--shadow);
  bottom: -30px;
  right: -10px;
  border: 4px solid white;
}

.about-text h2 {
  font-size: 2.2rem;
  color: var(--blue-dark);
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

.feature-item:hover { transform: translateX(5px); }

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-item span {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
}

/* ===== PROGRAMS ===== */
.programs-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.tab-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 2.5px solid #ddd;
  background: white;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--text);
}

.tab-btn.active, .tab-btn:hover {
  border-color: var(--pink);
  background: var(--pink);
  color: white;
}

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

.program-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: var(--radius) var(--radius) 0 0;
}

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

.program-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.program-card h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.program-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

.card-pink::before { background: var(--pink); }
.card-blue::before { background: var(--blue); }
.card-yellow::before { background: var(--yellow); }
.card-purple::before { background: var(--purple); }
.card-orange::before { background: var(--orange); }
.card-green::before { background: var(--green); }

/* ===== ACTIVITIES ===== */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.activity-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

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

.activity-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.activity-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

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

/* ===== GALLERY ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.gallery-grid {
  columns: 3;
  column-gap: 1.5rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  padding: 1.5rem 1rem 0.75rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay { transform: translateY(0); }

.gallery-overlay span {
  font-weight: 700;
  font-size: 0.9rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

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

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lightbox-close:hover { background: var(--pink); }

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

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

.why-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  animation: float 3s ease-in-out infinite;
}

.why-card h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  position: relative;
}

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

.testimonial-card::before {
  content: '"';
  font-size: 6rem;
  font-family: 'Baloo 2', cursive;
  position: absolute;
  top: -10px;
  left: 20px;
  color: var(--yellow);
  line-height: 1;
  opacity: 0.7;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  margin-top: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.author-info strong {
  font-size: 0.9rem;
  display: block;
  color: var(--text);
}

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

.stars { color: var(--yellow); font-size: 0.9rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark), var(--purple));
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '🌟🎨🐝🎒🌈';
  position: absolute;
  font-size: 4rem;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 20px;
  opacity: 0.15;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  background: white;
  color: var(--blue-dark);
}

.btn-white:hover {
  background: var(--yellow);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  background: #1ebe57;
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info h3 {
  font-size: 1.6rem;
  color: var(--blue-dark);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.contact-item p, .contact-item a {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
  display: block;
}

.contact-item a:hover { color: var(--pink); }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s;
  color: white;
}

.social-btn:hover { transform: translateY(-3px); opacity: 0.9; }
.social-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366); }
.social-facebook { background: #1877F2; }
.social-justdial { background: #E87722; }

.contact-form {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.6rem;
  color: var(--blue-dark);
  margin-bottom: 1.5rem;
}

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

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: white;
}

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

/* ===== FOOTER ===== */
.footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.8);
  padding: 4rem 2rem 1.5rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 60px;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 250px;
  color: rgba(255,255,255,0.6);
}

.footer-col h4 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.05rem;
  color: white;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--yellow); }

.footer-col .contact-mini {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
}

.footer-tagline {
  font-family: 'Baloo 2', cursive;
  color: var(--yellow);
  font-size: 0.9rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #E1F5FE, #F3E5F5, #FFF9C4);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--blue-dark);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.breadcrumb a { color: var(--blue-dark); font-weight: 700; }
.breadcrumb a:hover { color: var(--pink); }

/* ===== THERAPY SECTION ===== */
.therapy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.therapy-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border-left: 5px solid transparent;
}

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

.therapy-card .t-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.therapy-card h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.therapy-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== VISION MISSION ===== */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.vm-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.vm-card .vm-icon { font-size: 3rem; margin-bottom: 1rem; }

.vm-card h3 {
  font-size: 1.5rem;
  color: var(--blue-dark);
  margin-bottom: 0.75rem;
}

.vm-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ===== ANIMATIONS ===== */
@keyframes bounceIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideRight {
  from { transform: translateX(30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: white;
  z-index: 999;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  flex-direction: column;
  gap: 0.5rem;
}

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

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  color: var(--text);
}

.mobile-menu a:hover {
  background: var(--yellow-light);
  color: var(--text);
}

.mobile-menu .mobile-enroll {
  background: var(--pink);
  color: white;
  text-align: center;
  margin-top: 0.5rem;
  border-radius: 50px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta-desktop { display: none; }
  .hamburger { display: flex; }
  
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-buttons { justify-content: center; }
  .hero-image .logo-img { width: 100px; height: 100px; }
  .hero-image .hero-badge { left: 0; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 300px; }
  .about-img-main { width: 70%; }
  .vm-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .gallery-grid { columns: 2; }
  .hero-image { order: -1; }
}

@media (max-width: 480px) {
  .navbar { padding: 0 1rem; }
  .section { padding: 3.5rem 1.2rem; }
  .hero { padding: 3rem 1.2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .about-features { grid-template-columns: 1fr; }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  z-index: 998;
  animation: pulse 2s infinite;
  transition: transform 0.3s;
}

.whatsapp-float:hover { transform: scale(1.1); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.8); }
}

/* Image section on about/activities pages */
.img-gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.img-gallery-row img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.img-gallery-row img:hover { transform: scale(1.03); }

@media (max-width: 768px) {
  .img-gallery-row { grid-template-columns: 1fr 1fr; }
  .img-gallery-row img { height: 180px; }
}

@media (max-width: 480px) {
  .img-gallery-row { grid-template-columns: 1fr; }
}
