/**
 * Mother's Lap Kids Play School - Ultra-Premium Luxury Preschool Stylesheet
 * Aesthetic: Warm Ivory, Rich Terracotta-Coral, Dusty Rose, Champagne Gold, Deep Slate Navy
 * Design Language: International Montessori / High-end Boutique School
 */

:root {
  /* Warm Premium Ivory & Cream Canvas */
  --bg-page: #FAF6F0;
  --bg-surface: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-subtle: #F5EFE6;
  --bg-warm-tint: #FFF9F5;
  --bg-ivory-light: #FFFDF9;

  /* Rich Terracotta / Dusty Rose / Coral Palette */
  --coral-50: #FFF5F2;
  --coral-100: #FFE9E3;
  --coral-200: #FFD4C8;
  --coral-300: #FBAFA0;
  --coral-400: #F38573;
  --coral-500: #E26350;     /* Primary Core */
  --coral-600: #CC4E3C;     /* Primary Dark */
  --coral-700: #A83B2B;     /* Deep Terracotta */
  --coral-800: #883124;

  /* Luxury Accents: Champagne Gold & Soft Forest Sage */
  --gold-100: #FEF8E7;
  --gold-300: #FDE29D;
  --gold-500: #E5A93C;     /* Warm Gold Accent */
  --gold-600: #C48722;
  
  --sage-100: #EDF7F1;
  --sage-500: #3E8E68;
  
  --sky-100: #EBF4FC;
  --sky-500: #3B82C4;

  /* Sophisticated Typography Colors (Deep Navy Slate) */
  --text-primary: #19232D;
  --text-secondary: #475467;
  --text-muted: #718096;
  --text-light: #A0AEC0;

  /* Refined Borders */
  --border-light: rgba(226, 99, 80, 0.12);
  --border-subtle: rgba(0, 0, 0, 0.06);
  --border-card: rgba(245, 239, 230, 0.9);

  /* Layered Luxury Shadows (Never harsh, velvety diffusion) */
  --shadow-subtle: 0 4px 12px rgba(25, 35, 45, 0.03);
  --shadow-card: 0 12px 32px -4px rgba(25, 35, 45, 0.05), 0 4px 12px -2px rgba(226, 99, 80, 0.04);
  --shadow-float: 0 20px 48px -8px rgba(25, 35, 45, 0.08), 0 8px 20px -4px rgba(226, 99, 80, 0.06);
  --shadow-glow: 0 12px 28px -4px rgba(204, 78, 60, 0.35);

  /* Organic Radius */
  --radius-xs: 8px;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 9999px;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-hindi-display: 'Noto Serif Devanagari', 'Fraunces', serif;
  --font-hindi-body: 'Noto Sans Devanagari', 'Plus Jakarta Sans', sans-serif;

  /* Layout */
  --nav-height: 88px;
  --max-width: 1220px;
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 16px);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: 
    radial-gradient(circle at 15% 10%, rgba(226, 99, 80, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(229, 169, 60, 0.04) 0%, transparent 40%);
}

body.lang-hi {
  font-family: var(--font-hindi-body);
}

body.lang-hi h1, 
body.lang-hi h2, 
body.lang-hi h3, 
body.lang-hi .brand-title,
body.lang-hi .section-title {
  font-family: var(--font-hindi-display);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}

/* Background Ambient Glow Blobs */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.glow-coral-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(243, 133, 115, 0.22) 0%, rgba(255, 233, 227, 0) 70%);
  top: -100px;
  left: -120px;
}

.glow-gold-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(253, 226, 157, 0.3) 0%, rgba(254, 248, 231, 0) 70%);
  top: 150px;
  right: -80px;
}

.glow-coral-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(226, 99, 80, 0.12) 0%, transparent 70%);
  bottom: 50px;
  left: 20%;
}

/* Typography & Section Headers */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: var(--coral-700);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  margin-bottom: 18px;
}

.section-tag svg {
  color: var(--coral-500);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3.1rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.22;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--coral-500);
  font-weight: 600;
}

.section-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  color: var(--text-secondary);
  max-width: 660px;
  line-height: 1.7;
  margin-bottom: 50px;
}

.text-center {
  text-align: center;
}
.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral-500) 0%, var(--coral-600) 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 24px -4px rgba(204, 78, 60, 0.38), 0 2px 6px rgba(0, 0, 0, 0.04);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--coral-400) 0%, var(--coral-700) 100%);
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 14px 32px -4px rgba(204, 78, 60, 0.48);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  border: 1.5px solid rgba(226, 99, 80, 0.22);
  box-shadow: var(--shadow-subtle);
}

.btn-outline:hover {
  background: #FFFFFF;
  border-color: var(--coral-500);
  color: var(--coral-600);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.88rem;
}

/* ========================================================= */
/* HEADER & STICKY GLASSMORPHISM NAVBAR                      */
/* ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 99, 80, 0.08);
  transition: all 0.35s ease;
}

.site-header .container {
  max-width: 100%;
  padding-left: clamp(20px, 3.5vw, 48px);
  padding-right: clamp(20px, 3.5vw, 48px);
}

.site-header.scrolled {
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 10px 30px -10px rgba(25, 35, 45, 0.06);
  border-bottom-color: rgba(226, 99, 80, 0.15);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  width: 100%;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-logo-frame {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, var(--gold-300), var(--coral-400));
  box-shadow: 0 4px 14px rgba(226, 99, 80, 0.18);
  flex-shrink: 0;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #FFFFFF;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--coral-600);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Navbar Right Group (Nav Menu + Actions) */
.navbar-right-group {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 24px);
  flex-shrink: 0;
}

/* Nav Menu Items */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  background: rgba(255, 255, 255, 0.75);
  padding: 5px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(226, 99, 80, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.nav-item .nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: all 0.25s ease;
}

.nav-item .nav-link:hover {
  color: var(--coral-600);
  background: rgba(226, 99, 80, 0.08);
}

.nav-item .nav-link.active {
  color: #FFFFFF;
  background: var(--coral-500);
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(226, 99, 80, 0.3);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--shadow-subtle);
  transition: all 0.25s ease;
}

.lang-toggle-btn:hover {
  border-color: var(--coral-400);
  background: var(--coral-50);
  color: var(--coral-600);
  transform: translateY(-1px);
}

.nav-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--coral-50);
  color: var(--coral-700);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  border: 1.5px solid var(--border-light);
  white-space: nowrap;
  box-shadow: var(--shadow-subtle);
  transition: all 0.25s ease;
}

.nav-call-btn:hover {
  background: var(--coral-500);
  color: #FFFFFF;
  border-color: var(--coral-500);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 11px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 100%;
  height: 2.2px;
  background: var(--text-primary);
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* ========================================================= */
/* HERO SECTION                                              */
/* ========================================================= */
.hero-section {
  position: relative;
  padding: 70px 0 100px;
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  color: var(--coral-700);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(226, 99, 80, 0.18);
  box-shadow: 0 4px 16px rgba(226, 99, 80, 0.08);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral-500);
  box-shadow: 0 0 0 3px rgba(226, 99, 80, 0.2);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.2vw, 3.85rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.12;
  letter-spacing: -1.2px;
  margin-bottom: 22px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--coral-600) 0%, var(--gold-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 44px;
}

.hero-features-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(226, 99, 80, 0.12);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-feature-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--coral-50);
  color: var(--coral-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Hero Visual Box with Luxury Layering */
.hero-visual-wrapper {
  position: relative;
}

.hero-visual-backdrop-shape {
  position: absolute;
  inset: -12px -12px 20px 20px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(253, 226, 157, 0.6) 0%, rgba(243, 133, 115, 0.35) 100%);
  transform: rotate(2deg);
  z-index: 1;
}

.hero-visual-card {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 1px solid rgba(226, 99, 80, 0.08);
}

.hero-floating-card {
  position: absolute;
  bottom: -22px;
  left: 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  padding: 14px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid rgba(226, 99, 80, 0.16);
  z-index: 3;
}

.hero-floating-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral-100), var(--coral-50));
  color: var(--coral-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-floating-text h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.hero-floating-text p {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--coral-600);
}

/* ========================================================= */
/* STATS STRIP                                               */
/* ========================================================= */
.stats-strip {
  position: relative;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 40px 0;
  box-shadow: var(--shadow-subtle);
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-box {
  text-align: center;
  position: relative;
}

.stat-box:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(226, 99, 80, 0.18), transparent);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--coral-600);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ========================================================= */
/* SECTION PADDING & WAVY DIVIDERS                           */
/* ========================================================= */
.py-section {
  padding: 120px 0;
  position: relative;
}

.curve-divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.curve-divider svg {
  display: block;
  width: 100%;
  height: 50px;
}

.curve-divider-top {
  top: -1px;
}

.curve-divider-bottom {
  bottom: -1px;
}

/* ========================================================= */
/* ABOUT US SECTION                                          */
/* ========================================================= */
.about-section {
  background: var(--bg-warm-tint);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: start;
}

.about-story-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 46px 42px;
  border: 1px solid rgba(226, 99, 80, 0.1);
  box-shadow: var(--shadow-card);
  position: relative;
}

.about-story-card::before {
  content: '“';
  position: absolute;
  top: 20px;
  right: 32px;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--coral-100);
  line-height: 1;
  pointer-events: none;
}

.about-story-text p {
  margin-bottom: 22px;
  font-size: 1.06rem;
  color: var(--text-secondary);
  line-height: 1.82;
}

.about-story-text p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--coral-700);
  border-left: 3px solid var(--coral-500);
  padding-left: 18px;
}

/* 4 Essentials Cards */
.school-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.info-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(226, 99, 80, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--coral-400);
  box-shadow: var(--shadow-card);
}

.info-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--coral-50), var(--gold-100));
  color: var(--coral-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.info-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.info-card-val {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}

/* Core Values Stack */
.core-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.value-item {
  display: flex;
  gap: 18px;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid rgba(226, 99, 80, 0.1);
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--coral-50);
  color: var(--coral-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-content h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.value-content p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================================= */
/* FACILITIES SECTION                                        */
/* ========================================================= */
.facilities-section {
  background: #FFFFFF;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.facility-card {
  background: var(--bg-warm-tint);
  border-radius: var(--radius-xl);
  padding: 34px 28px;
  border: 1.5px solid rgba(226, 99, 80, 0.08);
  box-shadow: var(--shadow-subtle);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.facility-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral-400), var(--gold-500));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-8px);
  background: #FFFFFF;
  border-color: rgba(226, 99, 80, 0.22);
  box-shadow: var(--shadow-float);
}

.facility-card:hover::before {
  opacity: 1;
}

.facility-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  color: var(--coral-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(226, 99, 80, 0.12);
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s ease;
}

.facility-card:hover .facility-icon-wrap {
  background: linear-gradient(135deg, var(--coral-500), var(--coral-600));
  color: #FFFFFF;
  transform: scale(1.08) rotate(4deg);
  box-shadow: var(--shadow-glow);
}

.facility-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.facility-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ========================================================= */
/* GALLERY SECTION                                           */
/* ========================================================= */
.gallery-section {
  background: var(--bg-page);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}

.gallery-filter-btn {
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  border: 1.5px solid rgba(226, 99, 80, 0.14);
  color: var(--text-secondary);
  cursor: pointer;
  box-shadow: var(--shadow-subtle);
  transition: all 0.25s ease;
}

.gallery-filter-btn:hover {
  border-color: var(--coral-400);
  color: var(--coral-600);
  background: var(--coral-50);
}

.gallery-filter-btn.active {
  background: linear-gradient(135deg, var(--coral-500), var(--coral-600));
  color: #FFFFFF;
  border-color: var(--coral-600);
  box-shadow: 0 6px 18px rgba(204, 78, 60, 0.35);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(226, 99, 80, 0.1);
  box-shadow: var(--shadow-card);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 10px;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
  border-color: rgba(226, 99, 80, 0.3);
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25, 35, 45, 0.88) 0%, rgba(25, 35, 45, 0.2) 60%, rgba(25, 35, 45, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.gallery-badge {
  align-self: flex-start;
  font-size: 0.76rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--coral-700);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.gallery-view-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--coral-600);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.gallery-card:hover .gallery-view-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-info {
  color: #FFFFFF;
}

.gallery-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.gallery-card-desc {
  font-size: 0.86rem;
  opacity: 0.92;
  line-height: 1.45;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 23, 33, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-container {
  position: relative;
  max-width: 960px;
  width: 100%;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
}

.lightbox-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.lightbox-close-btn:hover {
  background: var(--coral-500);
  transform: rotate(90deg);
}

.lightbox-img-wrapper {
  position: relative;
  background: #111822;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 580px;
}

.lightbox-img-wrapper img {
  max-height: 580px;
  width: 100%;
  object-fit: contain;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.lightbox-nav-btn:hover {
  background: var(--coral-500);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev-btn { left: 18px; }
.lightbox-next-btn { right: 18px; }

.lightbox-caption-area {
  padding: 22px 28px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
}

.lightbox-details h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.lightbox-details p {
  font-size: 0.94rem;
  color: var(--text-secondary);
}

.lightbox-counter {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--coral-700);
  background: var(--coral-50);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
}

/* ========================================================= */
/* FEEDBACK & ADMISSION ENQUIRY FORM                         */
/* ========================================================= */
.feedback-section {
  background: var(--bg-warm-tint);
  position: relative;
}

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

.feedback-form-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 50px 48px;
  border: 1px solid rgba(226, 99, 80, 0.12);
  box-shadow: var(--shadow-float);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(226, 99, 80, 0.14);
  background: var(--bg-page);
  color: var(--text-primary);
  outline: none;
  font-size: 0.98rem;
  transition: all 0.25s ease;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  background: #FFFFFF;
  border-color: var(--coral-500);
  box-shadow: 0 0 0 4px rgba(226, 99, 80, 0.12);
}

.form-input.input-error, .form-textarea.input-error {
  border-color: #E53E3E;
  background: #FFF5F5;
}

.field-error-msg {
  color: #C53030;
  font-size: 0.84rem;
  font-weight: 600;
  display: none;
}

.hp-field {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

.form-footer-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.form-security-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Success Card */
.form-success-card {
  display: none;
  text-align: center;
  padding: 60px 32px;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(226, 99, 80, 0.14);
  box-shadow: var(--shadow-float);
}

.success-icon-wrap {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(62, 142, 104, 0.25);
}

.form-success-card h3 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.form-success-card p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ========================================================= */
/* CONTACT & MAP SECTION                                     */
/* ========================================================= */
.contact-section {
  background: #FFFFFF;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
}

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-warm-tint);
  border: 1.5px solid rgba(226, 99, 80, 0.08);
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: #FFFFFF;
  border-color: var(--coral-400);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  color: var(--coral-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(226, 99, 80, 0.1);
}

.contact-card-info h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.contact-card-info p, .contact-card-info a {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-card-info a:hover {
  color: var(--coral-600);
}

.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(226, 99, 80, 0.12);
  box-shadow: var(--shadow-card);
  height: 100%;
  min-height: 440px;
}

.map-iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
}

/* ========================================================= */
/* FOOTER (SOPHISTICATED CHARCOAL-SLATE)                     */
/* ========================================================= */
.site-footer {
  background: #151D26;
  color: #E2E8F0;
  padding: 80px 0 35px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo-frame {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, var(--gold-300), var(--coral-400));
}

.footer-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.footer-school-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
}

.footer-tagline-quote {
  font-size: 0.92rem;
  color: var(--coral-300);
  font-style: italic;
}

.footer-desc {
  font-size: 0.94rem;
  color: #94A3B8;
  line-height: 1.7;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2.5px;
  background: var(--coral-500);
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 0.94rem;
  color: #CBD5E1;
  transition: all 0.2s ease;
}

.footer-links-list a:hover {
  color: var(--coral-300);
  transform: translateX(4px);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.92rem;
  color: #CBD5E1;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
}

.footer-social-links {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.social-btn:hover {
  background: var(--coral-500);
  transform: translateY(-3px);
  border-color: var(--coral-500);
  box-shadow: 0 6px 16px rgba(226, 99, 80, 0.4);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #94A3B8;
}

/* ========================================================= */
/* WELCOME LANGUAGE MODAL                                    */
/* ========================================================= */
.lang-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(21, 29, 38, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.lang-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.lang-modal-box {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 540px;
  width: 100%;
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(226, 99, 80, 0.15);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-modal-backdrop.active .lang-modal-box {
  transform: scale(1);
}

.lang-modal-logo {
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--gold-300), var(--coral-400));
}

.lang-modal-box h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.lang-modal-box p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.lang-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lang-choice-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(226, 99, 80, 0.14);
  background: var(--bg-warm-tint);
  cursor: pointer;
  transition: all 0.25s ease;
}

.lang-choice-card:hover {
  border-color: var(--coral-500);
  background: #FFFFFF;
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.lang-flag-symbol {
  font-size: 2rem;
  margin-bottom: 8px;
}

.lang-choice-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.lang-choice-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ========================================================= */
/* RESPONSIVE MEDIA QUERIES                                  */
/* ========================================================= */
@media (max-width: 1024px) {
  :root {
    --nav-height: 76px;
  }

  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero-visual-wrapper {
    max-width: 540px;
    margin: 0 auto;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 24px;
    gap: 12px;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    border-bottom: 2px solid rgba(226, 99, 80, 0.15);
    box-shadow: var(--shadow-float);
    display: none;
  }

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

  .nav-item {
    width: 100%;
  }

  .nav-item .nav-link {
    display: block;
    width: 100%;
    padding: 12px 20px;
    text-align: center;
  }

  .nav-call-btn {
    display: none;
  }
}

@media (max-width: 768px) {

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-box:nth-child(2)::after {
    display: none;
  }

  .school-info-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .facilities-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-features-strip {
    grid-template-columns: 1fr;
  }
  .lang-options-grid {
    grid-template-columns: 1fr;
  }
  .feedback-form-card {
    padding: 30px 20px;
  }
  .hero-floating-card {
    position: static;
    margin-top: 16px;
    border-radius: var(--radius-md);
  }
}
