/* ============================================================
   STEM Child Care Academy — Custom Design System
   Brand: Navy Blue + Teal + Orange
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --navy:        #1e3a6e;
  --navy-dark:   #0f1f3d;
  --navy-light:  #2a4d8f;
  --teal:        #0d9488;
  --teal-light:  #14b8a6;
  --teal-dark:   #0a7a6f;
  --accent:      #ea580c;
  --accent-light:#fb923c;
  --accent-dark: #c2410c;
  --gold:        #f59e0b;
  --dark:        #0f172a;
  --gray:        #64748b;
  --gray-light:  #94a3b8;
  --light:       #f8fafc;
  --white:       #ffffff;
  --border:      #e2e8f0;
  --shadow:      0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-md:   0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-lg:   0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
  --radius:      0.75rem;
  --radius-lg:   1.25rem;
  --transition:  all 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; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.25;
  font-weight: 700;
}

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

/* ── Layout Utilities ───────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

/* ── Colors ─────────────────────────────────────────────────── */
.text-navy   { color: var(--navy); }
.text-teal   { color: var(--teal); }
.text-accent { color: var(--accent); }
.text-gold   { color: var(--gold); }
.text-gray   { color: var(--gray); }
.text-muted  { color: var(--gray-light); }

.bg-navy   { background-color: var(--navy); }
.bg-teal   { background-color: var(--teal); }
.bg-accent { background-color: var(--accent); }
.bg-light  { background-color: var(--light); }
.bg-dark   { background-color: var(--dark); }

/* ── Gradient Backgrounds ───────────────────────────────────── */
.gradient-navy {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
}
.gradient-teal {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-light) 100%);
}
.gradient-accent {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
}
.gradient-hero {
  background: linear-gradient(135deg, #0a1628 0%, var(--navy) 40%, #0d5a52 100%);
}
.gradient-hero-2 {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1a4060 50%, var(--teal-dark) 100%);
}

/* ── Typography ─────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 640px;
  line-height: 1.7;
}

.section-subtitle.light { color: rgba(255,255,255,0.75); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30,58,110,0.35);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13,148,136,0.35);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(234,88,12,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

/* ── Navigation ─────────────────────────────────────────────── */
#topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
}

#topbar a:hover { color: var(--teal-light); }

#navbar {
  background: var(--white);
  transition: var(--transition);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

#navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nav-logo-text .school-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.1;
}

.nav-logo-text .school-tagline {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: white;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  display: block;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 200;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: 0.375rem;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--light);
  color: var(--navy);
  padding-left: 1.125rem;
}

.dropdown-item .item-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
}

/* Mobile Nav */
#mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  max-height: 85vh;
  overflow-y: auto;
}

#mobile-menu.open { display: block; }

.mobile-nav-link {
  display: block;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-nav-link:hover { color: var(--navy); background: var(--light); }

.mobile-dropdown-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--dark);
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-dropdown-btn:hover { background: var(--light); color: var(--navy); }
.mobile-dropdown-btn .chevron { transition: var(--transition); }
.mobile-dropdown-btn.open .chevron { transform: rotate(180deg); }

.mobile-dropdown-content {
  display: none;
  background: var(--light);
}

.mobile-dropdown-content.open { display: block; }

.mobile-dropdown-content a {
  display: block;
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-dropdown-content a:hover { color: var(--navy); padding-left: 2.5rem; }

/* ── Hero Section ───────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.95) 0%, rgba(30,58,110,0.85) 50%, rgba(13,90,82,0.75) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(13,148,136,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(30,58,110,0.2) 0%, transparent 40%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(13,148,136,0.2);
  border: 1px solid rgba(13,148,136,0.4);
  color: var(--teal-light);
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-title .highlight {
  color: var(--teal-light);
  position: relative;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.breadcrumb a { color: var(--teal-light); }
.breadcrumb a:hover { color: var(--white); }

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
}

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

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

/* Program Cards */
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.program-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--teal);
}

.program-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.program-badge-overlay {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.program-card-header {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.program-card-body { padding: 1.5rem; }

.program-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.program-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.program-card-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* Stat Cards */
.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-number.light { color: var(--white); }

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
}

.stat-label.light { color: rgba(255,255,255,0.75); }

/* Feature Cards */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid transparent;
}

.feature-card:hover {
  border-left-color: var(--teal);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

/* ── About Image Slider ─────────────────────────────────────── */
.about-slider { position: relative; }

.about-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 0;
}

.about-slide.active { opacity: 1; }

.about-slider-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.about-visual-inner { position: relative; z-index: 2; }

/* ── Byword Cards ───────────────────────────────────────────── */
.byword-card { padding: 2rem 1rem; }

.byword-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.byword-card:hover .byword-circle {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.byword-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

/* ── News Cards ─────────────────────────────────────────────── */
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.news-card-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.news-card-body { padding: 1.5rem; }

.news-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(13,148,136,0.1);
  color: var(--teal);
  margin-bottom: 0.75rem;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--teal);
  opacity: 0.25;
  line-height: 1;
}

.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.9375rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
}

/* ── Badges ──────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

.badge-navy  { background: rgba(30,58,110,0.1); color: var(--navy); }
.badge-teal  { background: rgba(13,148,136,0.1); color: var(--teal); }
.badge-accent{ background: rgba(234,88,12,0.1); color: var(--accent); }
.badge-gold  { background: rgba(245,158,11,0.1); color: #b45309; }
.badge-green { background: rgba(34,197,94,0.1); color: #15803d; }

/* ── Timeline ───────────────────────────────────────────────── */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-item { position: relative; margin-bottom: 3rem; }
.timeline-dot {
  width: 16px;
  height: 16px;
  background: var(--teal);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 1rem;
  transform: translateX(-50%);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--teal);
  z-index: 1;
}

/* ── STEM Program Highlight ─────────────────────────────────── */
.stem-course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stem-course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
}

.stem-course-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--teal);
}

/* ── Grid Helpers ───────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }

/* ── Form Styles ─────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.15);
}

.form-control::placeholder { color: var(--gray-light); }

textarea.form-control { resize: vertical; min-height: 120px; }

select.form-control { cursor: pointer; }

.form-hint {
  font-size: 0.8125rem;
  color: var(--gray-light);
  margin-top: 0.375rem;
}

.form-error {
  font-size: 0.8125rem;
  color: #dc2626;
  margin-top: 0.375rem;
  display: none;
}

.form-control.error { border-color: #dc2626; }
.form-control.error + .form-error { display: block; }

/* ── Alert / Banner ─────────────────────────────────────────── */
.alert {
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.alert-info    { background: rgba(13,148,136,0.1); border-left: 4px solid var(--teal); color: var(--teal-dark); }
.alert-warning { background: rgba(245,158,11,0.1); border-left: 4px solid var(--gold); color: #92400e; }
.alert-success { background: rgba(34,197,94,0.1);  border-left: 4px solid #22c55e; color: #15803d; }
.alert-error   { background: rgba(220,38,38,0.1);  border-left: 4px solid #dc2626; color: #991b1b; }

/* ── Accordion ───────────────────────────────────────────────── */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: var(--transition);
}

.accordion-header:hover { background: var(--light); color: var(--navy); }
.accordion-header .acc-icon { transition: var(--transition); flex-shrink: 0; }
.accordion-header.open .acc-icon { transform: rotate(45deg); }

.accordion-body {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.accordion-body.open {
  padding: 0.75rem 1.5rem 1.25rem;
  max-height: 600px;
}

/* ── Gallery ─────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,58,110,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

/* ── Table Styles ───────────────────────────────────────────── */
.table-container {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.data-table thead th {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.data-table tbody td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.data-table tbody tr:hover { background: var(--light); }
.data-table tbody tr:last-child td { border-bottom: none; }

/* Status pills */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.status-pending  { background: rgba(245,158,11,0.12); color: #b45309; }
.status-approved { background: rgba(34,197,94,0.12); color: #15803d; }
.status-rejected { background: rgba(220,38,38,0.12); color: #991b1b; }
.status-paid     { background: rgba(13,148,136,0.12); color: var(--teal-dark); }
.status-unpaid   { background: rgba(234,88,12,0.12); color: var(--accent-dark); }
.status-partial  { background: rgba(99,102,241,0.12); color: #4338ca; }

/* ── Admin Sidebar Layout ───────────────────────────────────── */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: var(--navy-dark);
  color: var(--white);
  transition: var(--transition);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 50;
}

.admin-sidebar.collapsed { width: 70px; }

.admin-main {
  margin-left: 260px;
  flex: 1;
  background: #f1f5f9;
  transition: var(--transition);
  min-height: 100vh;
}

.admin-main.expanded { margin-left: 70px; }

.admin-topbar {
  background: var(--white);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 30;
}

.admin-content { padding: 1.5rem; }

/* Sidebar nav */
.sidebar-logo {
  padding: 1.25rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-section {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-section-title {
  padding: 0.5rem 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  border-radius: 0 !important;
  position: relative;
}

.sidebar-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.sidebar-link.active {
  color: var(--white);
  background: rgba(13,148,136,0.25);
  border-right: 3px solid var(--teal);
}

.sidebar-link .link-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-badge {
  margin-left: auto;
  background: var(--accent);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  border-radius: 2rem;
}

/* Admin stat cards */
.admin-stat {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.admin-stat:hover { box-shadow: var(--shadow-md); }

.admin-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
}

.admin-stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.admin-stat-label { font-size: 0.875rem; color: var(--gray); font-weight: 500; }
.admin-stat-change {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ── Chart Placeholders ─────────────────────────────────────── */
.chart-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

/* ── Footer ──────────────────────────────────────────────────── */
#footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}

.footer-brand .brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--teal);
  display: inline-block;
}

.footer-link {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.footer-link:hover { color: var(--teal-light); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(13,148,136,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
  color: var(--teal-light);
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: var(--transition);
}

.social-btn:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

/* ── Utility ─────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

.divider-teal { background: linear-gradient(90deg, transparent, var(--teal), transparent); }

.rounded-pill { border-radius: 100px; }

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

.overlay-dark { background: rgba(0,0,0,0.5); }
.overlay-navy { background: rgba(30,58,110,0.75); }

.bg-pattern {
  background-image: radial-gradient(circle, rgba(13,148,136,0.07) 1px, transparent 1px);
  background-size: 30px 30px;
}

.bg-dots {
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1.5px, transparent 1.5px);
  background-size: 25px 25px;
}

/* ── Step Indicators ────────────────────────────────────────── */
.steps { display: flex; gap: 0; flex-wrap: wrap; }

.step-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

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

.animate-fade-up { animation: fadeInUp 0.6s ease forwards; }
.animate-fade    { animation: fadeIn 0.5s ease forwards; }
.animate-float   { animation: float 3s ease-in-out infinite; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Multi-step Form Progress ───────────────────────────────── */
.progress-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.progress-step {
  display: flex;
  align-items: center;
  flex: 1;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--gray);
  flex-shrink: 0;
  transition: var(--transition);
}

.step-circle.active {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}

.step-circle.done {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  transition: var(--transition);
}

.step-line.done { background: var(--navy); }

.step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
  margin-top: 0.375rem;
  text-align: center;
  white-space: nowrap;
}

.step-label.active { color: var(--teal); }
.step-label.done   { color: var(--navy); }

/* ── Bootstrap override — keep our wider container ──────────── */
.container, .container-sm, .container-md, .container-lg, .container-xl {
  max-width: 1280px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ── Nav helpers ─────────────────────────────────────────────── */
.nav-inner   { height: 72px; }
.nav-arrow   { font-size: 0.75rem; }
.nav-dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.btn-mobile-menu {
  padding: 0.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

/* ── Hero sizes ──────────────────────────────────────────────── */
.hero-full    { min-height: 92vh; }
.hero-medium  { min-height: 70vh; }

.hero-stat    { flex: 1 0 auto; }
.hero-stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--teal-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-top: 0.2rem;
}

/* ── Hero visual card ────────────────────────────────────────── */
.hero-visual-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.5rem;
  padding: 2rem;
}
.hero-grid-cell {
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
}
.hero-grid-cell .cell-icon  { font-size: 2.5rem; margin-bottom: 0.5rem; }
.hero-grid-cell .cell-label { font-size: 0.8rem; font-weight: 700; }
.hero-grid-cell-teal   { background: rgba(13,148,136,0.2); border: 1px solid rgba(13,148,136,0.3); }
.hero-grid-cell-teal .cell-label   { color: var(--teal-light); }
.hero-grid-cell-accent { background: rgba(234,88,12,0.15);  border: 1px solid rgba(234,88,12,0.25); }
.hero-grid-cell-accent .cell-label { color: var(--accent-light); }
.hero-grid-cell-gold   { background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.25); }
.hero-grid-cell-gold .cell-label   { color: #fbbf24; }
.hero-grid-cell-purple { background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.25); }
.hero-grid-cell-purple .cell-label { color: #818cf8; }

.hero-widget {
  background: rgba(30,58,110,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-widget-icon {
  width: 40px;
  height: 40px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.hero-widget-text .widget-title { font-size: 0.75rem; font-weight: 700; color: white; }
.hero-widget-text .widget-sub   { font-size: 0.7rem;  color: rgba(255,255,255,0.6); }

/* ── Decorative circles ──────────────────────────────────────── */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.deco-teal   { background: radial-gradient(circle, rgba(13,148,136,0.12), transparent 70%); }
.deco-accent { background: radial-gradient(circle, rgba(234,88,12,0.08),  transparent 70%); }
.hero-banner .deco-teal   { background: radial-gradient(circle, rgba(13,148,136,0.28), transparent 70%); }
.hero-banner .deco-accent { background: radial-gradient(circle, rgba(234,88,12,0.20),  transparent 70%); }

/* ── Wave bottom ─────────────────────────────────────────────── */
.wave-bottom { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }

/* ── Section tabs (sticky inner-page nav) ────────────────────── */
.section-tabs {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 40;
  overflow-x: auto;
  white-space: nowrap;
}
.section-tab-link {
  display: inline-block;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: var(--transition);
  text-decoration: none;
}
.section-tab-link:hover,
.section-tab-link.active {
  color: var(--navy);
  border-bottom-color: var(--teal);
}

/* ── Page hero subtitle ──────────────────────────────────────── */
.page-hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.0625rem;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ── About section background ───────────────────────────────── */
.about-bg-section {
  background: #f0f4f8;
  position: relative;
}

/* ── Hero Banner — index page (Ken Burns + animated overlays) ── */
.hero-banner::before {
  content: '';
  position: absolute;
  inset: -8%;
  background: url('../images/banner.jpg') center/cover no-repeat;
  animation: heroBgZoom 24s ease-in-out infinite alternate;
  z-index: 0;
}
.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10,22,40,0.90)  0%,
    rgba(30,58,110,0.80) 45%,
    rgba(13,90,82,0.70)  100%
  );
  z-index: 1;
}
.hero-banner .hero-pattern { z-index: 2; animation: heroPulseBg 10s ease-in-out infinite; }
.hero-banner .deco-circle  { z-index: 2; animation: heroCircleFloat 8s ease-in-out infinite; }
.hero-banner .deco-circle:nth-child(3) { animation-delay: -4s; animation-duration: 11s; }
.hero-banner .hero-content { z-index: 3; }
.hero-banner .wave-bottom  { z-index: 3; }

@keyframes heroBgZoom {
  0%   { transform: scale(1)    translate(0, 0);        }
  33%  { transform: scale(1.06) translate(-1.5%, 1%);   }
  66%  { transform: scale(1.04) translate(1%, -1.5%);   }
  100% { transform: scale(1.09) translate(-0.5%, 0.5%); }
}
@keyframes heroCircleFloat {
  0%, 100% { transform: translateY(0)     scale(1);    opacity: 1;   }
  50%       { transform: translateY(-22px) scale(1.08); opacity: 0.7; }
}
@keyframes heroPulseBg {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1;   }
}

/* ── About visual ────────────────────────────────────────────── */
.about-visual {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 2rem;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-visual-inner { text-align: center; color: white; padding: 2rem; }
.about-visual-icon  { font-size: 5rem; margin-bottom: 1rem; display: block; }
.about-visual-name  { font-family: 'Poppins',sans-serif; font-size: 1.25rem; font-weight: 700; }
.about-visual-addr  { font-size: 0.875rem; opacity: 0.8; margin-top: 0.5rem; }

.curriculum-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  margin: 0.25rem;
}

/* Floating badges on about visual */
.floating-badge {
  position: absolute;
  z-index: 10;
  background: white;
  border-radius: 1rem;
  padding: 0.875rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.floating-badge-top   { top: -1rem; right: -1rem; }
.floating-badge-bot   { bottom: -1rem; left: -1rem; }
.floating-badge-icon  { font-size: 1.5rem; }
.floating-badge-title { font-size: 0.75rem; font-weight: 700; color: var(--navy); }
.floating-badge-sub   { font-size: 0.65rem; color: var(--gray); }

/* ── Feature icon wrap ───────────────────────────────────────── */
.feature-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.fi-teal   { background: rgba(13,148,136,0.1); }
.fi-navy   { background: rgba(30,58,110,0.1); }
.fi-accent { background: rgba(234,88,12,0.1); }
.fi-gold   { background: rgba(245,158,11,0.1); }
.fi-green  { background: rgba(34,197,94,0.1); }

/* ── STEM course items (dark bg) ─────────────────────────────── */
.stem-course-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 1.25rem;
}
.stem-course-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.sci-navy   { background: linear-gradient(135deg, var(--navy), var(--teal)); }
.sci-accent { background: linear-gradient(135deg, var(--accent), #f97316); }
.sci-purple { background: linear-gradient(135deg, #7c3aed, #a855f7); }

.stem-course-title { font-weight: 700; color: white; font-family: 'Poppins',sans-serif; }
.stem-course-desc  { font-size: 0.875rem; color: rgba(255,255,255,0.65); }

/* ── Schedule cards ──────────────────────────────────────────── */
.schedule-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.schedule-card-s1 { border-left: 4px solid var(--teal); }
.schedule-card-s2 { border-left: 4px solid var(--gold); }

.schedule-time {
  background: rgba(13,148,136,0.1);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-weight: 700;
  color: var(--teal);
  font-size: 0.875rem;
  display: inline-block;
}
.schedule-time-gold {
  background: rgba(245,158,11,0.1);
  color: #b45309;
}

/* ── Admissions info card ────────────────────────────────────── */
.admissions-info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.admissions-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.admissions-info-item:last-child { margin-bottom: 0; }
.admissions-info-icon { font-size: 1.25rem; line-height: 1.5; flex-shrink: 0; }

/* ── Admissions open banner ──────────────────────────────────── */
.admissions-banner {
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  padding: 1rem 0;
  text-align: center;
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
}
.admissions-banner a { color: white; text-decoration: underline; font-weight: 700; }

/* ── CTA section ─────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy), #0d4a42);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* ── Program card header backgrounds ────────────────────────── */
.pcheader-green  { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
.pcheader-blue   { background: linear-gradient(135deg, #eff6ff, #dbeafe); }
.pcheader-purple { background: linear-gradient(135deg, #faf5ff, #ede9fe); }
.pcheader-orange { background: linear-gradient(135deg, #fff7ed, #ffedd5); }
.pcheader-mint   { background: linear-gradient(135deg, #f0fdf4, #d1fae5); }
.pcheader-yellow { background: linear-gradient(135deg, #fefce8, #fef9c3); }

.program-age-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  margin-top: 0.5rem;
}
.pab-green  { color: #15803d; background: rgba(34,197,94,0.15); }
.pab-blue   { color: #1d4ed8; background: rgba(59,130,246,0.15); }
.pab-purple { color: #6d28d9; background: rgba(124,58,237,0.15); }
.pab-orange { color: #c2410c; background: rgba(234,88,12,0.15); }
.pab-green2 { color: #065f46; background: rgba(16,185,129,0.15); }
.pab-yellow { color: #713f12; background: rgba(245,158,11,0.15); }

/* ── News card img placeholder ───────────────────────────────── */
.nc-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.nc-img-navy   { background: linear-gradient(135deg, var(--navy), var(--teal)); }
.nc-img-accent { background: linear-gradient(135deg, var(--accent), #f97316); }
.nc-img-purple { background: linear-gradient(135deg, #7c3aed, #a855f7); }

/* ── Stat box (dark sections) ────────────────────────────────── */
.stat-box {
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}
.stat-box-teal   { background: rgba(13,148,136,0.15); }
.stat-box-accent { background: rgba(234,88,12,0.15); }
.stat-box-purple { background: rgba(124,58,237,0.15); }
.stat-box-gold   { background: rgba(245,158,11,0.15); }
.stat-box-value  { font-family: 'Poppins',sans-serif; font-size: 1.75rem; font-weight: 900; line-height: 1; }
.stat-box-label  { font-size: 0.75rem; color: rgba(255,255,255,0.65); margin-top: 0.25rem; }
.sbv-teal   { color: var(--teal-light); }
.sbv-accent { color: var(--accent-light); }
.sbv-purple { color: #a78bfa; }
.sbv-gold   { color: #fbbf24; }

/* ── Contact page ────────────────────────────────────────────── */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(13,148,136,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  color: var(--teal);
}
.contact-info-label { font-weight: 600; color: var(--dark); font-size: 0.9rem; margin-bottom: 0.25rem; }
.contact-info-value { color: var(--gray); font-size: 0.875rem; line-height: 1.6; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

/* ── Gallery page ────────────────────────────────────────────── */
.gallery-filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }

/* ── Tuition page ────────────────────────────────────────────── */
.tuition-package {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.tuition-package:hover  { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.tuition-package.featured { border-color: var(--teal); }
.tuition-package .featured-tag {
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--teal); color: white;
  padding: 0.25rem 1rem;
  font-size: 0.75rem; font-weight: 700;
  border-radius: 0 0 0.5rem 0.5rem;
}
.tuition-package { position: relative; }

.tuition-price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.tuition-currency { font-size: 1.5rem; font-weight: 700; color: var(--gray); vertical-align: super; }
.tuition-period   { font-size: 0.875rem; color: var(--gray); font-weight: 500; }

.tuition-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
}
.tuition-feature:last-child { border-bottom: none; }
.tuition-check { color: var(--teal); }
.tuition-cross { color: var(--gray-light); }

/* ── Toast notification ──────────────────────────────────────── */
.toast-notification {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  font-size: 0.9rem;
  font-weight: 500;
  max-width: 380px;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  animation: slideInToast 0.35s ease;
  transition: opacity 0.4s;
}
@keyframes slideInToast {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.toast-info    { background: var(--teal); }
.toast-success { background: #16a34a; }
.toast-error   { background: #dc2626; }
.toast-warning { background: #d97706; }

/* ── Lightbox ────────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 1rem;
}
.lightbox.active  { display: flex; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-img     { max-width: 100%; max-height: 90vh; border-radius: 0.5rem; display: block; }
.lb-btn           { background: none; border: none; color: white; cursor: pointer; }
.lb-close         { position: absolute; top: -2rem; right: 0; font-size: 1.5rem; }
.lb-prev          { position: absolute; left: -3rem; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lb-next          { position: absolute; right: -3rem; top: 50%; transform: translateY(-50%); font-size: 2rem; }

/* ── Footer main area ────────────────────────────────────────── */
.footer-main { background: #0f172a; padding: 4rem 0; }

/* ── Vision / Mission / Values cards ────────────────────────── */
.vmv-card  { border-radius: 1.5rem; padding: 2.5rem; color: white; text-align: center; }
.vmv-navy  { background: linear-gradient(135deg, var(--navy-dark), var(--navy-light)); }
.vmv-teal  { background: linear-gradient(135deg, var(--teal-dark), var(--teal-light)); }
.vmv-accent{ background: linear-gradient(135deg, var(--accent-dark), #f97316); }
.vmv-icon  { font-size: 3rem; margin-bottom: 1.25rem; display: block; }
.vmv-title { font-size: 1.375rem; font-weight: 800; margin-bottom: 1rem; }
.vmv-text  { opacity: 0.85; line-height: 1.75; font-size: 0.9375rem; margin: 0; }

/* ── Core value cards ────────────────────────────────────────── */
.value-card {
  text-align: center;
  padding: 1.75rem;
  background: var(--light);
  border-radius: 1.25rem;
  transition: var(--transition);
  height: 100%;
}
.value-card:hover { background: rgba(13,148,136,0.1); }
.value-icon  { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }
.value-title { font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.value-text  { font-size: 0.875rem; color: var(--gray); margin: 0; }

/* ── Milestone card ──────────────────────────────────────────── */
.milestone-card { background: linear-gradient(135deg, var(--navy), var(--teal)); border-radius: 1.5rem; padding: 2.5rem; }
.milestone-card h3 { font-weight: 700; font-size: 1.25rem; color: white; margin-bottom: 1.5rem; }
.milestone-item { display: flex; align-items: flex-start; gap: 1rem; }
.milestone-year { background: rgba(255,255,255,0.2); padding: 0.375rem 0.875rem; border-radius: 2rem; font-size: 0.8rem; font-weight: 700; flex-shrink: 0; color: white; white-space: nowrap; }
.milestone-text { font-size: 0.9rem; opacity: 0.9; line-height: 1.6; color: white; margin: 0; }

/* ── RAFBONEE banner ─────────────────────────────────────────── */
.rafbonee-banner { background: white; border-radius: 1.5rem; padding: 2rem 2.5rem; box-shadow: var(--shadow); }
.rafbonee-icon   { width: 72px; height: 72px; background: linear-gradient(135deg, var(--navy), var(--teal)); border-radius: 1rem; display: flex; align-items: center; justify-content: center; font-size: 2rem; flex-shrink: 0; }

/* ── Protection policy items ─────────────────────────────────── */
.protection-item  { display: flex; gap: 1rem; align-items: flex-start; background: white; border-radius: 1rem; padding: 1.25rem; box-shadow: var(--shadow); }
.protection-icon  { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pi-red    { background: rgba(220,38,38,0.1); }
.pi-teal   { background: rgba(13,148,136,0.1); }
.pi-navy   { background: rgba(30,58,110,0.1); }
.pi-gold   { background: rgba(245,158,11,0.1); }
.protection-title { font-weight: 700; color: var(--navy); margin-bottom: 0.375rem; font-size: 0.9375rem; }
.protection-text  { font-size: 0.875rem; color: var(--gray); margin: 0; }

/* ── Safeguard visual ────────────────────────────────────────── */
.safeguard-visual { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); border-radius: 2rem; padding: 3rem; color: white; text-align: center; }
.safeguard-contact { background: rgba(255,255,255,0.1); border-radius: 1rem; padding: 1.25rem; margin-top: 1.5rem; font-size: 0.875rem; opacity: 0.8; }

/* ── Leader / founder avatars ────────────────────────────────── */
.leader-avatar { width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 2.25rem; }
.la-navy   { background: linear-gradient(135deg, var(--navy), var(--teal)); }
.la-accent { background: linear-gradient(135deg, var(--accent), #f97316); }
.la-purple { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.la-teal   { background: linear-gradient(135deg, var(--teal), var(--teal-light)); }
.la-cyan   { background: linear-gradient(135deg, #0891b2, #06b6d4); }
.leader-name { font-weight: 700; color: var(--navy); }
.leader-role { font-size: 0.8rem; color: var(--teal); font-weight: 600; margin-bottom: 0.25rem; }
.leader-dept { font-size: 0.8rem; color: var(--gray); }

/* ── Founder cards ───────────────────────────────────────────── */
.founder-main-card { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); border-radius: 1.5rem; padding: 3rem; color: white; text-align: center; }
.founder-avatar { width: 100px; height: 100px; background: linear-gradient(135deg, var(--teal), var(--teal-light)); border-radius: 50%; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; border: 4px solid rgba(255,255,255,0.2); }
.founder-name { font-weight: 800; font-size: 1.25rem; margin-bottom: 0.25rem; }
.founder-role { opacity: 0.7; font-size: 0.875rem; margin-bottom: 1.5rem; }
.founder-co-card { background: white; border-radius: 1rem; padding: 1.5rem; margin-top: 1rem; box-shadow: var(--shadow); }
.founder-co-avatar { width: 48px; height: 48px; background: linear-gradient(135deg, var(--accent), #f97316); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.founder-attr { border-top: 1px solid var(--border); padding-top: 1.25rem; display: flex; align-items: center; gap: 1rem; margin-top: 1.75rem; }
.founder-attr-avatar { width: 52px; height: 52px; background: linear-gradient(135deg, var(--navy), var(--teal)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.quote-mark { font-size: 3rem; color: var(--teal); opacity: 0.3; line-height: 1; }

/* ── Process steps (admissions) ──────────────────────────────── */
.process-step { background: white; border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); text-align: center; border-top: 4px solid transparent; transition: var(--transition); }
.process-step:hover { border-top-color: var(--teal); transform: translateY(-4px); }
.process-step-num { width: 56px; height: 56px; background: linear-gradient(135deg, var(--navy), var(--teal)); border-radius: 50%; margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center; font-size: 1.375rem; font-weight: 900; color: white; font-family: 'Poppins', sans-serif; }
.process-step-title { font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.process-step-text  { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }

/* ── Document checklist ──────────────────────────────────────── */
.doc-list { list-style: none; padding: 0; margin: 0; }
.doc-list li { display: flex; align-items: center; gap: 0.75rem; padding: 0.625rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--gray); }
.doc-list li:last-child { border-bottom: none; }
.doc-check { color: var(--teal); font-weight: 700; }

/* ── Curriculum subject cards ────────────────────────────────── */
.subject-card { background: white; border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); border-left: 4px solid var(--teal); transition: var(--transition); }
.subject-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.subject-icon { font-size: 1.75rem; margin-bottom: 0.75rem; display: block; }
.subject-title { font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.subject-desc  { font-size: 0.875rem; color: var(--gray); line-height: 1.6; margin: 0; }

/* ── Curriculum pillar cards ─────────────────────────────────── */
.curriculum-pillar {
  border-radius: 1.5rem;
  padding: 2.5rem;
  color: white;
  height: 100%;
}
.curriculum-pillar h3 { font-family: 'Poppins', sans-serif; font-size: 1.25rem; font-weight: 800; margin-bottom: 1rem; }
.curriculum-pillar p  { opacity: 0.85; line-height: 1.75; font-size: 0.9375rem; margin-bottom: 1.25rem; }
.curriculum-pillar ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; opacity: 0.85; margin: 0; }
.cp-navy  { background: linear-gradient(135deg, #1e3a6e, #2a4d8f); }
.cp-teal  { background: linear-gradient(135deg, #0d9488, #14b8a6); }
.cp-green { background: linear-gradient(135deg, #065f46, #15803d); }

/* ── Dark panel (tech card etc.) ─────────────────────────────── */
.dark-panel {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 1.5rem;
  padding: 2.5rem;
  color: white;
}
.dark-panel-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.125rem; margin-bottom: 1.5rem; }

/* ── School program hero cards ───────────────────────────────── */
.school-hero-visual { border-radius: 2rem; padding: 3rem; color: white; text-align: center; }
.shv-green  { background: linear-gradient(135deg, #14532d, #16a34a); }
.shv-blue   { background: linear-gradient(135deg, var(--navy), #1d4ed8); }
.shv-purple { background: linear-gradient(135deg, #4c1d95, #7c3aed); }
.shv-orange { background: linear-gradient(135deg, var(--accent-dark), #ea580c); }
.school-hero-icon { font-size: 5rem; margin-bottom: 1.5rem; display: block; }
.school-hero-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.school-hero-sub   { opacity: 0.8; font-size: 0.9rem; }

/* ── Age / program badge ─────────────────────────────────────── */
.age-badge { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.375rem 1rem; border-radius: 2rem; font-size: 0.8125rem; font-weight: 700; }
.ab-green  { background: rgba(34,197,94,0.15);  color: #15803d; }
.ab-blue   { background: rgba(59,130,246,0.15); color: #1d4ed8; }
.ab-purple { background: rgba(124,58,237,0.15); color: #6d28d9; }
.ab-orange { background: rgba(234,88,12,0.15);  color: var(--accent-dark); }

/* ── Department cards ────────────────────────────────────────── */
.dept-card { background: white; border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow); border-top: 4px solid var(--teal); transition: var(--transition); }
.dept-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.dept-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.dept-title { font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.dept-ages  { font-size: 0.8rem; color: var(--teal); font-weight: 600; margin-bottom: 0.75rem; }
.dept-desc  { font-size: 0.875rem; color: var(--gray); line-height: 1.65; margin: 0; }

/* ── Info card (used on school pages) ───────────────────────── */
.info-card { background: white; border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-md); }
.info-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.info-item:last-child { margin-bottom: 0; }
.info-emoji { font-size: 1.25rem; line-height: 1.5; flex-shrink: 0; }
.info-label { font-weight: 600; color: var(--dark); font-size: 0.9rem; }
.info-value { color: var(--gray); font-size: 0.875rem; }

/* ── Inset info box (dark) ───────────────────────────────────── */
.inset-box { background: rgba(255,255,255,0.1); border-radius: 1rem; padding: 1.25rem; }
.inset-box-title { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.75rem; }
.inset-box-line  { font-size: 0.875rem; opacity: 0.8; }

/* ── Program hero page gradients ────────────────────────────── */
.page-hero-purple { background: linear-gradient(135deg, #4c1d95, #6d28d9, #1e3a6e); }
.page-hero-green  { background: linear-gradient(135deg, #065f46, #0d9488, #14b8a6); }
.page-hero-blue   { background: linear-gradient(135deg, var(--navy-dark), var(--navy), #1d4ed8); }
.page-hero-orange { background: linear-gradient(135deg, var(--accent-dark), var(--accent), #f97316); }

/* ── School page CTA sections ────────────────────────────────── */
.cta-purple { background: linear-gradient(135deg, #4c1d95, var(--navy)); padding: 4rem 0; }
.cta-green  { background: linear-gradient(135deg, #065f46, var(--teal)); padding: 4rem 0; }
.cta-blue   { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); padding: 4rem 0; }
.cta-orange { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); padding: 4rem 0; }

/* ── Page hero icon badge ─────────────────────────────────────── */
.page-hero-icon {
  background: rgba(255,255,255,0.2);
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.page-hero-sub { color: rgba(255,255,255,0.8); font-size: 0.875rem; }

/* ── Program info card (light bg) ────────────────────────────── */
.program-info-card { border-radius: 1.5rem; padding: 2.5rem; }
.pic-green  { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
.pic-blue   { background: linear-gradient(135deg, #eff6ff, #dbeafe); }
.pic-purple { background: linear-gradient(135deg, #faf5ff, #ede9fe); }
.pic-orange { background: linear-gradient(135deg, #fff7ed, #ffedd5); }

.pic-green  h3 { color: #065f46; }
.pic-blue   h3 { color: var(--navy); }
.pic-purple h3 { color: #4c1d95; }
.pic-orange h3 { color: var(--accent-dark); }

.program-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 0.9rem;
}
.program-detail-row:last-child { border-bottom: none; }
.program-detail-label { font-weight: 600; }
.program-detail-val   { font-weight: 700; }

/* ── Department card (preschool depts) ───────────────────────── */
.department-card { background: white; border-radius: 1.5rem; padding: 2.5rem; text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.department-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.dept-top-green  { border-top: 5px solid #22c55e; }
.dept-top-teal   { border-top: 5px solid var(--teal); }
.dept-top-navy   { border-top: 5px solid var(--navy); }
.dept-top-orange { border-top: 5px solid var(--accent); }
.dept-top-gold   { border-top: 5px solid #f59e0b; }
.department-icon { font-size: 3.5rem; margin-bottom: 1rem; display: block; }
.department-name { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.department-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.7; margin: 0; }

/* ── Learning style icons ────────────────────────────────────── */
.learning-style-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }

/* ── Superintendent Welcome Section ─────────────────────────── */
.superintendent-welcome { background: linear-gradient(135deg, #f0f6ff 0%, #e8f5f3 100%); }

.superintendent-photo-wrap { display: inline-block; }

.superintendent-photo {
  width: 260px;
  height: 320px;
  object-fit: cover;
  object-position: top;
  border-radius: 1.5rem;
  border: 5px solid #fff;
  box-shadow: 0 12px 40px rgba(30,58,110,0.18);
  display: block;
  margin: 0 auto 1.25rem;
}

.superintendent-name-plate {
  background: var(--navy);
  color: #fff;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  display: inline-block;
}
.superintendent-name { font-weight: 700; font-size: 1rem; letter-spacing: 0.02em; }
.superintendent-role { font-size: 0.8rem; color: var(--teal); margin-top: 0.2rem; }

.welcome-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--teal);
  position: relative;
}

.welcome-quote-icon {
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--teal);
  opacity: 0.18;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  pointer-events: none;
}

.welcome-body { position: relative; z-index: 1; }
.welcome-body p {
  color: var(--gray);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.welcome-signature {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e5e7eb;
}
.welcome-sig-name { font-weight: 700; color: var(--navy); font-size: 1rem; }
.welcome-sig-role { color: var(--gray); font-size: 0.85rem; margin-top: 0.2rem; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.mobile-open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .section-lg { padding: 4rem 0; }

  .hero { min-height: 500px; }

  .timeline::before { left: 1rem; }
  .timeline-dot { left: 1rem; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .progress-steps { flex-wrap: wrap; gap: 0.5rem; }
  .step-line { display: none; }
}

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

/* ── WhatsApp Floating Button ────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  color: #fff;
}
.whatsapp-tooltip {
  position: absolute;
  right: 66px;
  background: #1f2937;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1f2937;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}
