:root {
  --navy: #0A1F44;
  --navy-mid: #102A5F;
  --gold: #E8A020;
  --gold-light: #F5C842;
  --pink: #E91E8C;
  --sky: #29ABE2;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --text-dark: #1A1A2E;
  --text-muted: #6B7280;
  --border: rgba(10,31,68,0.12);
  --shadow-sm: 0 2px 12px rgba(10,31,68,0.08);
  --shadow-md: 0 8px 32px rgba(10,31,68,0.12);
  --shadow-lg: 0 20px 60px rgba(10,31,68,0.18);
  --radius: 16px;
  --radius-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,31,68,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-logo-text { line-height: 1.1; }
.nav-logo-text .school-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: white; display: block; }
.nav-logo-text .school-tagline { font-size: 10px; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 16px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

.nav-links a:hover { color: white; }
.nav-links a:hover::after { left: 16px; right: 16px; }

.nav-cta {
  background: linear-gradient(135deg, var(--pink), #c0156e);
  color: white !important;
  border-radius: 50px;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(233,30,140,0.4); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0D2D6B 50%, #1A3A7A 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; opacity: 0.06; }
.shape-1 { width: 600px; height: 600px; background: var(--gold); top: -200px; right: -100px; animation: float 8s ease-in-out infinite; }
.shape-2 { width: 400px; height: 400px; background: var(--pink); bottom: -100px; left: -100px; animation: float 10s ease-in-out infinite reverse; }
.shape-3 { width: 200px; height: 200px; background: var(--sky); top: 40%; left: 30%; animation: float 6s ease-in-out infinite; }

@keyframes float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.4);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease both;
}

.hero-badge::before { content: '✦'; font-size: 10px; }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s 0.1s ease both;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #d48a10);
  color: var(--navy);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(232,160,32,0.35);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232,160,32,0.5); }

.btn-outline {
  background: transparent;
  color: white;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: all 0.3s;
}

.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.6s 0.4s ease both;
}

.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); display: block; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; letter-spacing: 0.04em; text-transform: uppercase; }

.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s 0.3s ease both;
}

.hero-card-main {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-logo-large {
  width: 140px;
  height: 140px;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-logo-large img { width: 110px; height: 110px; object-fit: contain; }

.hero-school-info { text-align: center; }
.hero-school-info h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: white; margin-bottom: 0.5rem; }
.hero-school-info p { font-size: 13px; color: rgba(255,255,255,0.6); }

.floating-badge {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  animation: float 4s ease-in-out infinite;
}

.floating-badge .icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.badge-1 { top: -20px; left: -30px; animation-delay: 0s; }
.badge-2 { bottom: -20px; right: -20px; animation-delay: 1.5s; }
.badge-1 .icon { background: #FEF3C7; }
.badge-2 .icon { background: #DCF5EC; }

/* ── SECTIONS COMMON ── */
section { padding: 90px 2rem; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-label { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); margin-bottom: 0.75rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--navy); line-height: 1.25; }
.section-title em { font-style: normal; color: var(--gold); }
.section-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-top: 1rem; max-width: 560px; }
.section-header { margin-bottom: 3.5rem; }

/* ── HIGHLIGHTS ── */
.highlights { background: var(--off-white); }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.highlight-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--sky));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.highlight-card:hover::before { transform: scaleX(1); }

.highlight-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.highlight-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 0.6rem; }
.highlight-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ── ABOUT / PRINCIPAL ── */
.principal-section { background: white; }

.principal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.principal-img-wrap { position: relative; }

.principal-img-box {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy), #1A3A7A);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.principal-img-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.principal-name-box {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 8px 20px;
  text-align: center;
  z-index: 1;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  line-height: 1.2;
}

.principal-name-box strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.principal-name-box span {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-top: 0;
}

.accent-box {
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  background: var(--gold);
  border-radius: 20px;
  z-index: -1;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: -1rem;
}

.principal-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.principal-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }

/* ── ACADEMICS ── */
.academics { background: var(--navy); }
.academics .section-label { color: var(--gold); }
.academics .section-title { color: white; }
.academics .section-sub { color: rgba(255,255,255,0.65); }

.academics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.academic-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.academic-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.academic-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.academic-card h3 { color: white; font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.academic-card p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.6; }

/* ── ADMISSIONS ── */
.admissions { background: var(--off-white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

.step-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s;
}

.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-num {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy), #1A3A7A);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  position: relative;
}

.step-num::after {
  content: '';
  position: absolute;
  top: 50%; left: 100%;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--navy), transparent);
}

.step-card:last-child .step-num::after { display: none; }
.step-card h3 { font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.step-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

.admission-cta-box {
  background: linear-gradient(135deg, var(--navy), #1A3A7A);
  border-radius: 24px;
  padding: 3rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.admission-cta-box h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: white; margin-bottom: 0.5rem; }
.admission-cta-box p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* ── FACILITIES ── */
.facilities { background: white; }

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
  margin-top: 3rem;
}

.facility-card {
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.3s;
}

.facility-card:hover { transform: scale(1.02); }
.facility-card.big { grid-column: span 2; }

.facility-card .fc-icon { font-size: 2rem; margin-bottom: 1rem; }
.facility-card h3 { font-weight: 600; font-size: 1.05rem; margin-bottom: 0.25rem; }
.facility-card p { font-size: 0.85rem; opacity: 0.8; line-height: 1.5; }

.fc-blue   { background: linear-gradient(135deg, #E6F1FB, #B5D4F4); color: #0C447C; }
.fc-gold   { background: linear-gradient(135deg, #FAEEDA, #FAC775); color: #633806; }
.fc-green  { background: linear-gradient(135deg, #EAF3DE, #C0DD97); color: #27500A; }
.fc-pink   { background: linear-gradient(135deg, #FBEAF0, #F4C0D1); color: #72243E; }
.fc-teal   { background: linear-gradient(135deg, #E1F5EE, #9FE1CB); color: #085041; }
.fc-purple { background: linear-gradient(135deg, #EEEDFE, #CECBF6); color: #3C3489; }

/* ── GALLERY ── */
.gallery { background: var(--off-white); }

.gallery-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.tab-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.tab-btn.active, .tab-btn:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item:hover { transform: scale(1.02); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  gap: 0.5rem;
  min-height: 200px;
}

.gallery-placeholder span { font-size: 0.8rem; font-weight: 500; opacity: 0.7; }

/* ── TESTIMONIALS ── */
.testimonials { background: white; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
}

.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.92rem; color: #444; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  color: white;
  flex-shrink: 0;
}

.reviewer-info strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); }
.reviewer-info span { font-size: 12px; color: var(--text-muted); }

/* ── CONTACT ── */
.contact { background: var(--navy); }
.contact .section-label { color: var(--gold); }
.contact .section-title { color: white; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 44px; height: 44px;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-text strong { display: block; color: white; font-size: 15px; margin-bottom: 3px; }
.info-text span { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; }

.contact-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 2.5rem;
}

.contact-form-wrap h3 { font-family: 'Playfair Display', serif; color: white; font-size: 1.4rem; margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; font-weight: 500; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 12px 16px;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group select option { background: var(--navy); color: white; }
.form-group textarea { height: 100px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── SEND MESSAGE BUTTON (single unified style) ── */
.btn-submit,
#sendBtn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), #d48a10);
  color: var(--navy);
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  box-shadow: 0 4px 16px rgba(232,160,32,0.3);
}

.btn-submit:hover,
#sendBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,160,32,0.5);
  background: linear-gradient(135deg, #f5b030, #c07a0a);
}

.btn-submit:active,
#sendBtn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(232,160,32,0.3);
}

.map-embed {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  border: 1px solid rgba(255,255,255,0.1);
}

.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ── FOOTER ── */
footer {
  background: #050F24;
  padding: 4rem 2rem 2rem;
  color: rgba(255,255,255,0.7);
}

.footer-inner { max-width: 1240px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-brand .logo-row img { height: 44px; filter: brightness(0) invert(1); }
.footer-brand .logo-row .brand-text { font-family: 'Playfair Display', serif; color: white; font-size: 15px; font-weight: 600; line-height: 1.2; }
.footer-brand .brand-tag { font-size: 10px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; display: block; }
.footer-brand p { font-size: 13px; line-height: 1.8; margin-bottom: 1.2rem; }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}

.social-link:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.footer-col h4 { color: white; font-size: 14px; font-weight: 600; margin-bottom: 1.2rem; letter-spacing: 0.04em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── WHATSAPP FLOAT BUTTON ── */
.whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all 0.3s;
  animation: pulseWA 3s ease-in-out infinite;
}

.whatsapp-btn:hover { transform: scale(1.1); }

@keyframes pulseWA {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 8px 40px rgba(37,211,102,0.7); }
}

/* ── COUNTERS ── */
.counters { background: linear-gradient(135deg, var(--gold), #d48a10); }

.counters-inner {
  max-width: 1840px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6rem;
  text-align: center;
}

.counter-item .num   { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800; color: var(--navy); }
.counter-item .label { font-size: 14px; font-weight: 600; color: rgba(10,31,68,0.75); margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── NEWS ── */
.news { background: var(--off-white); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }

.news-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.news-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.news-body { padding: 1.5rem; }
.news-tag  { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink); margin-bottom: 0.5rem; }
.news-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); line-height: 1.5; margin-bottom: 0.5rem; }
.news-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.news-date    { font-size: 12px; color: var(--text-muted); margin-top: 1rem; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE NAV ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(10,31,68,0.98);
  z-index: 999;
  flex-direction: column;
  padding: 2rem;
  gap: 0.5rem;
  overflow-y: auto;
}

.mobile-menu.open { display: flex; }
.mobile-menu a { color: white; text-decoration: none; padding: 14px 0; font-size: 1.1rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu a:last-child { border: none; background: var(--pink); border-radius: 10px; text-align: center; margin-top: 1rem; padding: 14px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 1.5rem; }
  .hero-visual { order: -1; }
  .hero-card-main { max-width: 360px; margin: 0 auto; }
  .floating-badge.badge-1 { left: -10px; }
  .floating-badge.badge-2 { right: -10px; }

  .principal-inner { grid-template-columns: 1fr; }
  .principal-img-box { max-width: 340px; margin: 0 auto; }

  .facilities-grid { grid-template-columns: 1fr 1fr; }
  .facility-card.big { grid-column: span 2; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }

  .counters-inner { gap: 3rem; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
}

@media (max-width: 600px) {
  section { padding: 60px 1.25rem; }

  .hero-stats { gap: 1.2rem; }
  .stat-num { font-size: 1.5rem; }

  .facilities-grid { grid-template-columns: 1fr; }
  .facility-card.big { grid-column: span 1; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }

  .counters-inner { gap: 2rem; flex-wrap: wrap; }
  .counter-item .num { font-size: 2.2rem; }

  .form-row { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }

  .admission-cta-box { text-align: center; justify-content: center; }
}
