/* ==============================================================================
   Little Gems International Preschool - Warm Organic / Cultural Design Theme
   Crafted for 90+ PageSpeed score, 0 CLS, and warm cultural early learning aesthetic
   ============================================================================== */

:root {
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, Cambria, serif;
  
  --bg-white: #FFFFFF;
  --bg-warm-tint: #FFFDF9;
  --bg-warm-canvas: #FFFBF5;
  --bg-slate-50: #F8FAFC;
  --text-dark: #0F172A;
  --text-slate: #1E293B;
  --text-body: #334155;
  --text-muted: #64748B;
  
  /* Warm Organic / Cultural Theme Colors */
  --warm-orange: #F97316;
  --warm-orange-dark: #EA580C;
  --warm-orange-light: #FFF7ED;
  --warm-orange-soft: #FFEDD5;
  --warm-orange-border: #FED7AA;
  --warm-orange-glow: rgba(249, 115, 22, 0.25);
  
  --organic-green: #22C55E;
  --organic-green-dark: #16A34A;
  --organic-green-light: #F0FDF4;
  --organic-green-soft: #DCFCE7;
  --organic-green-border: #BBF7D0;
  
  --cultural-amber: #D97706;
  --cultural-amber-light: #FEF3C7;
  --cultural-amber-soft: #FDE68A;
  --cultural-amber-dark: #92400E;
  
  --calm-sky: #0284C7;
  --calm-sky-light: #E0F2FE;
  --calm-sky-dark: #0369A1;

  --border-light: #F1F5F9;
  --border-subtle: #E2E8F0;
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  --shadow-soft: 0 4px 20px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.02);
  --shadow-hover: 0 16px 36px -6px rgba(249, 115, 22, 0.12), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
  --shadow-card: 0 10px 30px -4px rgba(15, 23, 42, 0.06);
}

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

/* Image Drag & Asset Protection */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

html {
  font-family: var(--font-main);
  background-color: var(--bg-white);
  color: var(--text-body);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  color: var(--text-body);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
}

main {
  flex: 1;
  width: 100%;
  overflow-x: hidden;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.3rem, 4.5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); font-weight: 700; }
p { color: var(--text-muted); line-height: 1.7; font-size: 1.05rem; }

.font-serif {
  font-family: var(--font-serif);
}

.text-orange {
  color: var(--warm-orange);
}

.highlight-serif {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--warm-orange);
  font-weight: 600;
}

/* Sticky Navbar with Warm Blur */
.header-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(241, 245, 249, 0.9);
  transition: all 0.2s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text-dark);
}

.logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--warm-orange);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 4px 12px var(--warm-orange-glow);
  transition: transform 0.2s ease;
}

.brand-logo:hover .logo-badge {
  transform: scale(1.05);
}

.brand-title {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F172A;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.brand-title span.accent {
  color: var(--warm-orange);
  font-weight: 600;
}

.brand-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748B;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: #475569;
  transition: all 0.15s ease;
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover {
  color: var(--warm-orange);
}

.nav-link.active {
  color: var(--warm-orange-dark);
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--warm-orange);
  border-radius: 2px;
}

/* Header Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #1E293B;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  z-index: 49;
}

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

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav-links a:not(.btn) {
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1E293B;
  display: block;
  padding: 0.4rem 0;
  transition: color 0.15s ease;
}

.mobile-nav-links a:not(.btn).active {
  color: var(--warm-orange);
}

.mobile-nav-links a:not(.btn):hover {
  color: var(--warm-orange);
}

.mobile-nav-links .btn {
  display: inline-flex !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  padding: 0.8rem 1.4rem !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  border-radius: 9999px !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
}

.mobile-nav-links .btn-whatsapp {
  background: var(--organic-green) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.25) !important;
}

.mobile-nav-links .btn-primary {
  background: var(--warm-orange) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px var(--warm-orange-glow) !important;
}

.mobile-nav-links .btn-dark {
  background: #0F172A !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2) !important;
}

.mobile-nav-links .btn-outline {
  background: #F8FAFC !important;
  color: #1E293B !important;
  border: 1.5px solid #CBD5E1 !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 1.35rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid transparent;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.btn-primary {
  background: var(--warm-orange);
  color: #FFFFFF;
  box-shadow: 0 10px 20px -3px var(--warm-orange-glow), 0 4px 6px -2px rgba(249, 115, 22, 0.15);
  border-radius: 1rem;
}

.btn-primary:hover {
  background: var(--warm-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -4px rgba(249, 115, 22, 0.35);
}

.btn-whatsapp {
  background: var(--organic-green);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.25);
  border-radius: 9999px;
}

.btn-whatsapp:hover {
  background: var(--organic-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(34, 197, 94, 0.35);
}

.btn-dark {
  background: #0F172A;
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.15);
  border-radius: 9999px;
}

.btn-dark:hover {
  background: #1E293B;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.25);
}

.btn-outline {
  background: #FFFFFF;
  color: #1E293B;
  border-color: #E2E8F0;
  border-radius: 9999px;
}

.btn-outline:hover {
  background: var(--warm-orange-light);
  border-color: var(--warm-orange-border);
  color: var(--warm-orange-dark);
}

.btn-soft {
  background: var(--warm-orange-light);
  color: var(--warm-orange-dark);
  border: 1px solid var(--warm-orange-border);
  border-radius: 0.85rem;
}

.btn-soft:hover {
  background: var(--warm-orange-soft);
  color: var(--warm-orange-dark);
}

.btn-danger {
  background: #EF4444;
  color: #FFFFFF;
  border-radius: 0.75rem;
}

.btn-danger:hover {
  background: #DC2626;
}

/* Hero Section */
.hero-section {
  padding: 5rem 0 4.5rem 0;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.hero-backdrop-blob-1,
.hero-backdrop-blob-2 {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FEF3C7;
  color: #B45309;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.avatar-stack {
  display: flex;
  margin-left: 0.25rem;
}

.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  margin-left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  background: #F8FAFC;
}

.avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.avatar-circle:first-child {
  margin-left: 0;
}

/* Hero Showcase Frame */
.hero-showcase-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3.2;
  background: #F8FAFC;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  border: 8px solid #FFFFFF;
}

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

.hero-floating-card {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 1.25rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Trust Badges Grid */
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

.trust-badge-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 1.5rem;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.trust-badge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--warm-orange-border);
}

.trust-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #FFFBF5;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.trust-badge-card h4 {
  font-size: 1.1rem;
  color: #0F172A;
  margin-bottom: 0.2rem;
}

.trust-badge-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-pill {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.95rem;
  border-radius: 9999px;
  margin-bottom: 0.85rem;
}

.section-pill.amber { background: var(--cultural-amber-light); color: var(--cultural-amber-dark); }
.section-pill.coral { background: var(--warm-orange-light); color: var(--warm-orange-dark); border: 1px solid var(--warm-orange-border); }
.section-pill.mint { background: var(--organic-green-soft); color: var(--organic-green-dark); }
.section-pill.sky { background: var(--calm-sky-light); color: var(--calm-sky-dark); }

/* Teachers Cards */
.teachers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.teacher-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.teacher-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--warm-orange-border);
}

.teacher-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: #F8FAFC;
  position: relative;
  overflow: hidden;
}

.teacher-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.teacher-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.teacher-name {
  font-size: 1.22rem;
  margin-bottom: 0.25rem;
}

.teacher-role {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--warm-orange);
  margin-bottom: 0.75rem;
}

.teacher-degree {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  background: #FFFDF9;
  border: 1px solid var(--border-light);
  padding: 0.65rem 0.85rem;
  border-radius: 0.85rem;
  margin-top: auto;
}

/* Events Grid & Cards */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.event-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--warm-orange-border);
}

.event-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #F8FAFC;
  overflow: hidden;
}

.event-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-card:hover .event-img-wrap img {
  transform: scale(1.04);
}

.event-date-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.85rem;
  border-radius: 0.85rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: #0F172A;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.event-content {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-title {
  font-size: 1.28rem;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.event-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.15s ease;
}

.event-title a:hover {
  color: var(--warm-orange);
}

.event-summary {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

/* Application Download CTA Banner (Warm Terracotta / Organic Glow) */
.admission-banner {
  background: linear-gradient(135deg, #EA580C 0%, #C2410C 60%, #9A3412 100%);
  border-radius: 2rem;
  padding: 4rem 3rem;
  color: #FFFFFF;
  margin: 4.5rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(234, 88, 12, 0.35);
}

.admission-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.admission-banner h2 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.admission-banner p {
  color: #FFEDD5;
  max-width: 620px;
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.admission-badge-info {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Masonry Photo Gallery */
.masonry-grid {
  column-count: 3;
  column-gap: 1.5rem;
}

@media (max-width: 900px) {
  .masonry-grid { column-count: 2; }
}

@media (max-width: 600px) {
  .masonry-grid { column-count: 1; }
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #FFFDF9;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.masonry-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--warm-orange-border);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-caption {
  padding: 0.85rem 1.1rem;
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 600;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

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

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  border: 4px solid #FFFFFF;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 2.2rem;
  cursor: pointer;
}

/* WhatsApp Lead Form & Contact Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lead-form-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 1.75rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  width: 100%;
  box-sizing: border-box;
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border: 1px solid #CBD5E1;
  border-radius: 0.85rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  background: #FFFFFF;
}

.form-control:focus {
  outline: none;
  border-color: var(--warm-orange);
  box-shadow: 0 0 0 3px var(--warm-orange-glow);
}

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

/* Flash Messages */
.flash-alert {
  padding: 1rem 1.25rem;
  border-radius: 0.85rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.flash-error {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #F87171;
}

.flash-success {
  background: #DCFCE7;
  color: #166534;
  border: 1px solid #4ADE80;
}

/* Floating Quick Action Buttons (WhatsApp & Go-To-Top) */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 99;
}

.whatsapp-float {
  background: #25D366;
  color: #FFFFFF;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
  border: 2px solid #FFFFFF;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  background: #20BA5A;
}

.scroll-top-btn {
  background: #1E293B;
  color: #FFFFFF;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.3);
  border: 2px solid #FFFFFF;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--warm-orange);
  transform: translateY(-3px);
}

/* Footer */
.site-footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 5rem 0 2.5rem 0;
  margin-top: 5rem;
}

.site-footer h4 {
  color: #F8FAFC;
  font-size: 1.15rem;
  margin-bottom: 1.35rem;
}

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

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.15s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--warm-orange);
}

/* Footer Social Icons */
.footer-social-wrapper {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social-title {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94A3B8;
  margin-bottom: 0.75rem;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #1E293B;
  color: #E2E8F0;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icon-btn svg {
  width: 19px;
  height: 19px;
  transition: transform 0.2s ease;
}

.social-icon-btn:hover {
  transform: translateY(-2px);
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.social-icon-btn:hover svg {
  transform: scale(1.1);
}

.social-icon-btn.facebook-btn:hover {
  background: #1877F2;
  border-color: #1877F2;
}

.social-icon-btn.youtube-btn:hover {
  background: #FF0000;
  border-color: #FF0000;
}

.social-icon-btn.tiktok-btn:hover {
  background: #010101;
  border-color: #EE1D52;
  box-shadow: 0 4px 14px rgba(238, 29, 82, 0.4);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  padding-bottom: 1rem;
  border-top: 1px solid #1E293B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* Admin Portal Specific Styles */
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  background: #F8FAFC;
}

.admin-sidebar {
  background: #0F172A;
  color: #E2E8F0;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.admin-nav {
  margin-top: 2.5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  color: #94A3B8;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.15s ease;
}

.admin-nav a:hover, .admin-nav a.active {
  background: #1E293B;
  color: var(--warm-orange);
}

.admin-main {
  padding: 2.5rem;
  overflow-y: auto;
}

.admin-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.admin-table th, .admin-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.admin-table th {
  background: #F8FAFC;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .trust-badges-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .mobile-toggle { display: block; }
  .admin-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.75rem; }
  .site-footer { padding-bottom: 5.5rem; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 0.85rem;
  }
  .floating-actions {
    bottom: 18px;
    right: 18px;
    gap: 10px;
  }
  .whatsapp-float {
    width: 52px;
    height: 52px;
  }
  .scroll-top-btn {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 600px) {
  .trust-badges-grid { grid-template-columns: 1fr; }
  .admission-banner { padding: 3rem 1.5rem; }
  .site-footer { padding-bottom: 6rem; }
  .contact-grid { gap: 2rem; }
  .lead-form-card {
    padding: 1.5rem 1.15rem;
    border-radius: 1.25rem;
  }
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-header-banner {
    padding: 2.5rem 0 1.75rem 0 !important;
  }
  .contact-main-section {
    padding: 2rem 0 !important;
  }
}
