/* ============================================
   LITTLE BLOSSOMS PRESCHOOL - Premium Styles
   ============================================ */

/* CSS Custom Properties */
:root {
  --sky-blue: #87CEEB;
  --sky-blue-light: #B8E4F9;
  --sky-blue-dark: #5BA3C9;
  --mint-green: #98D4BB;
  --mint-green-light: #C5E8D7;
  --mint-green-dark: #6BBF99;
  --sunshine-yellow: #FFD966;
  --sunshine-yellow-light: #FFE8A3;
  --sunshine-yellow-dark: #F5C431;
  --peach: #FFB5A7;
  --peach-light: #FFD5CC;
  --peach-dark: #FF9A85;
  --white: #FFFFFF;
  --off-white: #FFF9F5;
  --cream: #FFF5EB;
  --light-gray: #F7F8FA;
  --medium-gray: #E0E4EA;
  --dark-gray: #4A4A5A;
  --text-dark: #2D2D3D;
  --text-medium: #5A5A6A;
  --text-light: #8A8A9A;
  --lavender: #C5B3E6;
  --lavender-light: #E0D4F5;
  --coral: #FF7F7F;
  --teal: #4ECDC4;
  --pink: #FFB6C1;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 40px;
  --radius-full: 50%;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --font-primary: 'Nunito', sans-serif;
  --font-display: 'Baloo 2', cursive;
  --max-width: 1280px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }
body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-normal); }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

/* Utility Classes */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(100px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes confetti {
  0% { transform: translateY(0) rotate(0); opacity: 1; }
  100% { transform: translateY(-200px) rotate(720deg); opacity: 0; }
}
@keyframes wave {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
  60% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

.animate-on-scroll { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--sky-blue-light), var(--peach-light), var(--mint-green-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-icon {
  width: 80px; height: 80px;
  animation: float 2s ease-in-out infinite;
}
.preloader-icon svg { width: 100%; height: 100%; }
.preloader-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-top: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}
.preloader-dots { display: flex; gap: 8px; margin-top: 16px; }
.preloader-dots span {
  width: 12px; height: 12px;
  border-radius: 50%;
  animation: bounceIn 1s ease-in-out infinite;
}
.preloader-dots span:nth-child(1) { background: var(--sky-blue); animation-delay: 0s; }
.preloader-dots span:nth-child(2) { background: var(--sunshine-yellow); animation-delay: 0.15s; }
.preloader-dots span:nth-child(3) { background: var(--peach); animation-delay: 0.3s; }
.preloader-dots span:nth-child(4) { background: var(--mint-green); animation-delay: 0.45s; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 9999;
  padding: 16px 0;
  transition: all var(--transition-normal);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-dark);
  font-weight: 800;
  z-index: 100;
}
.nav-logo .logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--sky-blue), var(--mint-green));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.4);
  transition: var(--transition-normal);
}
.nav-logo:hover .logo-icon { transform: rotate(10deg) scale(1.05); }
.nav-logo span { color: var(--sky-blue-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  transition: var(--transition-normal);
}
.nav-links a:hover, .nav-links a.active {
  background: var(--sky-blue-light);
  color: var(--sky-blue-dark);
}
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-normal);
}
.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-links .dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  white-space: nowrap;
}
.nav-links .dropdown-menu a:hover {
  background: var(--sky-blue-light);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--sky-blue), var(--sky-blue-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(135, 206, 235, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(135, 206, 235, 0.5);
}
.btn-secondary {
  background: var(--white);
  color: var(--sky-blue-dark);
  border: 2px solid var(--sky-blue);
}
.btn-secondary:hover {
  background: var(--sky-blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-accent {
  background: linear-gradient(135deg, var(--sunshine-yellow), var(--sunshine-yellow-dark));
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(255, 217, 102, 0.4);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 217, 102, 0.5);
}
.btn-peach {
  background: linear-gradient(135deg, var(--peach), var(--peach-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 181, 167, 0.4);
}
.btn-peach:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 181, 167, 0.5);
}
.btn-mint {
  background: linear-gradient(135deg, var(--mint-green), var(--mint-green-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(152, 212, 187, 0.4);
}
.btn-mint:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(152, 212, 187, 0.5);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--sky-blue-dark);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 100;
  padding: 8px;
}
.hamburger span {
  width: 28px; height: 3px;
  background: var(--text-dark);
  border-radius: 4px;
  transition: var(--transition-normal);
}
.navbar.scrolled .hamburger span { background: var(--text-dark); }
.navbar:not(.scrolled) .hamburger span { background: var(--text-dark); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sky-blue-light) 0%, var(--cream) 50%, var(--peach-light) 100%);
  padding-top: 80px;
}
.hero-bg-shapes {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}
.hero-shape-1 {
  width: 400px; height: 400px;
  background: var(--sunshine-yellow);
  top: -100px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero-shape-2 {
  width: 300px; height: 300px;
  background: var(--mint-green);
  bottom: -80px; left: -80px;
  animation: float 6s ease-in-out infinite 1s;
}
.hero-shape-3 {
  width: 200px; height: 200px;
  background: var(--peach);
  top: 30%; left: 10%;
  animation: float 7s ease-in-out infinite 0.5s;
}
.hero-shape-4 {
  width: 150px; height: 150px;
  background: var(--lavender);
  bottom: 20%; right: 20%;
  animation: float 9s ease-in-out infinite 2s;
}
.hero-shape-5 {
  width: 100px; height: 100px;
  background: var(--sky-blue);
  top: 60%; left: 30%;
  animation: floatSlow 10s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { animation: fadeInLeft 1s ease-out; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--sky-blue-dark);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  animation: bounceIn 1s ease-out 0.3s both;
}
.hero-badge .wave-emoji { display: inline-block; animation: wave 2.5s ease-in-out infinite; transform-origin: 70% 70%; }
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.hero-text h1 .highlight {
  position: relative;
  display: inline-block;
}
.hero-text h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 100%; height: 12px;
  background: var(--sunshine-yellow);
  opacity: 0.5;
  border-radius: 4px;
  z-index: -1;
}
.hero-text p {
  font-size: 1.15rem;
  color: var(--text-medium);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat {
  text-align: center;
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--sky-blue-dark);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-medium);
  font-weight: 600;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease-out;
}
.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
  background: var(--white);
}
.hero-image-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}
.hero-float-card-1 {
  bottom: 40px; left: -40px;
  display: flex; align-items: center; gap: 12px;
}
.hero-float-card-1 .icon {
  width: 48px; height: 48px;
  background: var(--sunshine-yellow-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.hero-float-card-1 .text strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.hero-float-card-1 .text span { font-size: 0.8rem; color: var(--text-medium); }
.hero-float-card-2 {
  top: 40px; right: -30px;
  animation-delay: 1s;
  text-align: center;
}
.hero-float-card-2 .number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--mint-green-dark);
  line-height: 1;
}
.hero-float-card-2 .label {
  font-size: 0.75rem;
  color: var(--text-medium);
  font-weight: 600;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: float 2s ease-in-out infinite;
  z-index: 5;
}
.hero-scroll-indicator span {
  font-size: 0.8rem;
  color: var(--text-medium);
  font-weight: 600;
}
.scroll-mouse {
  width: 28px; height: 44px;
  border: 2px solid var(--text-light);
  border-radius: 14px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  width: 4px; height: 8px;
  background: var(--text-light);
  border-radius: 2px;
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ============================================
   ANNOUNCEMENTS MARQUEE
   ============================================ */
.announcements-bar {
  background: linear-gradient(90deg, var(--sky-blue), var(--mint-green), var(--sunshine-yellow), var(--peach), var(--sky-blue));
  background-size: 400% 100%;
  animation: shimmer 10s linear infinite;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.marquee-content {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-content span {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   TRUSTED BY / PARTNERS
   ============================================ */
.trusted-section {
  padding: 60px 0;
  background: var(--white);
}
.trusted-section .container { text-align: center; }
.trusted-section h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 30px;
  font-weight: 700;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.trusted-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-light);
  opacity: 0.5;
  transition: var(--transition-normal);
}
.trusted-logo:hover { opacity: 1; }
.trusted-logo svg { width: 36px; height: 36px; }

/* ============================================
   ABOUT US SECTION
   ============================================ */
.about-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: var(--mint-green-light);
  border-radius: 50%;
  opacity: 0.3;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 500px;
}
.about-img-main {
  width: 70%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  z-index: 3;
}
.about-img-secondary img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-experience-badge {
  position: absolute;
  top: 20px; right: 20px;
  width: 110px; height: 110px;
  background: linear-gradient(135deg, var(--sunshine-yellow), var(--sunshine-yellow-dark));
  border-radius: var(--radius-full);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 4;
  animation: floatSlow 4s ease-in-out infinite;
}
.about-experience-badge .number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}
.about-experience-badge .text {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.2;
}
.about-content .badge {
  background: var(--mint-green-light);
  color: var(--mint-green-dark);
}
.about-content h2 { margin-bottom: 20px; }
.about-content > p {
  color: var(--text-medium);
  margin-bottom: 24px;
  font-size: 1.05rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}
.about-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.about-feature .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.about-feature h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}
.about-feature p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */
.programs-section {
  background: var(--white);
  position: relative;
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  border: 2px solid transparent;
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.program-card:hover { border-color: var(--sky-blue-light); }
.program-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.program-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.program-card:hover .program-card-image img { transform: scale(1.1); }
.program-card-age {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}
.program-card-body { padding: 24px; }
.program-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.program-card-body p {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 16px;
  line-height: 1.6;
}
.program-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.program-card-features span {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--light-gray);
  color: var(--text-medium);
}
.program-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-normal);
}
.program-card-link:hover { gap: 10px; }

/* ============================================
   CURRICULUM SECTION
   ============================================ */
.curriculum-section {
  background: linear-gradient(135deg, var(--sky-blue-light) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.curriculum-section::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 400px; height: 400px;
  background: var(--sunshine-yellow-light);
  border-radius: 50%;
  opacity: 0.3;
}
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}
.curriculum-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 36px;
  text-align: center;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.curriculum-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  transition: var(--transition-normal);
}
.curriculum-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255,255,255,0.8);
}
.curriculum-icon {
  width: 80px; height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 20px;
  transition: var(--transition-normal);
}
.curriculum-card:hover .curriculum-icon { transform: scale(1.1) rotate(5deg); }
.curriculum-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.curriculum-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ============================================
   TEACHERS SECTION
   ============================================ */
.teachers-section {
  background: var(--white);
}
.teachers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.teacher-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.teacher-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 6px;
  transition: var(--transition-normal);
}
.teacher-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.teacher-avatar {
  width: 120px; height: 120px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid transparent;
  transition: var(--transition-normal);
  position: relative;
}
.teacher-card:hover .teacher-avatar {
  border-color: var(--sky-blue);
}
.teacher-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.teacher-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}
.teacher-card .role {
  font-size: 0.85rem;
  color: var(--sky-blue-dark);
  font-weight: 600;
  margin-bottom: 12px;
}
.teacher-card p {
  font-size: 0.85rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 16px;
}
.teacher-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.teacher-socials a {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  color: var(--text-light);
  font-size: 0.85rem;
  transition: var(--transition-normal);
}
.teacher-socials a:hover {
  background: var(--sky-blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   DAILY ACTIVITIES SECTION
   ============================================ */
.activities-section {
  background: var(--off-white);
  position: relative;
}
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.activity-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--accent, var(--sky-blue));
}
.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.activity-card-number {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.activity-card-emoji {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 14px;
}
.activity-card .activity-time {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.activity-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.activity-card p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  background: var(--white);
}
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-filter button {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--light-gray);
  color: var(--text-medium);
  transition: var(--transition-normal);
}
.gallery-filter button:hover, .gallery-filter button.active {
  background: var(--sky-blue);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition-normal);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events-section {
  background: var(--off-white);
  position: relative;
}
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.event-calendar {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--sky-blue), var(--sky-blue-dark));
  color: var(--white);
}
.calendar-header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.calendar-nav {
  display: flex;
  gap: 8px;
}
.calendar-nav button {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}
.calendar-nav button:hover { background: rgba(255,255,255,0.3); }
.calendar-grid {
  padding: 20px;
}
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}
.calendar-days .day-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  padding: 8px 0;
  text-transform: uppercase;
}
.calendar-days .day {
  padding: 10px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-medium);
  cursor: pointer;
  transition: var(--transition-fast);
}
.calendar-days .day:hover { background: var(--sky-blue-light); }
.calendar-days .day.today {
  background: var(--sky-blue);
  color: var(--white);
}
.calendar-days .day.has-event {
  position: relative;
}
.calendar-days .day.has-event::after {
  content: '';
  width: 6px; height: 6px;
  background: var(--peach);
  border-radius: 50%;
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
}
.calendar-days .day.inactive { opacity: 0.3; pointer-events: none; }

.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.events-list h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.event-card {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border-left: 4px solid transparent;
}
.event-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.event-date-badge {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.event-date-badge .month {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}
.event-date-badge .day {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}
.event-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}
.event-info p {
  font-size: 0.82rem;
  color: var(--text-medium);
  line-height: 1.5;
}
.event-info .event-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 8px;
  font-weight: 600;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  background: linear-gradient(135deg, var(--peach-light) 0%, var(--cream) 50%, var(--lavender-light) 100%);
  position: relative;
  overflow: hidden;
}
.testimonials-slider {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: 33.333%;
  padding: 0 16px;
}
.testimonial-inner {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-md);
  height: 100%;
  position: relative;
  transition: var(--transition-normal);
}
.testimonial-inner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--sunshine-yellow);
  font-size: 1.1rem;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-quote {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--sky-blue-light);
  line-height: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--sky-blue-light);
}
.testimonial-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.testimonial-author-info h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
}
.testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}
.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.testimonials-controls button {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-dark);
  transition: var(--transition-normal);
}
.testimonials-controls button:hover {
  background: var(--sky-blue);
  color: var(--white);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.testimonial-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--medium-gray);
  cursor: pointer;
  transition: var(--transition-normal);
}
.testimonial-dots span.active {
  background: var(--sky-blue);
  width: 30px;
  border-radius: 5px;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
  background: var(--white);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.blog-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.blog-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.blog-card:hover .blog-card-image img { transform: scale(1.1); }
.blog-card-category {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}
.blog-card-body { padding: 24px; }
.blog-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.blog-card-meta span {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-dark);
  line-height: 1.4;
  transition: var(--transition-normal);
}
.blog-card:hover .blog-card-body h3 { color: var(--sky-blue-dark); }
.blog-card-body p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
}
.blog-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-card-author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  overflow: hidden;
}
.blog-card-author-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.blog-card-author span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}
.blog-card-link {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--sky-blue-dark);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-normal);
}
.blog-card-link:hover { gap: 8px; }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  background: var(--off-white);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.faq-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.faq-content > p {
  color: var(--text-medium);
  margin-bottom: 30px;
  font-size: 1.05rem;
}
.faq-contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-md);
}
.faq-contact-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.faq-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
}
.faq-contact-item:last-child { border-bottom: none; }
.faq-contact-item .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-contact-item span {
  font-size: 0.9rem;
  color: var(--text-medium);
}
.faq-contact-item strong {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 2px;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition-normal);
}
.faq-item.active { border-color: var(--sky-blue-light); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-normal);
  gap: 16px;
}
.faq-question:hover { color: var(--sky-blue-dark); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-normal);
  font-size: 0.8rem;
}
.faq-item.active .faq-icon {
  background: var(--sky-blue);
  color: var(--white);
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ============================================
   ADMISSIONS / ENQUIRY SECTION
   ============================================ */
.admissions-section {
  background: var(--white);
  position: relative;
}
.admissions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.admissions-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.admissions-steps h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 8px;
}
.admissions-steps > p {
  color: var(--text-medium);
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.step-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
  border-left: 4px solid transparent;
}
.step-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-left-color: var(--sky-blue);
  transform: translateX(4px);
}
.step-number {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  flex-shrink: 0;
}
.step-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.step-card p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.admission-form-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.admission-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--sky-blue), var(--mint-green), var(--sunshine-yellow), var(--peach));
}
.admission-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group label .required { color: var(--coral); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--medium-gray);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition-normal);
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 4px rgba(135, 206, 235, 0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--text-light);
}

/* ============================================
   FEE PAYMENT SECTION
   ============================================ */
.fee-section {
  background: linear-gradient(135deg, var(--sunshine-yellow-light) 0%, var(--cream) 100%);
}
.fee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.fee-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
.fee-card.featured {
  border-color: var(--sky-blue);
  transform: scale(1.05);
}
.fee-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 20px; right: -30px;
  background: var(--sky-blue);
  color: var(--white);
  padding: 4px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
}
.fee-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.fee-card.featured:hover { transform: scale(1.05) translateY(-8px); }
.fee-card-icon {
  width: 70px; height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}
.fee-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.fee-card .price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.fee-card .period {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.fee-features {
  text-align: left;
  margin-bottom: 30px;
}
.fee-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.9rem;
  color: var(--text-medium);
}
.fee-features li .check {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* ============================================
   TRANSPORT, MEALS, SAFETY SECTION
   ============================================ */
.services-section {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  transition: var(--transition-normal);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.service-icon {
  width: 90px; height: 90px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px;
  transition: var(--transition-normal);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-medium);
}
.service-features li .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--sky-blue) 0%, var(--sky-blue-dark) 50%, var(--mint-green-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before, .cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}
.cta-section::before {
  width: 500px; height: 500px;
  background: var(--white);
  top: -200px; left: -100px;
}
.cta-section::after {
  width: 400px; height: 400px;
  background: var(--white);
  bottom: -150px; right: -100px;
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 36px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-email {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 24px;
}
.cta-email a {
  color: var(--sunshine-yellow);
  text-decoration: underline;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
  padding: 80px 0;
  background: var(--off-white);
}
.newsletter-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.newsletter-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 12px;
}
.newsletter-content p {
  color: var(--text-medium);
  font-size: 1.05rem;
}
.newsletter-form {
  display: flex;
  gap: 12px;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: 2px solid var(--medium-gray);
  border-radius: 50px;
  font-size: 1rem;
  transition: var(--transition-normal);
}
.newsletter-form input:focus {
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 4px rgba(135, 206, 235, 0.15);
}

/* ============================================
   PARENT PORTAL SECTION
   ============================================ */
.portal-section {
  background: var(--white);
}
.portal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.portal-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
}
.portal-card:hover {
  background: var(--white);
  border-color: var(--sky-blue-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.portal-card-icon {
  width: 70px; height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  transition: var(--transition-normal);
}
.portal-card:hover .portal-card-icon { transform: scale(1.1) rotate(5deg); }
.portal-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.portal-card p {
  font-size: 0.82rem;
  color: var(--text-medium);
  line-height: 1.5;
}

/* ============================================
   CLASS SCHEDULE SECTION
   ============================================ */
.schedule-section {
  background: var(--off-white);
}
.schedule-table-wrapper {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
}
.schedule-table thead {
  background: linear-gradient(135deg, var(--sky-blue), var(--sky-blue-dark));
}
.schedule-table th {
  padding: 16px 20px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}
.schedule-table td {
  padding: 14px 20px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-medium);
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition-fast);
}
.schedule-table tr:hover td {
  background: var(--sky-blue-light);
}
.schedule-table td:first-child {
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
}
.schedule-activity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 8px;
}
.contact-info > p {
  color: var(--text-medium);
  font-size: 1.05rem;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-card {
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
}
.contact-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.contact-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.contact-card h4 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.contact-card p {
  font-size: 0.85rem;
  color: var(--text-medium);
  line-height: 1.5;
}
.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 200px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

.contact-form-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 24px;
}

/* ============================================
   CAREERS SECTION
   ============================================ */
.careers-section {
  background: linear-gradient(135deg, var(--mint-green-light) 0%, var(--cream) 100%);
}
.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.career-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border-top: 4px solid transparent;
}
.career-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.career-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.career-card .department {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.career-card p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 16px;
}
.career-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.career-detail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand .nav-logo span { color: var(--sky-blue); }
.footer-brand > p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-normal);
}
.footer-socials a:hover {
  background: var(--sky-blue);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-normal);
}
.footer-col ul li a:hover {
  color: var(--sky-blue);
  padding-left: 6px;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.footer-contact-item .icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  margin-top: 40px;
  font-size: 0.85rem;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}
.footer-bottom-links a:hover { color: var(--sky-blue); }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 50px; height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sky-blue), var(--sky-blue-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-normal);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(135, 206, 235, 0.5);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--white);
  z-index: 9998;
  padding: 100px 30px 30px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  border-bottom: 1px solid var(--light-gray);
}
.mobile-menu .btn {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .teachers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .fee-grid { grid-template-columns: repeat(2, 1fr); }
  .fee-card.featured { transform: none; }
  .fee-card.featured:hover { transform: translateY(-8px); }
}

@media (max-width: 992px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text p { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .hero-float-card-1 { left: 10px; }
  .hero-float-card-2 { right: 10px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-images { height: 400px; }

  .curriculum-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .admissions-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .newsletter-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px;
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portal-grid { grid-template-columns: repeat(2, 1fr); }
  .careers-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { min-width: 50%; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-text h1 { font-size: 2.2rem; }
  .hero-stats { gap: 24px; }
  .hero-visual { max-width: 400px; }

  .about-images { height: 300px; }

  .programs-grid { grid-template-columns: 1fr; }
  .curriculum-grid { grid-template-columns: 1fr; }
  .teachers-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .fee-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .portal-grid { grid-template-columns: 1fr; }
  .careers-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonial-card { min-width: 100%; }

  .newsletter-form { flex-direction: column; }

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

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

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cta-section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .btn-lg { padding: 14px 28px; font-size: 0.95rem; }
  .section-header h2 { font-size: 1.8rem; }

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

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

  .admission-form-card { padding: 24px; }
  .contact-form-card { padding: 24px; }
  .newsletter-card { padding: 24px; }
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--sky-blue); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--sky-blue-dark); }

/* Selection Color */
::selection { background: var(--sky-blue-light); color: var(--text-dark); }

/* Print Styles */
@media print {
  .navbar, .back-to-top, .preloader, .mobile-menu { display: none !important; }
  .hero { min-height: auto; padding: 20px 0; }
  * { box-shadow: none !important; }
}
