@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   WTM Hytech School — Premium Design System
   ============================================ */

:root {
  --blue: #1e40af;
  --blue-dark: #1e3a8a;
  --blue-deeper: #172554;
  --blue-light: #3b82f6;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --gold: #f59e0b;
  --gold-bright: #fbbf24;
  --gold-light: #fef3c7;
  --emerald: #059669;
  --emerald-light: #d1fae5;
  --red: #dc2626;
  --red-light: #fee2e2;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-700);
  background: var(--gray-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
ul, ol { list-style: none; }

/* ============ Container ============ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(30,64,175,0.35);
}
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 6px 20px rgba(30,64,175,0.4); color: white; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--gray-900);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(245,158,11,0.3);
  font-weight: 700;
}
.btn-gold:hover { box-shadow: 0 6px 20px rgba(245,158,11,0.4); filter: brightness(1.05); color: var(--gray-900); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: white; }

.btn-white {
  background: white;
  color: var(--blue);
  border-color: white;
  box-shadow: var(--shadow-md);
}
.btn-white:hover { background: var(--gray-50); color: var(--blue-dark); }

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: white;
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); color: white; }

.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.825rem; }

/* ============ Top Bar ============ */
.top-bar {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-deeper));
  color: white;
  padding: 0.6rem 0;
  font-size: 0.825rem;
  display: none;
}
.top-bar a { color: rgba(255,255,255,0.9); }
.top-bar a:hover { color: var(--gold-bright); }
@media (min-width: 768px) { .top-bar { display: block; } }

/* ============ Navigation ============ */
.navbar {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gray-200);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
@media (min-width: 768px) { .navbar-inner { height: 80px; } }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(30,64,175,0.3);
}
.nav-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: var(--radius);
}
.nav-brand-text h1 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin: 0;
  line-height: 1.2;
}
.nav-brand-text p {
  font-size: 0.7rem;
  color: var(--gray-500);
  font-weight: 500;
  margin: 0;
}
@media (max-width: 639px) { .nav-brand-text { display: none; } }

.nav-links {
  display: none;
  align-items: center;
  gap: 0.125rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-links a {
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  position: relative;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-50); }
.nav-links a.active {
  color: var(--blue);
  font-weight: 600;
  background: var(--blue-50);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: block; } }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--gray-200);
  width: 42px;
  height: 42px;
  border-radius: 0.5rem;
  color: var(--gray-600);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s;
}
.nav-toggle:hover { background: var(--gray-50); border-color: var(--gray-300); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Mobile Menu */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-overlay.open { display: block; opacity: 1; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: white;
  z-index: 9999;
  overflow-y: auto;
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { right: 0; }

.mobile-menu-head {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  padding: 1.25rem 1.25rem;
  position: sticky;
  top: 0;
  z-index: 1;
}
.mobile-menu-links {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.mobile-menu-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gray-700);
  border: 1px solid var(--gray-100);
  transition: all 0.2s;
}
.mobile-menu-links a:hover {
  background: var(--blue-50);
  color: var(--blue);
  border-color: var(--blue-100);
}
.mobile-menu-links a.active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--gray-900);
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(245,158,11,0.25);
}
.mobile-menu-links a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  flex-shrink: 0;
}
.mobile-menu-links a.active::before { background: var(--blue); }
.mobile-menu-bottom {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--gray-200);
  margin-top: auto;
}
.mobile-contact-card {
  background: var(--blue-50);
  border-radius: var(--radius);
  padding: 0.875rem;
  margin-top: 0.75rem;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 2rem 0 1.5rem;
}
@media (min-width: 768px) { .hero { padding: 3rem 0 2.5rem; } }
@media (min-width: 1024px) { .hero { min-height: 75vh; padding: 2rem 0; } }
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 40%, #312e81 100%);
  transition: background 0.8s ease;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(251,191,36,0.15), transparent 70%);
  border-radius: 50%;
}
@media (min-width: 768px) { .hero-bg::after { top: -150px; right: -150px; width: 450px; height: 450px; } }
@media (min-width: 1024px) { .hero-bg::after { top: -200px; right: -200px; width: 600px; height: 600px; } }
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-bright);
  color: var(--gray-900);
  padding: 0.375rem 1rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.65rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 12px rgba(251,191,36,0.3);
  letter-spacing: 0.02em;
}
@media (min-width: 768px) { .hero-badge { font-size: 0.7rem; padding: 0.5rem 1.25rem; margin-bottom: 1rem; } }
.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.hero-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}
.hero-title .gold { color: var(--gold-bright); display: block; margin-top: 0.15rem; }
@media (min-width: 640px) { .hero-title { font-size: 2.25rem; margin-bottom: 1rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 3.5rem; } }

.hero-subtitle {
  color: rgba(219,234,254,0.9);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  max-width: 540px;
  line-height: 1.6;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 0.95rem; margin-bottom: 1.25rem; } }
@media (min-width: 1024px) { .hero-subtitle { font-size: 1.05rem; margin-bottom: 1.5rem; } }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .hero-stats { gap: 0.75rem; margin-bottom: 1.5rem; } }
.hero-stat-box {
  text-align: center;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 0.5rem 0.25rem;
  border: 1px solid rgba(255,255,255,0.2);
}
@media (min-width: 768px) { .hero-stat-box { padding: 0.75rem 0.5rem; } }
.hero-stat-box .number {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-bright);
  font-family: 'Poppins', sans-serif;
}
@media (min-width: 768px) { .hero-stat-box .number { font-size: 1.5rem; } }
@media (min-width: 1024px) { .hero-stat-box .number { font-size: 1.75rem; } }
.hero-stat-box .label {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin-top: 0.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) { .hero-stat-box .label { font-size: 0.625rem; } }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.hero-actions .btn { font-size: 0.8rem; padding: 0.6rem 1.25rem; }
@media (min-width: 768px) { .hero-actions .btn { font-size: 0.875rem; padding: 0.75rem 1.75rem; } .hero-actions { gap: 0.75rem; } }

/* Glass Card */
.glass-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .glass-card { padding: 1.25rem; } }
@media (min-width: 1024px) { .glass-card { padding: 1.5rem; } }
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.slide-icon-box {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(245,158,11,0.3);
  flex-shrink: 0;
}
@media (min-width: 768px) { .slide-icon-box { width: 48px; height: 48px; font-size: 1.4rem; } }
.slide-image-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0.75rem 0;
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.05);
  max-height: 180px;
}
@media (min-width: 768px) { .slide-image-box { max-height: 220px; } }
@media (min-width: 1024px) { .slide-image-box { max-height: 280px; } }
.slide-image-box img { width: 100%; height: 100%; object-fit: cover; }

.slide-dots { display: flex; gap: 0.375rem; }
.slide-dot {
  height: 6px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.slide-dot.active { background: var(--gold-bright); width: 28px; }
.slide-dot:not(.active) { background: rgba(255,255,255,0.25); width: 12px; }
.slide-dot:not(.active):hover { background: rgba(255,255,255,0.4); }

.slide-nav {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.slide-nav:hover { background: rgba(255,255,255,0.25); }

/* ============ CBSE Banner ============ */
.cbse-banner {
  background: white;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.cbse-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .cbse-items { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}
.cbse-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.cbse-item-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(30,64,175,0.25);
}
@media (min-width: 768px) { .cbse-item-icon { width: 44px; height: 44px; font-size: 1rem; } }
.cbse-item .small-label {
  font-size: 0.6rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 0.05rem;
}
@media (min-width: 768px) { .cbse-item .small-label { font-size: 0.65rem; } }
.cbse-item .big-value {
  font-weight: 800;
  color: var(--blue-dark);
  font-size: 0.85rem;
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
}
@media (min-width: 768px) { .cbse-item .big-value { font-size: 1rem; } }

/* ============ Sections ============ */
.section { padding: 5rem 0; }
@media (max-width: 767px) { .section { padding: 3.5rem 0; } }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}
.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--blue-50);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 99px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============ Trust / Why Us Grid ============ */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}
.trust-card:hover {
  border-color: var(--blue-100);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.trust-card-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-50);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.trust-card:hover .trust-card-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  transform: scale(1.05);
}
.trust-card:hover .trust-card-icon i { color: white; }
.trust-card h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.trust-card p { font-size: 0.875rem; color: var(--gray-500); margin: 0; }

.badge-sm {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  background: var(--gold-light);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 0.25rem;
  margin-left: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ============ Feature Cards (Blue BG) ============ */
.features-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 60%, #312e81 100%);
  position: relative;
  overflow: hidden;
}
.features-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.feature-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.feature-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  transition: transform 0.3s;
}
.feature-card:hover .feature-card-icon { transform: scale(1.1) rotate(3deg); }
.feature-card h4 { font-size: 1.15rem; color: white; margin-bottom: 0.5rem; }
.feature-card p { color: rgba(219,234,254,0.85); font-size: 0.9rem; line-height: 1.6; }

/* ============ News Cards ============ */
.news-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }

.news-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gray-300);
}
.news-card-img {
  height: 200px;
  overflow: hidden;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.08); }
.news-card-body { padding: 1.25rem; }
.news-card h5 {
  font-size: 1.05rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.news-card p { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 0.75rem; }
.news-card .meta { font-size: 0.775rem; color: var(--gray-400); }

/* Badges */
.badge {
  display: inline-block;
  padding: 0.2rem 0.625rem;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 0.375rem;
  margin-right: 0.25rem;
  margin-bottom: 0.5rem;
}
.badge-blue { background: var(--blue-50); color: var(--blue); }
.badge-gold { background: var(--gold-light); color: var(--gold); }
.badge-red { background: var(--red-light); color: var(--red); }
.badge-green { background: var(--emerald-light); color: var(--emerald); }

/* ============ CTA Section ============ */
.cta-section {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}
.cta-section h2 { color: var(--gray-900); margin-bottom: 0.75rem; position: relative; z-index: 1; }
.cta-section p { color: var(--gray-700); font-size: 1.1rem; margin-bottom: 2rem; position: relative; z-index: 1; }

/* ============ Page Hero ============ */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 60%, #312e81 100%);
  color: white;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251,191,36,0.1), transparent 70%);
  border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(219,234,254,0.85); font-size: 1.1rem; max-width: 600px; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.8); }
.page-hero .breadcrumb a:hover { color: var(--gold-bright); }

/* ============ Gallery ============ */
.gallery-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--gray-200);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.8), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: white; font-weight: 600; font-size: 0.85rem; }

/* Filter buttons */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2rem; }
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  font-size: 0.825rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--gray-200);
  background: white;
  color: var(--gray-600);
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active { background: var(--blue); color: white; border-color: var(--blue); box-shadow: 0 2px 8px rgba(30,64,175,0.25); }

/* ============ Forms ============ */
.card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.card-body { padding: 2rem; }

.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.375rem;
}
.form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.925rem;
  color: var(--gray-800);
  transition: all 0.2s;
  background: white;
  font-family: 'Inter', sans-serif;
  outline: none;
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,64,175,0.1);
}
.form-control::placeholder { color: var(--gray-400); }
select.form-control { appearance: auto; }
textarea.form-control { resize: vertical; min-height: 100px; }

.form-divider {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  margin: 1.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-bright);
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.alert-success { background: var(--emerald-light); color: #065f46; border: 1px solid #6ee7b7; }
.alert-error { background: var(--red-light); color: #991b1b; border: 1px solid #fca5a5; }

/* ============ Info Cards ============ */
.info-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--gray-200);
  margin-bottom: 0.75rem;
  transition: all 0.2s;
}
.info-card:hover { border-color: var(--blue-100); box-shadow: var(--shadow); }
.info-card h5 { display: flex; align-items: center; gap: 0.625rem; font-size: 0.95rem; margin-bottom: 0.5rem; }
.info-card h5 i { color: var(--blue); font-size: 1rem; }
.info-card p { font-size: 0.875rem; color: var(--gray-500); margin: 0; }
.info-card a { color: var(--blue); font-weight: 600; }
.info-card a:hover { color: var(--blue-dark); }

/* ============ Footer ============ */
.footer {
  background: linear-gradient(180deg, var(--gray-900) 0%, #0c1324 100%);
  color: rgba(255,255,255,0.85);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; } }

.footer h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
}
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}
.footer-links a:hover { color: var(--gold-bright); }

.footer-contact { font-size: 0.875rem; }
.footer-contact .icon {
  color: var(--gold-bright);
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
  font-size: 0.9rem;
}
.footer-social a:hover { background: var(--gold-bright); color: var(--gray-900); border-color: var(--gold-bright); }

.cbse-badge {
  padding: 1rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}
.cbse-badge .affiliation-num {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gold-bright);
  font-family: 'Poppins', sans-serif;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
}
.footer-bottom a { color: rgba(255,255,255,0.6); font-size: 0.825rem; }
.footer-bottom a:hover { color: var(--gold-bright); }

/* ============ Grid Utils ============ */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-2 { gap: 2rem; } }
.grid-2.gap-lg { gap: 1.5rem; }
@media (min-width: 768px) { .grid-2.gap-lg { gap: 2rem; } }
@media (min-width: 1024px) { .grid-2.gap-lg { gap: 3rem; } }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* ============ Misc Utils ============ */
.text-center { text-align: center; }
.text-blue { color: var(--blue) !important; }
.text-gold { color: var(--gold-bright) !important; }
.bg-white { background: white; }
.bg-gray { background: var(--gray-50); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }

/* Spinner */
.spinner {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-box { display: flex; justify-content: center; padding: 3rem; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 0.375rem; margin-top: 2rem; }
.page-btn {
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-200);
  background: white;
  color: var(--gray-600);
  cursor: pointer;
  font-weight: 500;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}
.page-btn:hover { border-color: var(--blue); color: var(--blue); }
.page-btn.active { background: var(--blue); color: white; border-color: var(--blue); }

/* ============ Academics ============ */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--blue-100);
}
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.25rem;
  top: 0.375rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid white;
  box-shadow: 0 0 0 2px var(--blue-100);
}

/* Stat card */
.stat-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.stat-card:hover { border-color: var(--blue-100); box-shadow: var(--shadow-md); }
.stat-card .stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--blue);
  font-family: 'Poppins', sans-serif;
}
.stat-card .stat-label { font-size: 0.85rem; color: var(--gray-500); margin-top: 0.25rem; }

/* Process step */
.step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.step-number {
  width: 36px;
  height: 36px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(30,64,175,0.25);
}
.step-number.gold { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: var(--gray-900); }
.step h5 { font-size: 0.925rem; color: var(--gray-800); margin: 0 0 0.125rem; }
.step p { font-size: 0.825rem; color: var(--gray-500); margin: 0; }

/* Checklist */
.checklist { display: flex; flex-direction: column; gap: 0.625rem; }
.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-700);
}
.checklist-item i { color: var(--blue); font-size: 0.875rem; }

/* Help card */
.help-card {
  background: var(--gold-light);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.help-card h4 { margin-bottom: 0.5rem; }
.help-card p { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 1rem; }
.help-card a { display: flex; align-items: center; gap: 0.5rem; color: var(--blue); font-weight: 600; font-size: 0.875rem; }
.help-card a:hover { color: var(--blue-dark); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox { display: none; }
.lightbox.active { display: flex; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-content { text-align: center; }
.lightbox-caption {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  text-align: center;
}

/* Grid utilities */
.gap-md { gap: 1.25rem !important; }

/* Form sidebar layout */
.grid-form-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .grid-form-sidebar {
    grid-template-columns: 1.3fr 1fr;
  }
}

/* Steps grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.steps-grid .step {
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: white;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.steps-grid .step:hover {
  border-color: var(--blue-100);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.steps-grid .step .step-number {
  width: 48px;
  height: 48px;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.steps-grid .step h4 { margin-bottom: 0.375rem; font-size: 1rem; }
.steps-grid .step p { font-size: 0.85rem; color: var(--gray-500); margin: 0; }

/* Tags */
.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--blue-50);
  color: var(--blue);
  border: 1px solid var(--blue-100);
}

/* Article body */
.article-body h2, .article-body h3, .article-body h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--gray-800);
}
.article-body p { margin-bottom: 1rem; }
.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.article-body img {
  max-width: 100%;
  border-radius: var(--radius);
  margin: 1rem 0;
}

/* Stat value (for stat cards) */
.stat-value {
  font-size: 2.25rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: var(--blue);
}

/* Disclosure table */
.disclosure-table {
  width: 100%;
  border-collapse: collapse;
}
.disclosure-table tr {
  border-bottom: 1px solid var(--gray-100);
}
.disclosure-table tr:last-child { border-bottom: none; }
.disclosure-table td {
  padding: 0.875rem 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-700);
  vertical-align: top;
}
.disclosure-table .dt-label {
  font-weight: 600;
  color: var(--gray-800);
  width: 40%;
  background: var(--gray-50);
}

/* (CBSE banner styles consolidated above) */

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Alert */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.alert-success {
  background: var(--emerald-light);
  color: #065f46;
  border: 1px solid rgba(5,150,105,0.2);
}
.alert-error {
  background: var(--red-light);
  color: #991b1b;
  border: 1px solid rgba(220,38,38,0.2);
}

/* Badge gold */
.badge-gold { background: var(--gold-light); color: #92400e; }

/* Responsive small buttons */
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }

/* Meta text */
.meta { font-size: 0.8rem; color: var(--gray-400); }

/* Info card */
.info-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.info-card:hover {
  border-color: var(--blue-100);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.info-card-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
  color: var(--blue);
}
.info-card h4 { margin-bottom: 0.375rem; }
.info-card p { font-size: 0.875rem; color: var(--gray-500); margin: 0; line-height: 1.5; }

/* ============ Chairman's Desk ============ */
.chairman-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.chairman-img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.chairman-img-placeholder {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  box-shadow: 0 8px 30px rgba(30,64,175,0.25);
  border: 4px solid white;
  outline: 3px solid var(--blue-100);
}
.chairman-name-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.chairman-name-card strong {
  font-size: 1.1rem;
  color: var(--gray-900);
}
.chairman-name-card span {
  font-size: 0.8rem;
  color: var(--gray-500);
}
.chairman-content {
  text-align: center;
}
.chairman-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gray-900);
}
.chairman-content p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.chairman-quote {
  background: var(--blue-50);
  border-left: 4px solid var(--blue);
  padding: 1.25rem 1.5rem;
  margin: 0 0 1.25rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--blue-dark);
  line-height: 1.7;
}
@media (min-width: 768px) {
  .chairman-section {
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
  }
  .chairman-img-wrap { min-width: 180px; }
  .chairman-img-placeholder {
    width: 180px;
    height: 180px;
    font-size: 4rem;
  }
  .chairman-content { text-align: left; }
  .chairman-content h2 { font-size: 1.75rem; }
}

/* ============ School Facilities ============ */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.facility-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}
.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-100);
}
.facility-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.25rem;
  color: white;
}
.facility-card h4 {
  font-size: 0.9rem;
  margin-bottom: 0.375rem;
  color: var(--gray-900);
}
.facility-card p {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 640px) {
  .facilities-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
@media (min-width: 768px) {
  .facilities-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .facility-icon { width: 60px; height: 60px; font-size: 1.4rem; }
  .facility-card { padding: 1.5rem; }
  .facility-card h4 { font-size: 1rem; }
  .facility-card p { font-size: 0.85rem; }
}

/* ============ Home Gallery Preview ============ */
.home-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.home-gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
}
.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.home-gallery-item:hover img {
  transform: scale(1.08);
}
.home-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.home-gallery-item:hover .home-gallery-overlay {
  opacity: 1;
}
.home-gallery-overlay span {
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
}
@media (min-width: 640px) {
  .home-gallery { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
@media (min-width: 1024px) {
  .home-gallery { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .home-gallery-item:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 3; aspect-ratio: auto; }
  .home-gallery-overlay span { font-size: 0.9rem; }
}

/* ============ Inspirational Quotes ============ */
.quotes-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #312e81 50%, #1e1b4b 100%);
  padding: 3.5rem 0;
}
.quotes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.quote-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.quote-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-3px);
}
.quote-icon {
  color: var(--gold-bright);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}
.quote-text {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.quote-author {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.quote-author strong {
  color: var(--gold-bright);
  font-size: 0.85rem;
}
.quote-author span {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .quotes-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .quotes-section { padding: 4.5rem 0; }
  .quote-text { font-size: 0.95rem; }
}

/* ============ Contact Strip ============ */
.contact-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.contact-strip-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}
.contact-strip-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-100);
}
.cs-icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 0.75rem;
}
.contact-strip-card h5 {
  font-size: 0.95rem;
  color: var(--gray-900);
  margin-bottom: 0.375rem;
}
.contact-strip-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}
.contact-strip-card a {
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}
.contact-strip-card a:hover { opacity: 0.75; }
@media (min-width: 640px) {
  .contact-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .contact-strip { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

/* ============ CTA Badge ============ */
.cta-badge {
  display: inline-block;
  background: rgba(0,0,0,0.15);
  color: var(--gray-900);
  padding: 0.4rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.cta-section .btn-gold {
  background: var(--gray-900);
  color: white;
}
.cta-section .btn-gold:hover {
  background: var(--gray-800);
}
