/* ============================
   LITTLE BLOOMS ACADEMY – CSS
   ============================ */

/* ---- CSS VARIABLES ---- */
:root {
  --blue:     #5BA4CF;
  --blue-lt:  #E8F4FD;
  --peach:    #F4956A;
  --peach-lt: #FFF0E8;
  --yellow:   #F7C948;
  --yellow-lt:#FFFBEA;
  --lavender: #A78BCA;
  --lav-lt:   #F3EEFF;
  --mint:     #4BBFA3;
  --mint-lt:  #E6FAF6;
  --white:    #FFFFFF;
  --bg-soft:  #FDF9F5;
  --text-dark:#2D3748;
  --text-mid: #4A5568;
  --text-soft:#718096;
  --border:   #EDE8E3;

  --font-head: 'Fredoka', 'Nunito', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --radius-sm:  10px;
  --radius-md:  20px;
  --radius-lg:  32px;
  --radius-xl:  48px;

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.13);

  --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-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- UTILITIES ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 96px 0; }
.bg-soft { background: var(--bg-soft); }
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 24px; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--peach) 0%, #f07b47 100%);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(244,149,106,0.35);
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(244,149,106,0.45);
  background: linear-gradient(135deg, #f07b47 0%, var(--peach) 100%);
}
.btn-primary.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-primary.btn-sm { padding: 9px 20px; font-size: 0.9rem; }
.btn-primary.btn-full { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px; }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #25D366 0%, #1ebe59 100%);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
  transition: var(--transition);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.4);
}
.btn-whatsapp.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-whatsapp.btn-sm { padding: 9px 20px; font-size: 0.9rem; }

/* ---- SECTION HEADERS ---- */
.section-tag {
  display: inline-block;
  background: var(--peach-lt);
  color: var(--peach);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--peach), var(--lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 540px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-sub { margin: 0 auto; }

/* ========================
   NAVBAR
======================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  padding: 0;
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-icon { font-size: 2rem; line-height: 1; }
.logo-title {
  display: block;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}
.logo-sub {
  display: block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  color: var(--peach);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 1px;
}
.logo-light .logo-title { color: #fff; }
.logo-light .logo-sub { color: rgba(255,255,255,0.7); }

.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--peach);
  background: var(--peach-lt);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================
   HERO
======================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #FFF8F5 0%, #F0F7FF 50%, #F5F0FF 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}
.shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,149,106,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: floatShape 8s ease-in-out infinite;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(91,164,207,0.15) 0%, transparent 70%);
  bottom: 50px; left: -100px;
  animation: floatShape 10s ease-in-out infinite reverse;
}
.shape-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(167,139,202,0.2) 0%, transparent 70%);
  top: 30%; left: 40%;
  animation: floatShape 7s ease-in-out infinite 1s;
}
.shape-4 {
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(247,201,72,0.25) 0%, transparent 70%);
  top: 20%; right: 30%;
  animation: floatShape 9s ease-in-out infinite 2s;
}
@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}

.hero-container {
  max-width: 1160px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--yellow-lt);
  border: 1px solid rgba(247,201,72,0.4);
  color: #a07b00;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease 0.2s both;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease 0.3s both;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--peach) 0%, var(--lavender) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeInDown 0.6s ease 0.4s both;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 40px;
  animation: fadeInDown 0.6s ease 0.5s both;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 20px;
  animation: fadeInDown 0.6s ease 0.6s both;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
}
.trust-item i { color: var(--mint); font-size: 1rem; }

.hero-visual {
  display: flex; justify-content: center; align-items: center;
  animation: fadeInRight 0.8s ease 0.4s both;
}
.hero-image-wrap {
  position: relative;
  width: 100%; max-width: 460px;
}
.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.hero-bubble {
  position: absolute;
  background: white;
  border-radius: 50px;
  padding: 10px 18px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.bubble-1 { top: 40px; left: -30px; animation: bobble 4s ease-in-out infinite; }
.bubble-2 { bottom: 80px; left: -40px; animation: bobble 5s ease-in-out infinite 1s; }
.bubble-3 { top: 60%; right: -30px; animation: bobble 4.5s ease-in-out infinite 0.5s; }
.hero-bubble span { font-size: 1.1rem; }

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

.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0; pointer-events: none;
}
.hero-wave svg { display: block; width: 100%; height: 60px; }

/* ========================
   STATS STRIP
======================== */
.stats-strip {
  background: linear-gradient(135deg, var(--peach) 0%, #f07b47 100%);
  padding: 48px 0;
}
.stats-container {
  max-width: 1000px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 24px;
}
.stat-item {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
}
.stat-item span:first-child,
.stat-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-item > span:nth-child(2) {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  letter-spacing: 0.3px;
  font-family: var(--font-head);
}
.stat-divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.25);
}

/* ========================
   ABOUT
======================== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-images { position: relative; height: 500px; }
.about-img-main {
  position: absolute; top: 0; left: 0;
  width: 75%; height: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: 0; right: 0;
  width: 48%; height: 52%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid #fff;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-float {
  position: absolute;
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--yellow), #f0b800);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.about-badge-float i { font-size: 1.4rem; color: #fff; }
.about-badge-float strong {
  display: block; font-family: var(--font-head); font-size: 0.9rem;
  color: #fff; font-weight: 700; line-height: 1;
}
.about-badge-float span {
  font-size: 0.75rem; color: rgba(255,255,255,0.85); font-family: var(--font-head);
}

.about-text {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-pillars {
  display: flex; flex-direction: column; gap: 14px;
  margin: 28px 0;
}
.pillar {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 20px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.pillar:hover {
  background: var(--peach-lt);
  transform: translateX(4px);
}
.pillar-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.pillar strong {
  display: block; font-family: var(--font-head); font-size: 1rem;
  font-weight: 600; color: var(--text-dark); line-height: 1.3;
}
.pillar span { font-size: 0.85rem; color: var(--text-soft); }

/* ========================
   PROGRAMS
======================== */
.programs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.program-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.program-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--mint));
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.program-featured {
  background: linear-gradient(160deg, #fff5f0 0%, #fff 100%);
  border-color: var(--peach);
}
.program-featured::before {
  background: linear-gradient(90deg, var(--peach), var(--lavender));
}
.program-ribbon {
  position: absolute; top: 20px; right: -8px;
  background: linear-gradient(135deg, var(--peach), #f07b47);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 16px 5px 12px;
  border-radius: 4px 0 0 4px;
  box-shadow: -2px 2px 8px rgba(244,149,106,0.3);
}
.program-emoji {
  font-size: 2.6rem; margin-bottom: 12px; line-height: 1;
}
.program-age {
  font-family: var(--font-head);
  font-size: 0.8rem; font-weight: 600;
  color: var(--blue); letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 8px;
}
.program-name {
  font-family: var(--font-head);
  font-size: 1.7rem; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.program-desc {
  font-size: 0.9rem; color: var(--text-soft);
  line-height: 1.7; margin-bottom: 24px;
}
.program-outcomes {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 28px;
}
.program-outcomes li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text-mid);
}
.program-outcomes i {
  color: var(--mint); font-size: 0.75rem; flex-shrink: 0;
}
.program-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 600;
  color: var(--peach);
  transition: var(--transition);
}
.program-cta:hover { gap: 12px; }

/* ========================
   FACILITIES
======================== */
.facilities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.facility-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.facility-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.facility-card h4 {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.facility-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ========================
   GALLERY
======================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.gallery-tall img { height: 100%; min-height: 460px; }
.gallery-wide { grid-column: span 2; }
.gallery-wide img { height: 240px; }
.gallery-tall { grid-row: span 2; }

.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 600;
  color: #fff; letter-spacing: 0.5px;
}

/* ========================
   TESTIMONIALS
======================== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-bottom: 48px;
}
.testi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--peach-lt);
  line-height: 1;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.testi-featured {
  background: linear-gradient(160deg, var(--blue-lt) 0%, #fff 100%);
  border-color: var(--blue);
}
.testi-stars { font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author {
  display: flex; align-items: center; gap: 14px;
}
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--peach), var(--lavender));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 700;
  color: #fff; flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-family: var(--font-head); font-size: 0.95rem; font-weight: 600;
  color: var(--text-dark); line-height: 1.2;
}
.testi-author span {
  font-size: 0.8rem; color: var(--text-soft);
}

.trust-badges {
  display: flex; flex-wrap: wrap; gap: 20px;
  justify-content: center;
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--bg-soft), #fff);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.trust-badge {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 600;
  color: var(--text-mid);
  padding: 10px 20px;
  background: #fff;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}
.trust-badge i { color: var(--peach); font-size: 1rem; }

/* ========================
   ADMISSION FORM
======================== */
.admission {
  background: linear-gradient(160deg, #FFF0E8 0%, #F0F7FF 100%);
}
.admission-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.admission-left p {
  color: var(--text-soft); line-height: 1.7;
  margin-bottom: 8px;
}
.admission-perks {
  display: flex; flex-direction: column; gap: 12px;
  margin: 24px 0;
}
.perk-item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-size: 0.95rem; font-weight: 500;
  color: var(--text-mid);
}
.perk-item i { color: var(--mint); font-size: 1.1rem; flex-shrink: 0; }

.admission-form-wrap {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-head); font-size: 0.88rem; font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-soft);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--peach);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(244,149,106,0.12);
}
.form-group input.error,
.form-group select.error { border-color: #e53e3e; }
.form-group .error-msg {
  font-size: 0.78rem; color: #e53e3e;
  margin-top: 5px; display: none;
}
.form-group.has-error .error-msg { display: block; }

.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: 12px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
}
.form-success.show { display: block; }
.success-icon { font-size: 4rem; margin-bottom: 16px; }
.form-success h3 {
  font-family: var(--font-head); font-size: 1.8rem;
  color: var(--text-dark); margin-bottom: 8px;
}
.form-success p {
  color: var(--text-soft); line-height: 1.6;
}

/* ========================
   CONTACT
======================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: start;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--peach-lt);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--peach); font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 600;
  color: var(--text-soft); text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 4px;
}
.contact-item span,
.contact-item a {
  font-size: 0.95rem; color: var(--text-dark); line-height: 1.5;
}
.contact-item a:hover { color: var(--peach); }

.contact-socials {
  display: flex; gap: 12px; margin-top: 8px;
}
.contact-socials a {
  width: 44px; height: 44px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid);
  font-size: 1rem;
  transition: var(--transition);
}
.contact-socials a:hover {
  background: var(--peach);
  color: #fff;
  border-color: var(--peach);
  transform: translateY(-2px);
}

/* ========================
   FOOTER
======================== */
.footer { background: #1a1f2e; color: rgba(255,255,255,0.7); }
.footer-top { padding: 64px 0 48px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px;
}
.footer-brand p {
  font-size: 0.88rem; line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-top: 16px; max-width: 260px;
}
.footer-links h5,
.footer-contact h5 {
  font-family: var(--font-head); font-size: 1rem; font-weight: 600;
  color: #fff; margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  padding: 5px 0;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--peach); padding-left: 4px; }
.footer-contact p {
  font-size: 0.88rem;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.55);
}
.footer-contact i { color: var(--peach); font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ========================
   FLOATING BUTTONS
======================== */
.whatsapp-float,
.book-float {
  position: fixed;
  right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  z-index: 900;
  text-decoration: none;
}
.whatsapp-float {
  bottom: 100px;
  background: linear-gradient(135deg, #25D366, #1ebe59);
}
.book-float {
  bottom: 32px;
  background: linear-gradient(135deg, var(--peach), #f07b47);
}
.whatsapp-float:hover,
.book-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.float-tooltip {
  position: absolute;
  right: 64px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .float-tooltip,
.book-float:hover .float-tooltip { opacity: 1; }

.back-top {
  position: fixed; right: 24px; bottom: 180px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  opacity: 0; pointer-events: none;
  z-index: 890;
}
.back-top.show {
  opacity: 1; pointer-events: auto;
}
.back-top:hover {
  background: var(--peach); color: #fff;
  border-color: var(--peach);
  transform: translateY(-2px);
}

/* ========================
   AOS-LIKE ANIMATIONS
======================== */
[data-aos] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-up"] { transform: translateY(32px); }
[data-aos="fade-down"] { transform: translateY(-32px); }
[data-aos="fade-left"] { transform: translateX(32px); }
[data-aos="fade-right"] { transform: translateX(-32px); }
[data-aos="zoom-in"] { transform: scale(0.9); }

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* ========================
   KEYFRAMES
======================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 360px; }
  .programs-grid { grid-template-columns: 1fr 1fr; }
  .facilities-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section-padding { padding: 64px 0; }

  /* Nav */
  .nav-links {
    position: fixed; inset: 0; top: 72px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.3rem; padding: 14px 24px; }
  .hamburger { display: flex; }
  .nav-actions .btn-primary { display: none; }

  /* Hero */
  .hero-container { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-img { height: 280px; }
  .bubble-1, .bubble-2, .bubble-3 { display: none; }
  .hero-sub { margin: 0 auto 36px; }

  /* Stats */
  .stats-container { justify-content: center; gap: 32px; }
  .stat-divider { display: none; }

  /* Programs */
  .programs-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  /* Facilities */
  .facilities-grid { grid-template-columns: 1fr 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-tall { grid-row: span 1; }
  .gallery-tall img { min-height: auto; height: 200px; }
  .gallery-wide { grid-column: span 2; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 48px; }

  /* Admission */
  .admission-wrap { grid-template-columns: 1fr; gap: 40px; }
  .admission-form-wrap { padding: 32px 28px; }
  .form-row { grid-template-columns: 1fr; }

  /* About images */
  .about-images { height: 280px; }
  .about-badge-float { display: none; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

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

@media (max-width: 480px) {
  .facilities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-wide { grid-column: span 1; }
  .gallery-tall { grid-row: span 1; }
  .trust-badges { flex-direction: column; align-items: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .admission-form-wrap { padding: 24px 20px; }
}
