/* =============================================
   LITTLE STARS SCHOOL – MAIN STYLESHEET
   ============================================= */

/* ── FONTS & VARIABLES ── */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Baloo+2:wght@400;600;700;800&display=swap');

:root {
  --yellow:     #FFE66D;
  --yellow-dark:#F5C800;
  --pink:       #FF9FB2;
  --pink-dark:  #FF7090;
  --blue:       #86D3F7;
  --blue-dark:  #4AB8F0;
  --green:      #B5EAD7;
  --green-dark: #7DD9B5;
  --orange:     #FFDAC1;
  --purple:     #C7CEEA;
  --white:      #FFFFFF;
  --bg-soft:    #FFF9F0;
  --text:       #2D2D2D;
  --text-light: #6B6B6B;
  --text-muted: #9B9B9B;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.15);
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --font-head:  'Baloo 2', cursive;
  --font-body:  'Nunito', sans-serif;
  --nav-h:      80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ── */
*, *::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);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.bg-soft { background: var(--bg-soft); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  margin: 8px 0 16px;
  line-height: 1.2;
}
.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.05rem;
}

.section-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--text);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, #FF7F50, #FF5F8D);
  color: white;
  box-shadow: 0 4px 20px rgba(255,95,141,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,95,141,0.45);
}
.btn-outline {
  border-color: currentColor;
  color: var(--text);
  background: white;
}
.btn-outline:hover {
  background: var(--text);
  color: white;
  transform: translateY(-3px);
}
.btn-white {
  background: white;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: var(--yellow);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn-full { width: 100%; justify-content: center; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}

.animate-fade-up {
  animation: fadeUp 0.9s ease both;
}
.animate-float {
  animation: float 5s ease-in-out infinite;
}

/* Scroll-triggered animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease var(--delay, 0s), transform 0.7s ease var(--delay, 0s);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-star { font-size: 1.6rem; animation: pulse 2s infinite; }
.accent { color: #FF5F8D; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links li a {
  padding: 8px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: var(--transition);
}
.nav-links li a:hover,
.nav-links li a.active {
  background: var(--bg-soft);
  color: var(--text);
}
.nav-btn {
  background: linear-gradient(135deg, #FF7F50, #FF5F8D) !important;
  color: white !important;
  box-shadow: 0 4px 16px rgba(255,95,141,0.3);
  padding: 10px 22px !important;
}
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,95,141,0.4) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 4px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  /* full-bleed section: content boxed inside .hero-inner */
  position: relative;
  overflow: visible;
  width: 100%;
  padding: calc(var(--nav-h) + 60px) 0 80px;
}
/* Boxed inner layout for hero (keeps original centered content width) */
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}
.shape-1 { width: 400px; height: 400px; background: var(--yellow); top: -100px; right: -100px; }
.shape-2 { width: 250px; height: 250px; background: var(--pink); bottom: 50px; left: -80px; }
.shape-3 { width: 180px; height: 180px; background: var(--blue); top: 200px; left: -60px; }
.shape-4 { width: 120px; height: 120px; background: var(--green); top: 100px; right: 300px; opacity: 0.4; }

.hero-content {
  flex: 1;
  max-width: 560px;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  animation: pulse 3s infinite;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
}
.highlight {
  color: #FF5F8D;
  position: relative;
  display: inline-block;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 6px;
  background: var(--yellow);
  border-radius: 4px;
  z-index: -1;
}
.highlight-pink { color: #FF5F8D; }

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
}
.stat span {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
}
.stat-divider { width: 2px; height: 40px; background: #eee; border-radius: 4px; }

.hero-illustration {
  flex: 1;
  max-width: 500px;
  z-index: 1;
  position: relative;
}
.hero-img-wrap {
  position: relative;
}
.hero-img-wrap img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.blob-bg {
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  z-index: -1;
  opacity: 0.25;
  animation: float 7s ease-in-out infinite reverse;
}

/* Responsive hero: stack on smaller screens and ensure illustration sits to the right on wide screens */
@media (max-width: 980px) {
  .hero-inner {
    flex-direction: column-reverse;
    gap: 36px;
    align-items: center;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-illustration { max-width: 360px; width: 90%; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
}

@media (min-width: 981px) {
  .hero-inner { align-items: center; }
  .hero-content { text-align: left; }
  .hero-illustration { order: 2; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 24px 80px;
  background: linear-gradient(135deg, #FFF5CC 0%, #FFE0EC 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-green { background: linear-gradient(135deg, #EAFFF5 0%, #D0F8EA 100%); }
.page-hero-pink  { background: linear-gradient(135deg, #FFF0F5 0%, #FFD6E0 100%); }
.page-hero-blue  { background: linear-gradient(135deg, #EFF8FF 0%, #D0EEFF 100%); }
.page-hero-yellow{ background: linear-gradient(135deg, #FFF9E0 0%, #FFF0C0 100%); }

.page-hero-content { position: relative; z-index: 1; }
.page-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin: 16px 0 16px;
}
.page-hero-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 550px;
  margin: 0 auto 20px;
}
.breadcrumb {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 600;
}
.breadcrumb a { color: #FF5F8D; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid #f0f0f0;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.feature-card p { color: var(--text-light); font-size: 0.95rem; }

/* ── ABOUT PREVIEW ── */
.about-flex {
  display: flex;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  flex: 1;
  position: relative;
  max-width: 500px;
}
.about-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow-md);
  font-size: 1.5rem;
  animation: float 4s ease-in-out infinite;
}
.about-badge-float span { font-size: 2rem; }
.about-badge-float strong { display: block; font-weight: 800; font-size: 0.95rem; }
.about-badge-float small { color: var(--text-light); font-size: 0.8rem; }

.about-text { flex: 1; }
.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin: 12px 0 16px;
}
.about-text p { color: var(--text-light); margin-bottom: 16px; }
.about-list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
}
.about-list li span { font-size: 1.1rem; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.mini-stat {
  text-align: center;
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 16px 8px;
}
.mini-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: #FF5F8D;
}
.mini-stat span { font-size: 0.8rem; color: var(--text-light); font-weight: 600; }

/* ── CLASS CARDS (preview) ── */
.class-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.class-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  border-top: 6px solid var(--card-color, var(--yellow));
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.class-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.class-emoji { font-size: 3rem; margin-bottom: 16px; }
.class-card h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; }
.class-card > p:first-of-type { color: var(--text-muted); font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; }
.class-card > p { color: var(--text-light); margin-bottom: 20px; }
.class-link {
  font-weight: 700;
  color: #FF5F8D;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.class-link:hover { gap: 10px; }

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f0f0f0;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stars { font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-card > p {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
  font-size: 0.95rem;
}
.testimonial-author {
  display: flex;
  gap: 14px;
  align-items: center;
}
.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author strong { display: block; font-weight: 700; font-size: 0.95rem; }
.testimonial-author small { color: var(--text-muted); font-size: 0.8rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #FF7F50, #FF5F8D);
  padding: 60px 24px;
  text-align: center;
}
.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  text-align: left;
}
.cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}
.cta-content p { color: rgba(255,255,255,0.85); font-size: 1rem; }

/* ── FOOTER ── */
.footer {
  background: #1A1A2E;
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; margin: 16px 0 24px; color: rgba(255,255,255,0.6); }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.85rem;
}
.social-links a:hover { background: var(--yellow); color: var(--text); transform: translateY(-3px); }

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: white;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links ul li a:hover { color: var(--yellow); padding-left: 6px; }

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-contact p i { color: var(--yellow); margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ── ABOUT PAGE – VISION/MISSION ── */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.vm-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  border-bottom: 5px solid var(--vm-color, var(--yellow));
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.vm-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.vm-icon { font-size: 3rem; margin-bottom: 16px; }
.vm-card h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
.vm-card p { color: var(--text-light); }

/* ── TEACHER CARDS ── */
.teachers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.teacher-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: white;
  transition: var(--transition);
}
.teacher-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.teacher-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
}
.teacher-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.teacher-card:hover .teacher-img-wrap img { transform: scale(1.08); }
.teacher-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,95,141,0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}
.teacher-card:hover .teacher-overlay { opacity: 1; }
.teacher-overlay p { color: white; font-style: italic; font-size: 0.9rem; margin-bottom: 12px; }
.teacher-social { display: flex; gap: 10px; }
.teacher-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  color: #FF5F8D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
}
.teacher-social a:hover { background: var(--yellow); color: var(--text); }
.teacher-info { padding: 20px; }
.teacher-info h4 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.teacher-info span { color: var(--text-light); font-size: 0.85rem; display: block; margin-bottom: 12px; }
.teacher-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.teacher-tags span {
  background: var(--bg-soft);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-light);
}

/* ── CLASSES PAGE ── */
.class-section {
  display: flex;
  gap: 64px;
  align-items: center;
}
.class-section-reverse { flex-direction: row-reverse; }
.class-section-img {
  flex: 1;
  position: relative;
  max-width: 480px;
}
.class-section-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}
.class-tag-pill {
  position: absolute;
  bottom: -16px;
  left: 24px;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}
.class-section-text { flex: 1; }
.class-section-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin: 12px 0 16px;
}
.class-section-text h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin: 24px 0 14px;
  font-weight: 700;
}
.class-section-text > p { color: var(--text-light); margin-bottom: 8px; }
.activity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.activity-tags span {
  background: var(--bg-soft);
  border: 1px solid #e8e8e8;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.class-info-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.class-info-item {
  display: flex;
  gap: 10px;
  align-items: center;
}
.class-info-item i { color: #FF5F8D; font-size: 1.1rem; }
.class-info-item strong { display: block; font-size: 0.85rem; font-weight: 700; }
.class-info-item span { font-size: 0.8rem; color: var(--text-muted); }

.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.class-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.class-table th {
  background: linear-gradient(135deg, #FF7F50, #FF5F8D);
  color: white;
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
}
.class-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
}
.class-table tr:last-child td { border-bottom: none; }
.class-table tr:hover td { background: var(--bg-soft); }
.class-table tr:nth-child(even) td { background: #fafafa; }
.class-table tr:nth-child(even):hover td { background: var(--bg-soft); }

/* ── ACTIVITIES PAGE ── */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.activity-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.activity-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.activity-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.activity-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.activity-card:hover .activity-img-wrap img { transform: scale(1.1); }
.activity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,30,60,0.85), transparent);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: var(--transition);
  padding: 24px;
}
.activity-card:hover .activity-overlay { opacity: 1; }
.activity-overlay-content h4 { color: white; font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 6px; }
.activity-overlay-content p { color: rgba(255,255,255,0.85); font-size: 0.85rem; margin-bottom: 10px; }
.activity-freq {
  background: var(--yellow);
  color: var(--text);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}
.activity-info {
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.activity-emoji { font-size: 2rem; flex-shrink: 0; }
.activity-info h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.activity-info p { color: var(--text-light); font-size: 0.85rem; }

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.schedule-day {
  background: white;
  border-radius: var(--radius);
  padding: 24px 20px;
  border-top: 4px solid var(--day-color, var(--yellow));
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.schedule-day:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.schedule-day h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 14px;
}
.schedule-day ul { display: flex; flex-direction: column; gap: 8px; }
.schedule-day ul li { font-size: 0.88rem; color: var(--text-light); font-weight: 600; }

/* ── GALLERY PAGE ── */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  background: white;
  border: 2px solid #e8e8e8;
  color: var(--text-light);
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn:hover { border-color: #FF5F8D; color: #FF5F8D; }
.filter-btn.active {
  background: linear-gradient(135deg, #FF7F50, #FF5F8D);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(255,95,141,0.35);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  transition: var(--transition);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,95,141,0.75), transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: var(--transition);
  color: white;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { font-size: 2rem; }
.gallery-item-overlay span { font-weight: 700; font-size: 0.9rem; text-align: center; padding: 0 16px; }

.gallery-item.hidden { display: none; }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  gap: 16px;
}
.lightbox-content img {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
  object-fit: contain;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  color: var(--text);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}
.lightbox-close:hover { background: var(--pink); color: white; transform: rotate(90deg); }
.lightbox-prev, .lightbox-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  color: var(--text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--yellow); transform: scale(1.1); }
.lightbox-caption {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Centered map section (large map in middle of page) */
.map-section { padding: 40px 0; background: transparent; }
.map-frame {
  width: 100%;
  max-width: 1100px;
  height: 520px;
  margin: 18px auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 50px rgba(0,0,0,0.08);
  background: #eaf6ff;
}

@media (max-width: 1024px) {
  .map-frame { height: 380px; max-width: 100%; }
}

@media (max-width: 480px) {
  .map-frame { height: 260px; }
}

/* Contact page refinements */
.contact-form-wrap {
  background: transparent;
}
.contact-form-wrap .section-tag { display: inline-block; margin-bottom: 12px; }
.contact-form-wrap h2 { font-family: var(--font-head); font-size: 1.6rem; margin: 6px 0 12px; }
.contact-form-wrap p { color: var(--text-light); margin-bottom: 18px; }

.contact-info-card {
  padding: 18px 20px;
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.03);
}
.contact-info-card h4 { font-weight: 800; margin-bottom: 6px; font-size: 1rem; }
.contact-info-card p { color: var(--text-muted); font-size: 0.95rem; }

.contact-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quick-contact-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.quick-contact-box h4 { font-family: var(--font-head); margin-bottom: 12px; }
.quick-links { display: flex; flex-direction: column; gap: 12px; }
.quick-link {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  transition: var(--transition);
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.95));
}
.quick-link:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.ql-icon { width: 44px; height: 44px; border-radius: 12px; display:flex; align-items:center; justify-content:center; font-size:1.2rem; flex-shrink:0; }
.quick-link strong { display:block; font-weight:800; }
.quick-link small { display:block; color:var(--text-muted); font-size:0.85rem; }

.map-placeholder {
  background: #f7fbff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid rgba(74,144,226,0.08);
}
.map-placeholder h4 { margin-bottom: 6px; font-weight:800; }
.map-visual img { border-radius: 12px; box-shadow: 0 6px 20px rgba(0,0,0,0.06); }

@media (max-width: 900px) {
  .contact-flex { grid-template-columns: 1fr; }
  .map-frame { height: 280px; }
}

  /* Compact map card in right column */
  .map-card {
    background: white;
    border-radius: 12px;
    padding: 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .map-card h4 { font-weight:800; margin:0; }
  .map-card .map-address { color:var(--text-muted); font-size:0.95rem; margin:0; }
  .map-thumb img { width:100%; height:150px; object-fit:cover; border-radius:8px; display:block; }

  @media (max-width: 900px) {
    .map-thumb img { height:140px; }
  }

/* ── CONTACT PAGE ── */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.contact-info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid var(--ci-color, var(--yellow));
  transition: var(--transition);
}
.contact-info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ci-icon { font-size: 2.5rem; margin-bottom: 12px; }
.contact-info-card h4 {
  font-family: var(--font-head);
  font-weight: 800;
  margin-bottom: 8px;
}
.contact-info-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.8; }

.contact-flex {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form-wrap h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  margin: 8px 0 8px;
}
.contact-form-wrap > p { color: var(--text-light); margin-bottom: 28px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.req { color: #FF5F8D; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: white;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #FF5F8D;
  box-shadow: 0 0 0 4px rgba(255,95,141,0.1);
}
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #ff3d3d;
  box-shadow: 0 0 0 4px rgba(255,61,61,0.08);
}
.error-msg { color: #ff3d3d; font-size: 0.78rem; font-weight: 600; min-height: 16px; }

.form-check { flex-direction: row; align-items: flex-start; gap: 10px; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: #FF5F8D; flex-shrink: 0; }
.form-check label { font-size: 0.85rem; color: var(--text-light); font-weight: 500; }

.form-success {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #f0fff4, #d0f8ea);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 12px; }
.form-success h3 { font-family: var(--font-head); font-size: 1.5rem; color: #2d7a4f; margin-bottom: 8px; }
.form-success p { color: #4a9e6f; }

.map-placeholder {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.map-placeholder h4 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.map-placeholder > p { color: var(--text-light); font-size: 0.85rem; margin-bottom: 16px; }

.quick-contact-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.quick-contact-box h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.quick-links { display: flex; flex-direction: column; gap: 12px; }
.quick-link {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid #f0f0f0;
  transition: var(--transition);
}
.quick-link:hover { border-color: var(--yellow); transform: translateX(4px); background: var(--bg-soft); }
.ql-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.quick-link strong { display: block; font-weight: 700; font-size: 0.9rem; }
.quick-link small { color: var(--text-muted); font-size: 0.8rem; }

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 16px;
}
.faq-item {
  background: white;
  border-radius: var(--radius);
  border: 1px solid #f0f0f0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  gap: 12px;
}
.faq-q:hover { background: var(--bg-soft); }
.faq-q i { transition: transform 0.3s ease; flex-shrink: 0; color: #FF5F8D; }
.faq-q.open i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.8;
}
.faq-a.open { max-height: 200px; padding: 0 24px 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-flex, .class-section { gap: 40px; }
  .hero { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; }
  .section-pad { padding: 60px 0; }

  /* NAV */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li a { display: block; padding: 12px 16px; border-radius: 12px; font-size: 1rem; }
  .nav-btn { text-align: center; }

  /* HERO */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: calc(var(--nav-h) + 40px) 0 60px;
    gap: 40px;
  }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-illustration { width: 100%; max-width: 360px; }

  /* ABOUT */
  .about-flex, .class-section, .class-section-reverse, .contact-flex {
    flex-direction: column !important;
    gap: 48px;
  }
  .about-img-wrap { max-width: 100%; width: 100%; }
  .about-badge-float { bottom: -16px; right: 16px; }

  /* STATS */
  .stats-row { grid-template-columns: repeat(2, 1fr); }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; }

  /* CONTACT */
  .form-row { grid-template-columns: 1fr; }
  .contact-flex { grid-template-columns: 1fr; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* CTA */
  .cta-content { text-align: center; justify-content: center; flex-direction: column; }

  /* HERO SHAPES */
  .shape-1 { width: 250px; height: 250px; }
  .shape-2 { width: 150px; height: 150px; }
  .shape-3 { width: 100px; height: 100px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { width: 60px; height: 2px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { aspect-ratio: 1; }
  .schedule-grid { grid-template-columns: 1fr 1fr; }
  .class-section-img { max-width: 100%; }
  .features-grid { grid-template-columns: 1fr; }
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF7F50, #FF5F8D);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(255,95,141,0.4);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 500;
  border: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(255,95,141,0.5); }














































