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

:root {
  --primary: #9d0022;
  --primary-light: #7a001a;
  --accent: #fbbf24;
  --accent-dark: #f59e0b;
  --green: #2e8b4f;
  --green-light: #e6f5ec;
  --bg: #f5f7fa;
  --white: #ffffff;
  --text: #1e2330;
  --text-light: #5a6275;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(157,0,34,0.12);
  --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo {
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.nav-brand-sub {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover { background: rgba(157,0,34,0.07); color: var(--primary); }
.nav-links a.active { color: #fbbf24; font-weight: 600; }

.nav-cta {
  background: var(--accent) !important;
  color: var(--primary) !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
}

.nav-cta:hover { background: var(--accent-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, #9d0022 0%, #7a001a 60%, #5c0014 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero::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-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(247,169,0,0.08);
}

.hero-circle-1 { width: 500px; height: 500px; right: -150px; top: -100px; }
.hero-circle-2 { width: 300px; height: 300px; right: 80px; bottom: -80px; background: rgba(255,255,255,0.04); }
.hero-circle-3 { width: 200px; height: 200px; left: -60px; bottom: 60px; }

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,169,0,0.15);
  border: 1px solid rgba(247,169,0,0.35);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  color: #fff;
  line-height: 1.18;
  margin-bottom: 10px;
}

.hero h1 span { color: var(--accent); }

.hero-campus {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247,169,0,0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* Hero stats */
.hero-stats-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px;
}

.hero-stats-title {
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-item { text-align: center; }

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  font-weight: 400;
}

.stat-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 20px 0;
}

.hero-contact-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}

.hero-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(247,169,0,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

/* ─── SECTION SHARED ─── */
section { padding: 30px 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: rgba(157,0,34,0.08);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 15px;
  color: var(--text-light);
  max-width: 560px;
}

.section-header { margin-bottom: 50px; }

/* ─── ABOUT ─── */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 12px;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--shadow);
  text-align: center;
}

.about-badge-float span { display: block; font-size: 24px; font-weight: 800; }

.about-highlight-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}

.check-icon {
  width: 22px;
  height: 22px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-principal {
  margin-top: 28px;
  padding: 20px;
  background: var(--bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.principal-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.principal-info strong { display: block; font-size: 15px; color: var(--primary); }
.principal-info span { font-size: 12px; color: var(--text-light); }

/* ─── FACILITIES ─── */
.facilities { background: var(--bg); }

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

.facility-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(26,60,110,0.14);
}

.facility-icon {
  font-size: 38px;
  margin-bottom: 14px;
  display: block;
}

.facility-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.facility-count {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

/* ─── CLASSES & TIMINGS ─── */
.academics { background: var(--white); }

.academics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.academics-staff-img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  display: block;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background: var(--accent);
  border-radius: 2px;
}

.class-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.class-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: 10px;
}

.class-emoji { font-size: 24px; }

.class-label { font-size: 14px; font-weight: 600; color: var(--primary); }
.class-ages { font-size: 12px; color: var(--text-light); margin-top: 2px; }

.timings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.timings-table th {
  background: var(--primary);
  color: #fff;
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
}

.timings-table th:first-child { border-radius: 8px 0 0 0; }
.timings-table th:last-child { border-radius: 0 8px 0 0; }

.timings-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.timings-table tr:last-child td { border-bottom: none; }
.timings-table tr:nth-child(even) td { background: var(--bg); }

.badge-season {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
}

.badge-summer { background: #fff3cd; color: #856404; }
.badge-winter { background: #cfe2ff; color: #084298; }

/* ─── ADMISSIONS ─── */
.admissions {
  background: linear-gradient(135deg, #9d0022 0%, #7a001a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.admissions::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(247,169,0,0.06);
  right: -200px;
  top: -200px;
}

.admissions-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.admissions-text .section-label { color: var(--accent); background: rgba(247,169,0,0.12); }
.admissions-text .section-title { color: #fff; }
.admissions-text .section-sub { color: rgba(255,255,255,0.7); max-width: none; }

.admission-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.step-body strong { display: block; color: #fff; font-size: 14px; margin-bottom: 2px; }
.step-body p { color: rgba(255,255,255,0.65); font-size: 13px; }

.admission-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.form-title { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 24px; }

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary-light);
  background: var(--white);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* ─── PRINCIPAL ─── */
.principal-section { background: var(--white); }

.principal-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}

.principal-photo {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 3/4;
  display: block;
  box-shadow: var(--shadow);
}

.principal-sig {
  margin-top: 28px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(157,0,34,0.06), rgba(251,191,36,0.08));
  border-left: 4px solid var(--primary);
  border-radius: 0 10px 10px 0;
}

.principal-sig strong {
  display: block;
  font-size: 16px;
  color: var(--primary);
  font-weight: 700;
}

.principal-sig span {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
  display: block;
}

/* ─── CAMPUS LIFE ─── */
.campus-life { background: var(--bg); }

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

.activity-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s;
}

.activity-card:hover { transform: translateY(-4px); }

.activity-banner {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.activity-body { padding: 20px; }
.activity-name { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.activity-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ─── CONTACT ─── */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(157,0,34,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-label { font-size: 11px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-value { font-size: 15px; color: var(--primary); font-weight: 600; margin-top: 2px; }
.contact-value a { color: inherit; text-decoration: none; }
.contact-value a:hover { color: var(--accent-dark); }

.map-embed {
  width: 100%;
  border-radius: var(--radius);
  border: none;
  display: block;
  box-shadow: var(--shadow);
}

.other-campuses {
  margin-top: 40px;
  padding: 24px;
  background: var(--bg);
  border-radius: 12px;
}

.other-campuses-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.campus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.campus-tag {
  font-size: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 500;
}

/* ─── APP DOWNLOAD ─── */
.app-section {
  background: linear-gradient(90deg, var(--green) 0%, #1a6b3a 100%);
  padding: 50px 0;
}

.app-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.app-text strong { display: block; font-size: 22px; font-weight: 700; color: #fff; }
.app-text p { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 4px; }

.app-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}

.app-btn:hover { background: rgba(255,255,255,0.22); }

.app-btn-icon { font-size: 26px; }
.app-btn-text { font-size: 11px; opacity: 0.75; }
.app-btn-store { display: block; font-size: 16px; font-weight: 700; line-height: 1; }

/* ─── FOOTER ─── */
.footer {
  background: linear-gradient(135deg, #9d0022, #7a001a);
  color: rgba(255,255,255,0.7);
  padding: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-top: 16px;
  margin-bottom: 4px;
}

.footer-brand-sub { font-size: 11px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; }

.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 14px;
  color: rgba(255,255,255,0.55);
}

.footer-heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}

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

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-size: 13.5px;
  transition: color 0.2s;
}

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

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 13px;
}

.footer-contact-icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }

.footer-contact-item a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  padding: 18px 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}


/* ─── MANDATORY DISCLOSURE ─── */
.disc-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-bottom: 36px; }
.disc-table caption { font-size: 15px; font-weight: 700; color: var(--primary); text-align: left; padding: 0 0 12px; }
.disc-table th { background: var(--primary); color: #fff; padding: 11px 16px; text-align: left; font-weight: 600; }
.disc-table th:first-child { border-radius: 8px 0 0 0; width: 52px; }
.disc-table th:nth-child(2) { width: 42%; }
.disc-table th:last-child { border-radius: 0 8px 0 0; }
.disc-table td { padding: 10px 16px; border-bottom: 1px solid var(--border); color: var(--text); background: #fff; }
.disc-table tr:last-child td { border-bottom: none; }
.disc-table tr:nth-child(even) td { background: var(--bg); }
.disc-table a { color: var(--primary-light); text-decoration: none; }
.disc-table a:hover { text-decoration: underline; }

.disc-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(26,60,110,0.06);
  border-left: 4px solid var(--accent);
  padding: 10px 16px;
  margin: 32px 0 14px;
  border-radius: 0 8px 8px 0;
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .hero-inner,
  .about-grid,
  .academics-grid,
  .admissions-inner,
  .contact-grid,
  .principal-grid { grid-template-columns: 1fr; }

  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }

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

  .hero { min-height: auto; }
  .hero-inner { padding: 60px 24px; gap: 40px; }

  .about-badge-float { right: 0; bottom: -15px; }

  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); padding: 12px 0; box-shadow: 0 8px 20px rgba(0,0,0,0.1); border-top: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 24px; border-radius: 0; }
  .hamburger { display: flex; }
  .nav { position: sticky; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .activities-grid { grid-template-columns: 1fr; }
  section { padding: 30px 0; }
}
