/* ═══════════════════════════════════════════════════════
   CMR HIGH SCHOOL — GAJULARAMARAM
   Design System — Plain CSS (No Framework)
   Brand: Deep Navy #1B3A6B | CMR Orange #E87722
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --primary:         #1B3A6B;
  --primary-dark:    #0F2449;
  --primary-light:   #2A5298;
  --accent:          #E87722;
  --accent-dark:     #C45E10;
  --accent-light:    #F59340;
  --gold:            #F5A623;
  --background:      #FFFFFF;
  --foreground:      #0D1B2A;
  --surface:         #F8F9FC;
  --surface-2:       #F0F2F8;
  --border:          #E2E6EF;
  --text-primary:    #0D1B2A;
  --text-secondary:  #4A5568;
  --text-muted:      #718096;
  --text-light:      #A0AEC0;
  --shadow-sm:       0 2px 8px rgba(27,58,107,0.08);
  --shadow-md:       0 8px 24px rgba(27,58,107,0.12);
  --shadow-lg:       0 20px 60px rgba(27,58,107,0.16);
  --shadow-xl:       0 40px 80px rgba(27,58,107,0.20);
  --shadow-orange:   0 8px 32px rgba(232,119,34,0.30);
  --radius-sm:       0.75rem;
  --radius-md:       1rem;
  --radius-lg:       1.5rem;
  --radius-xl:       2rem;
  --radius-2xl:      2.5rem;
  --radius-full:     9999px;
  --font-main:       'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
::selection { background: var(--accent); color: #fff; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ══════════════════════════════════════
   GLASS MORPHISM
══════════════════════════════════════ */
.glass {
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.40);
}
.glass-dark {
  background: rgba(15,36,73,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.10);
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: var(--shadow-orange);
  font-family: var(--font-main);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 40px rgba(232,119,34,0.45);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
  font-family: var(--font-main);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.60);
}
.btn-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: var(--shadow-md);
  font-family: var(--font-main);
}
.btn-navy:hover {
  background: var(--primary-dark);
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow-lg);
}

/* ══════════════════════════════════════
   BADGES / LABELS
══════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(232,119,34,0.10);
  border: 1px solid rgba(232,119,34,0.25);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-label-navy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(27,58,107,0.08);
  border: 1px solid rgba(27,58,107,0.15);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   GRADIENT TEXT
══════════════════════════════════════ */
.text-gradient-orange {
  background: linear-gradient(135deg,#E87722 0%,#F5A623 60%,#FFC947 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-navy {
  background: linear-gradient(135deg,#1B3A6B 0%,#2A5298 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-10px); }
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.2); }
}
@keyframes heroImageFade {
  0%   { opacity: 0; transform: scale(1.05); }
  10%  { opacity: 1; transform: scale(1); }
  90%  { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.animate-ticker { animation: ticker-scroll 30s linear infinite; }
.animate-float  { animation: float 4s ease-in-out infinite; }

/* Intersection observer reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-scale.revealed { opacity: 1; transform: scale(1); }

/* ══════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════ */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  height: 36px;
}
.announcement-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.ann-left { display: flex; align-items: center; gap: 1rem; overflow: hidden; }
.ann-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.ann-right a { display: flex; align-items: center; gap: 0.375rem; color: #fff; transition: opacity 0.2s; }
.ann-right a:hover { opacity: 0.8; }
.ann-divider { color: rgba(255,255,255,0.4); }
.ann-pulse { display: flex; align-items: center; gap: 0.375rem; font-weight: 600; }
.ann-pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #fff;
  animation: pulse-dot 2s ease infinite;
}
@media (max-width: 640px) {
  .ann-email, .ann-admissions-text { display: none; }
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 50;
  padding: 0.75rem 0;
  transition: padding 0.3s ease;
}
.site-header.scrolled { padding: 0.5rem 0; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-lg);
  padding: 0.625rem 1.25rem;
  transition: all 0.5s ease;
}
.nav-inner.solid {
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.40);
  box-shadow: 0 8px 32px rgba(27,58,107,0.15);
}
.nav-logo-wrap {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.375rem;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; flex-shrink: 0;
}
.nav-logo-wrap img { height: 38px; width: auto; object-fit: contain; }

/* Desktop nav links */
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-link {
  display: flex; align-items: center; gap: 0.25rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
  color: var(--primary);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--accent); background: rgba(232,119,34,0.08); }
.nav-link.transparent { color: rgba(255,255,255,0.9); }
.nav-link.transparent:hover { color: #fff; background: rgba(255,255,255,0.10); }

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  width: 13rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.50);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(27,58,107,0.18);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.96);
  transition: all 0.18s ease;
  z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
}
.nav-dropdown a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  transition: all 0.15s;
}
.nav-dropdown a:hover { background: var(--accent); color: #fff; }
.chevron-icon { transition: transform 0.2s ease; font-size: 0.75rem; }
.nav-item:hover .chevron-icon { transform: rotate(180deg); }

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--primary);
  transition: all 0.2s;
}
.nav-toggle:hover { background: rgba(27,58,107,0.08); }
.nav-toggle.transparent { color: #fff; }
.nav-toggle.transparent:hover { background: rgba(255,255,255,0.10); }
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.hamburger span {
  display: block; height: 2px; width: 100%;
  background: currentColor; border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15,36,73,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden;
  transition: all 0.25s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 3.5rem 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.mobile-menu-logo {
  background: #fff; border-radius: var(--radius-sm);
  padding: 0.375rem; display: inline-flex;
}
.mobile-menu-logo img { height: 32px; width: auto; }
.mobile-menu-close {
  color: rgba(255,255,255,0.7); padding: 0.5rem;
  font-size: 1.5rem; transition: color 0.2s;
}
.mobile-menu-close:hover { color: #fff; }
.mobile-nav {
  flex: 1; overflow-y: auto;
  padding: 2rem 1.5rem;
}
.mobile-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
  font-size: 1.125rem; font-weight: 600; color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav-cta { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-nav-cta .btn-primary { width: 100%; justify-content: center; padding: 1rem; border-radius: var(--radius-xl); }
.mobile-phone-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem; border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.08); color: #fff; font-weight: 600;
  font-size: 1rem; transition: background 0.2s;
}
.mobile-phone-btn:hover { background: rgba(255,255,255,0.15); }

@media (max-width: 1279px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: #0D1B2A;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,0.70) 0%, rgba(13,27,42,0.40) 50%, rgba(13,27,42,0.80) 100%);
  z-index: 1;
}
.hero-blob-1 {
  position: absolute; top: 0; right: 0;
  width: 500px; height: 500px;
  background: rgba(232,119,34,0.10);
  border-radius: 50%; filter: blur(120px);
  pointer-events: none; z-index: 2;
}
.hero-blob-2 {
  position: absolute; bottom: 0; left: 0;
  width: 500px; height: 500px;
  background: rgba(27,58,107,0.20);
  border-radius: 50%; filter: blur(120px);
  pointer-events: none; z-index: 2;
}
.hero-content {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  max-width: 900px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: 0 0 40px rgba(0,0,0,0.3);
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--accent);
  animation: pulse-dot 2s ease infinite;
}
.hero-badge span { color: #fff; font-size: 0.875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  min-height: 5.5rem;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-title .accent-text {
  background: linear-gradient(135deg, #E87722, #F5A623);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.80);
  max-width: 700px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  min-height: 3.5rem;
  transition: opacity 0.5s ease;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; }
.hero-indicators {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: 3rem;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.40);
  cursor: pointer; transition: all 0.5s ease;
  border: none;
}
.hero-dot.active { width: 40px; background: var(--accent); }
.hero-dot:hover:not(.active) { background: rgba(255,255,255,0.70); }

/* ══════════════════════════════════════
   TICKER BAR
══════════════════════════════════════ */
.ticker-bar {
  background: var(--primary);
  padding: 0.75rem 0;
  overflow: hidden;
  width: 100%;
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.90);
  font-size: 0.875rem; font-weight: 500;
  padding: 0 2rem; flex-shrink: 0;
}
.ticker-item svg { color: var(--accent); flex-shrink: 0; }
.ticker-sep { color: var(--accent); margin-left: 0.5rem; }

/* ══════════════════════════════════════
   STATS SECTION
══════════════════════════════════════ */
.stats-section {
  background: #fff;
  padding: 2.5rem 0 1.5rem;
}
.stats-card {
  background: #fff;
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 60px rgba(27,58,107,0.10);
  border: 1px solid var(--border);
  padding: 3rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 1rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.25rem; }
.stat-desc { font-size: 0.75rem; color: var(--text-muted); }
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .stat-item { border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
  .stat-item:nth-child(3), .stat-item:last-child { border-bottom: none; }
  .stats-card { padding: 2rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */
.about-section { padding: 4rem 0 5rem; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text { display: flex; flex-direction: column; gap: 1.75rem; }
.about-title {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.about-desc { color: var(--text-secondary); font-size: 1.0625rem; line-height: 1.75; }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
.about-feature {
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.check-icon {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 0.125rem;
  color: var(--accent);
}
.about-feature span { font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); }
.about-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--primary); font-weight: 700;
  transition: color 0.2s, gap 0.2s;
}
.about-link:hover { color: var(--accent); gap: 0.75rem; }
.about-visual { position: relative; }
.about-img-main {
  position: relative;
  height: 520px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(27,58,107,0.18);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-main-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,36,73,0.30), transparent);
}
.about-float-card {
  position: absolute;
  bottom: -1.5rem; left: -2.5rem;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.70);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.5rem;
  max-width: 260px;
  box-shadow: 0 20px 50px rgba(27,58,107,0.14);
  animation: float 4s ease-in-out infinite;
}
.float-card-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--accent); display: flex; align-items: center;
  justify-content: center; margin-bottom: 0.75rem; color: #fff;
}
.float-card-title { font-size: 0.9375rem; font-weight: 700; color: var(--primary); margin-bottom: 0.25rem; }
.float-card-desc { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }
.about-img-small {
  position: absolute;
  top: -1.25rem; right: -2rem;
  width: 160px; height: 160px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 12px 30px rgba(27,58,107,0.20);
}
.about-img-small img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-main { height: 380px; }
  .about-float-card { left: -0.5rem; }
  .about-img-small { right: -0.5rem; }
}

/* ══════════════════════════════════════
   FACILITIES SECTION
══════════════════════════════════════ */
.facilities-section { padding: 6rem 0; background: var(--surface); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-title {
  font-size: clamp(2rem, 4vw, 3.125rem);
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 1rem 0;
}
.section-desc { color: var(--text-muted); font-size: 1.0625rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.bento-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  height: 240px;
}
.bento-card--large {
  grid-column: span 2;
  grid-row: span 2;
  height: 497px;
}
.bento-card--medium { grid-column: span 2; }
.bento-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.bento-card:hover img { transform: scale(1.07); }
.bento-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,36,73,0.90) 0%, rgba(15,36,73,0.30) 50%, transparent 100%);
}
.bento-body {
  position: absolute; bottom: 0; left: 0;
  padding: 1.5rem 2rem;
}
.bento-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--accent); display: flex; align-items: center;
  justify-content: center; margin-bottom: 0.75rem; color: #fff;
  box-shadow: 0 4px 12px rgba(232,119,34,0.4);
}
.bento-title { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.375rem; }
.bento-desc {
  font-size: 0.875rem; color: rgba(255,255,255,0.70);
  line-height: 1.5; max-width: 280px;
  opacity: 0; transform: translateY(8px);
  transition: all 0.3s ease;
}
.bento-card:hover .bento-desc { opacity: 1; transform: translateY(0); }
@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card--large { grid-column: 1/-1; height: 320px; }
  .bento-card--medium { grid-column: 1/-1; }
}
@media (max-width: 480px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card, .bento-card--medium { grid-column: 1; height: 220px; }
}

/* ══════════════════════════════════════
   VISION & MISSION
══════════════════════════════════════ */
.vm-section { padding: 5rem 0 6rem; background: #fff; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.vm-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  padding: 2.5rem;
}
.vm-card--vision { background: var(--primary); }
.vm-card--mission { background: var(--surface); border: 1px solid var(--border); }
.vm-card-blob {
  position: absolute; top: 0; right: 0;
  width: 260px; height: 260px;
  border-radius: 50%;
  transform: translate(50%, -50%);
  pointer-events: none;
}
.vm-card--vision .vm-card-blob { background: rgba(255,255,255,0.05); }
.vm-card--mission .vm-card-blob { background: rgba(232,119,34,0.05); }
.vm-icon {
  width: 56px; height: 56px; border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; position: relative; z-index: 1;
}
.vm-card--vision .vm-icon { background: rgba(255,255,255,0.10); color: #fff; }
.vm-card--mission .vm-icon { background: rgba(232,119,34,0.10); color: var(--accent); }
.vm-title { font-size: 1.75rem; font-weight: 900; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.vm-card--vision .vm-title { color: #fff; }
.vm-card--mission .vm-title { color: var(--text-primary); }
.vm-list { display: flex; flex-direction: column; gap: 1rem; position: relative; z-index: 1; }
.vm-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.vm-check { width: 18px; height: 18px; flex-shrink: 0; margin-top: 0.125rem; }
.vm-card--vision .vm-check { color: var(--accent); }
.vm-card--mission .vm-check { color: var(--primary); }
.vm-item-title { font-weight: 700; font-size: 0.875rem; }
.vm-item-desc { font-size: 0.875rem; }
.vm-card--vision .vm-item-title { color: #fff; }
.vm-card--vision .vm-item-desc { color: rgba(255,255,255,0.60); }
.vm-card--mission .vm-item-title { color: var(--text-primary); }
.vm-card--mission .vm-item-desc { color: var(--text-muted); }
.vm-quote {
  margin-top: 3rem; text-align: center; max-width: 800px; margin-left: auto; margin-right: auto;
  padding: 2rem; border-radius: var(--radius-xl);
  background: var(--surface); border: 1px solid var(--border);
}
.vm-quote p { font-size: 1.0625rem; color: var(--text-secondary); line-height: 1.75; font-style: italic; }
@media (max-width: 768px) { .vm-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   LEADERSHIP SECTION
══════════════════════════════════════ */
.leadership-section { padding: 6rem 0; background: var(--surface); }
.leaders-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.leader-card {
  background: #fff; border-radius: var(--radius-2xl);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(27,58,107,0.08);
  text-align: center;
  transition: all 0.5s ease;
}
.leader-card:hover {
  box-shadow: 0 20px 60px rgba(27,58,107,0.15);
  transform: translateY(-8px);
}
.leader-accent { height: 6px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.leader-body { padding: 2rem; }
.leader-photo-wrap {
  width: 120px; height: 120px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 1.25rem;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(27,58,107,0.18);
  transition: transform 0.5s ease;
}
.leader-card:hover .leader-photo-wrap { transform: scale(1.05); }
.leader-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.leader-name { font-size: 1.125rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.375rem; }
.leader-role {
  display: inline-block; padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(232,119,34,0.10); color: var(--accent);
  font-size: 0.75rem; font-weight: 600; margin-bottom: 1rem;
}
.leader-quote {
  font-size: 0.875rem; color: var(--text-muted); font-style: italic;
  line-height: 1.6; padding-top: 1rem; border-top: 1px solid var(--border);
}
@media (max-width: 1024px) { .leaders-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .leaders-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   ACTIVITIES SECTION
══════════════════════════════════════ */
.activities-section { padding: 6rem 0; }
.activities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.activity-card {
  background: #fff; border-radius: var(--radius-2xl);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(27,58,107,0.08);
  transition: all 0.5s ease;
}
.activity-card:hover { box-shadow: 0 20px 60px rgba(27,58,107,0.14); transform: translateY(-8px); }
.activity-img {
  position: relative; height: 220px; overflow: hidden;
}
.activity-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.activity-card:hover .activity-img img { transform: scale(1.10); }
.activity-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,36,73,0.60), transparent);
}
.activity-body { padding: 1.75rem; }
.activity-divider {
  width: 40px; height: 4px; border-radius: 2px; margin-bottom: 1rem;
}
.activity-title { font-size: 1.125rem; font-weight: 700; color: var(--text-primary); margin-bottom: 1rem; }
.activity-points { display: flex; flex-direction: column; gap: 0.625rem; }
.activity-point { display: flex; align-items: flex-start; gap: 0.625rem; }
.activity-bullet {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 0.5rem;
}
.activity-point span { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; }
@media (max-width: 768px) { .activities-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════ */
.faq-section { padding: 6rem 0; background: var(--surface); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(27,58,107,0.05);
}
.faq-item.open { border-color: var(--accent); box-shadow: 0 8px 30px rgba(232,119,34,0.12); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem; cursor: pointer; width: 100%; text-align: left;
  gap: 1rem;
}
.faq-q-left { display: flex; align-items: center; gap: 1rem; }
.faq-q-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-2); color: var(--primary);
  transition: all 0.3s ease;
}
.faq-item.open .faq-q-icon { background: rgba(232,119,34,0.10); color: var(--accent); }
.faq-q-text { font-size: 1rem; font-weight: 700; color: var(--text-primary); transition: color 0.3s; }
.faq-item.open .faq-q-text { color: var(--accent); }
.faq-chevron { color: var(--text-muted); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.5rem 1.5rem 4.5rem; }
.faq-answer p { color: var(--text-secondary); line-height: 1.7; }

/* ══════════════════════════════════════
   WHY CMR / CTA SECTION
══════════════════════════════════════ */
.cta-section { padding: 6rem 0; }
.why-cmr-block {
  position: relative; border-radius: 3rem; overflow: hidden;
  background: var(--primary);
  padding: 4rem;
  box-shadow: 0 40px 100px rgba(27,58,107,0.30);
  margin-bottom: 6rem;
}
.why-blob-1 {
  position: absolute; top: 0; right: 0;
  width: 320px; height: 320px;
  background: rgba(232,119,34,0.20); border-radius: 50%;
  filter: blur(80px); transform: translate(50%, -50%);
  pointer-events: none;
}
.why-blob-2 {
  position: absolute; bottom: 0; left: 0;
  width: 260px; height: 260px;
  background: rgba(255,255,255,0.05); border-radius: 50%;
  filter: blur(60px); transform: translate(-33%, 50%);
  pointer-events: none;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; position: relative; z-index: 1; }
.why-text { display: flex; flex-direction: column; gap: 1.5rem; }
.why-label { background: rgba(232,119,34,0.15); border-color: rgba(232,119,34,0.35); color: #F5A623; }
.why-title { font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 900; color: #fff; line-height: 1.15; letter-spacing: -0.02em; }
.why-desc { color: rgba(255,255,255,0.70); line-height: 1.75; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.why-stat {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl); padding: 1.25rem; text-align: center;
}
.why-stat-num { font-size: 1.875rem; font-weight: 900; color: var(--accent); margin-bottom: 0.25rem; }
.why-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.60); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* Contact CTA */
.contact-cta { text-align: center; }
.contact-cta-title { font-size: clamp(2rem, 4vw, 3.125rem); font-weight: 900; color: var(--text-primary); letter-spacing: -0.02em; margin: 1.25rem 0; }
.contact-cta-desc { color: var(--text-muted); font-size: 1.0625rem; max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.7; }
.contact-cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3.5rem; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; max-width: 800px; margin: 0 auto; }
.contact-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.5rem; text-align: center;
  box-shadow: 0 4px 16px rgba(27,58,107,0.06);
  transition: all 0.4s ease;
}
.contact-card:hover { box-shadow: 0 16px 48px rgba(27,58,107,0.14); transform: translateY(-4px); }
.contact-card-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: rgba(232,119,34,0.10); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 0.75rem; color: var(--accent);
  transition: all 0.3s;
}
.contact-card:hover .contact-card-icon { background: var(--accent); color: #fff; }
.contact-card-title { font-weight: 700; color: var(--primary); font-size: 0.875rem; margin-bottom: 0.375rem; }
.contact-card-val { color: var(--text-muted); font-size: 0.8125rem; line-height: 1.5; white-space: pre-line; }
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-cmr-block { padding: 2.5rem 1.5rem; border-radius: 2rem; }
  .contact-cards { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--primary-dark); color: #fff;
  position: relative; overflow: hidden;
}
.footer-blob-1 {
  position: absolute; top: 0; right: 0;
  width: 600px; height: 400px;
  background: rgba(232,119,34,0.06); border-radius: 50%;
  filter: blur(120px); transform: translate(33%, -50%); pointer-events: none;
}
.footer-blob-2 {
  position: absolute; bottom: 0; left: 0;
  width: 400px; height: 400px;
  background: rgba(27,58,107,0.40); border-radius: 50%;
  filter: blur(100px); transform: translate(-50%, 50%); pointer-events: none;
}
.footer-map {
  position: relative; z-index: 10;
  padding: 4rem 0 0;
}
.map-container {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border); height: 260px;
}
.map-container iframe { width: 100%; height: 100%; border: 0; display: block; }
.footer-main {
  position: relative; z-index: 10;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1.4fr;
  gap: 3rem; margin-bottom: 4rem;
}
.footer-logo-wrap {
  display: inline-block; background: #fff;
  border-radius: var(--radius-md); padding: 0.5rem; margin-bottom: 1.5rem;
}
.footer-logo-wrap img { height: 38px; width: auto; object-fit: contain; }
.footer-about { color: rgba(255,255,255,0.60); font-size: 0.875rem; line-height: 1.75; max-width: 260px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,0.60);
  transition: all 0.3s;
}
.footer-social:hover { background: var(--accent); color: #fff; }
.footer-col-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 1.5rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-link {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.60);
  transition: color 0.2s;
}
.footer-link:hover { color: #fff; }
.footer-link-bar {
  display: inline-block; width: 16px; height: 2px;
  background: rgba(232,119,34,0.40); border-radius: 1px;
  transition: all 0.3s;
}
.footer-link:hover .footer-link-bar { width: 24px; background: var(--accent); }
.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.60); }
.footer-contact-item a { color: rgba(255,255,255,0.60); transition: color 0.2s; }
.footer-contact-item a:hover { color: #fff; }
.footer-contact-icon { color: var(--accent); flex-shrink: 0; margin-top: 0.125rem; width: 16px; height: 16px; }
.footer-newsletter-desc { color: rgba(255,255,255,0.60); font-size: 0.875rem; margin-bottom: 1.25rem; line-height: 1.65; }
.footer-form { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.875rem; color: #fff;
  font-family: var(--font-main);
  transition: border-color 0.2s;
  outline: none;
}
.footer-input::placeholder { color: rgba(255,255,255,0.30); }
.footer-input:focus { border-color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 2rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.40); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.40); transition: color 0.2s; }
.footer-legal a:hover { color: #fff; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   INNER PAGE HERO
══════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 8rem 0 4rem;
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; color: #fff;
  letter-spacing: -0.02em; margin: 1rem 0 0.75rem;
}
.page-hero p { color: rgba(255,255,255,0.70); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }

/* ══════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════ */
.gallery-section { padding: 4rem 0 6rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4/3; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(15,36,73,0.50);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg { color: #fff; }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-section { padding: 4rem 0 6rem; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2rem;
}
.contact-info-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 1.25rem; }
.info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.info-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: rgba(232,119,34,0.10); display: flex; align-items: center;
  justify-content: center; color: var(--accent); flex-shrink: 0;
}
.info-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 0.25rem; }
.info-val { font-size: 0.9375rem; color: var(--text-primary); font-weight: 500; }
.info-val a { color: var(--primary); transition: color 0.2s; }
.info-val a:hover { color: var(--accent); }
.contact-form-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { font-size: 1.5rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.form-desc { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1/-1; }
.form-label { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); }
.form-control {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.9375rem; color: var(--text-primary);
  font-family: var(--font-main); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--surface);
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,119,34,0.15); background: #fff; }
textarea.form-control { resize: vertical; min-height: 120px; }
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   ADMISSIONS PAGE
══════════════════════════════════════ */
.admissions-section { padding: 4rem 0 6rem; }
.admissions-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.steps-list { display: flex; flex-direction: column; gap: 1.25rem; }
.step-card {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.5rem;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.3s;
}
.step-card:hover { box-shadow: var(--shadow-md); }
.step-num {
  width: 48px; height: 48px; border-radius: var(--radius-full);
  background: var(--primary); color: #fff; font-weight: 900;
  font-size: 1.125rem; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.step-title { font-weight: 700; color: var(--text-primary); margin-bottom: 0.375rem; }
.step-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.admissions-info { display: flex; flex-direction: column; gap: 1.5rem; }
.info-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-xl); padding: 2rem; color: #fff;
}
.info-highlight h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.info-highlight ul { display: flex; flex-direction: column; gap: 0.625rem; }
.info-highlight li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9375rem; color: rgba(255,255,255,0.85); }
@media (max-width: 768px) { .admissions-layout { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   MANDATORY DISCLOSURE
══════════════════════════════════════ */
.disclosure-section { padding: 4rem 0 6rem; }
.disclosure-table-wrap {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-sm); margin-bottom: 2rem;
}
.disclosure-table-title {
  background: var(--primary); color: #fff;
  padding: 1rem 1.5rem; font-weight: 700; font-size: 1rem;
}
.disclosure-table { width: 100%; border-collapse: collapse; }
.disclosure-table td {
  padding: 0.875rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}
.disclosure-table tr:last-child td { border-bottom: none; }
.disclosure-table td:first-child { font-weight: 600; color: var(--text-primary); width: 45%; background: var(--surface); }
.disclosure-table td:last-child { color: var(--text-secondary); }
.disclosure-table tr:hover td { background: rgba(232,119,34,0.03); }

/* ══════════════════════════════════════
   ALUMNI PAGE
══════════════════════════════════════ */
.alumni-section { padding: 4rem 0 6rem; }
.alumni-intro {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-2xl); padding: 3rem; margin-bottom: 3rem;
  color: #fff; text-align: center;
}
.alumni-intro h2 { font-size: 2rem; font-weight: 900; margin-bottom: 1rem; }
.alumni-intro p { color: rgba(255,255,255,0.80); font-size: 1.0625rem; max-width: 600px; margin: 0 auto 2rem; line-height: 1.7; }
.alumni-form-card {
  background: #fff; border-radius: var(--radius-xl);
  padding: 2.5rem; box-shadow: var(--shadow-md);
  border: 1px solid var(--border); max-width: 600px; margin: 0 auto;
}
.alumni-form-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }

/* ══════════════════════════════════════
   PRINCIPAL'S MESSAGE
══════════════════════════════════════ */
.principal-section { padding: 4rem 0 6rem; }
.principal-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: start; }
.principal-photo-card {
  background: #fff; border-radius: var(--radius-2xl);
  overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border);
  text-align: center; position: sticky; top: 7rem;
}
.principal-photo {
  width: 100%; aspect-ratio: 3/4; overflow: hidden;
}
.principal-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.principal-photo-info { padding: 1.5rem; }
.principal-name { font-size: 1.125rem; font-weight: 700; color: var(--text-primary); }
.principal-title { color: var(--accent); font-size: 0.875rem; font-weight: 600; margin-top: 0.25rem; }
.principal-content h2 { font-size: 2rem; font-weight: 900; color: var(--text-primary); margin-bottom: 1.5rem; }
.principal-content p { color: var(--text-secondary); font-size: 1.0625rem; line-height: 1.85; margin-bottom: 1.5rem; }
.principal-signature { font-family: Georgia, serif; font-style: italic; font-size: 1.25rem; color: var(--primary); margin-top: 2rem; }
@media (max-width: 768px) { .principal-layout { grid-template-columns: 1fr; } .principal-photo-card { position: static; } }

/* ══════════════════════════════════════
   PRIVACY / TERMS
══════════════════════════════════════ */
.legal-section { padding: 4rem 0 6rem; }
.legal-content {
  max-width: 800px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 3rem;
  box-shadow: var(--shadow-sm);
}
.legal-content h2 { font-size: 1.375rem; font-weight: 700; color: var(--text-primary); margin: 2rem 0 0.75rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { margin: 0.75rem 0 1rem 1.5rem; }
.legal-content li { color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.8; margin-bottom: 0.5rem; list-style: disc; }

/* ══════════════════════════════════════
   ABOUT US PAGE
══════════════════════════════════════ */
.about-page-section { padding: 4rem 0 6rem; }
.about-page-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  margin-bottom: 5rem;
}
.about-page-img { border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-page-img img { width: 100%; height: 420px; object-fit: cover; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.value-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2rem;
  text-align: center; box-shadow: var(--shadow-sm);
  transition: all 0.3s; 
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-icon {
  width: 56px; height: 56px; border-radius: var(--radius-xl);
  background: rgba(232,119,34,0.10); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.value-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.value-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
@media (max-width: 768px) {
  .about-page-intro { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   UTILITY
══════════════════════════════════════ */
.mt-1 { margin-top: 0.25rem; } .mt-2 { margin-top: 0.5rem; } .mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; } .mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-fit { width: fit-content; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Body padding for fixed header */
body { padding-top: 36px; }
.page-body-offset { padding-top: 0; }

/* SVG icons inline */
.icon { display: inline-flex; align-items: center; justify-content: center; }
