/* ═══════════════════════════════════════════════════
   HLIS Global Stylesheet — Full Mobile + Animations
   ═══════════════════════════════════════════════════ */

:root {
  --navy: #0d2b55;
  --navy-light: #1a3f7a;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #faf8f3;
  --text-dark: #1a1a2e;
  --text-mid: #4a5568;
  --text-light: #718096;
  --white: #ffffff;
  --radius: 16px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(13,43,85,0.12);
  --shadow-lg: 0 24px 60px rgba(13,43,85,0.16);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── NAVIGATION ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,43,85,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.brand-text span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 8.5px;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0; margin: 0;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links li.active a {
  color: var(--white);
  background: rgba(201,168,76,0.18);
}
.nav-links li.active a { color: var(--gold-light); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 9px 18px !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: 8px;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.hamburger:active { background: rgba(255,255,255,0.08); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
/* Hamburger → X animation */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-links.open {
  display: flex !important;
  animation: slideDown 0.28s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1f3d 60%, var(--navy-light) 100%);
  padding: 120px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-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'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; padding: 0 20px; }
.page-hero .breadcrumb-nav { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.page-hero .breadcrumb-nav a { color: var(--gold-light); }
.page-hero h1 { font-size: clamp(28px,6vw,50px); color: var(--white); margin-bottom: 14px; }
.page-hero p { font-size: clamp(14px,2vw,17px); color: rgba(255,255,255,0.68); line-height: 1.7; max-width: 520px; margin: 0 auto; }

/* ── LAYOUT HELPERS ── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.section-title { font-size: clamp(24px,4vw,40px); color: var(--navy); margin-bottom: 14px; }
.section-subtitle { font-size: clamp(14px,2vw,16px); color: var(--text-mid); line-height: 1.7; max-width: 580px; }
.section-header-center { text-align: center; margin-bottom: 48px; }
.section-header-center .section-subtitle { margin: 0 auto; }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: 14px;
  padding: 13px 26px; border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.btn-gold:active { transform: translateY(0); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-weight: 500; font-size: 14px;
  padding: 12px 26px; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: var(--transition);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: var(--white); }

.btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  font-weight: 700; font-size: 14px;
  padding: 13px 26px; border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-navy:hover { background: var(--text-dark); color: var(--white); transform: translateY(-2px); }

/* ── HERO (homepage) ── */
.hero {
  min-height: 100svh;
  background: linear-gradient(135deg, var(--navy) 0%, #071628 55%, var(--navy-light) 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 68px;
}
.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'%3E%3Cg fill='%23c9a84c' fill-opacity='0.035'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/* Ambient glow blobs */
.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.hero-content {
  max-width: 1200px; margin: 0 auto;
  padding: 60px 20px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative; z-index: 1;
  width: 100%;
}
.hero-text .badge {
  display: inline-block;
  background: rgba(201,168,76,0.14);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.28);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInDown 0.7s ease both;
}
.hero-text h1 {
  font-size: clamp(30px,5.5vw,58px);
  font-weight: 700; color: var(--white);
  line-height: 1.1; margin-bottom: 18px;
  animation: fadeInUp 0.7s 0.1s ease both;
}
.hero-text h1 em { color: var(--gold); font-style: normal; }
.hero-text p {
  font-size: clamp(15px,2vw,17px);
  color: rgba(255,255,255,0.72);
  line-height: 1.75; margin-bottom: 32px;
  animation: fadeInUp 0.7s 0.2s ease both;
}
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.3s ease both;
}
.hero-stats {
  display: flex; gap: 28px;
  margin-top: 44px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.4s ease both;
}
.hero-stat h3 { font-family: 'Playfair Display',serif; font-size: 26px; color: var(--gold); margin-bottom: 2px; }
.hero-stat p { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin: 0; }

/* Hero carousel */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s 0.2s ease both;
}
.hero-carousel-wrap {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  border: 3px solid rgba(201,168,76,0.22);
  aspect-ratio: 4/3;
}
.hero-carousel-wrap .carousel,
.hero-carousel-wrap .carousel-inner,
.hero-carousel-wrap .carousel-item { height: 100%; }
.hero-carousel-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute;
  bottom: -18px; left: -18px;
  background: var(--white);
  border-radius: 14px; padding: 13px 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  display: flex; align-items: center; gap: 12px;
  min-width: 200px;
  animation: floatCard 3s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-float-card .icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg,var(--navy),var(--navy-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 16px; flex-shrink: 0;
}
.hero-float-card p { margin: 0; }
.hero-float-card .label { font-size: 9px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.8px; }
.hero-float-card .value { font-size: 13px; font-weight: 600; color: var(--text-dark); }

/* Hero keyframes */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── ABOUT ── */
.about-section { background: var(--cream); padding: 80px 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; border-radius: var(--radius);
  object-fit: cover; aspect-ratio: 4/3;
}
.about-badge {
  position: absolute; top: -18px; right: -18px;
  background: var(--gold); color: var(--navy);
  border-radius: 50%; width: 84px; height: 84px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(201,168,76,0.45);
}
.about-badge .num { font-size: 20px; font-family: 'Playfair Display',serif; line-height: 1; }
.about-badge .sub { font-size: 8.5px; letter-spacing: 0.5px; text-align: center; line-height: 1.3; }
.about-features { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.about-feature { display: flex; gap: 14px; align-items: flex-start; }
.feat-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: linear-gradient(135deg,var(--navy),var(--navy-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 15px;
}
.about-feature h4 { font-family: 'DM Sans',sans-serif; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.about-feature p { font-size: 13px; color: var(--text-mid); line-height: 1.55; margin: 0; }

/* ── VALUES ── */
.values-section { background: var(--white); padding: 80px 0; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card {
  background: var(--cream);
  border-radius: var(--radius); padding: 32px 24px;
  border: 1px solid rgba(13,43,85,0.06);
  transition: var(--transition);
  position: relative; overflow: hidden;
  cursor: default;
}
.value-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,var(--gold),var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-card:hover::before { transform: scaleX(1); }
.value-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg,var(--navy),var(--navy-light));
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 20px;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}
.value-card:hover .value-icon { transform: scale(1.08) rotate(-4deg); }
.value-card h3 { font-size: clamp(17px,2vw,20px); color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; margin: 0; }

/* ── TEACHERS ── */
.teachers-section { background: var(--navy); padding: 80px 0; }
.teachers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px,1fr));
  gap: 18px;
}
.teacher-card { text-align: center; transition: transform 0.3s ease; cursor: default; }
.teacher-card:hover { transform: translateY(-8px); }
.teacher-img {
  width: 100%; aspect-ratio: 1;
  border-radius: 14px;
  object-fit: cover; object-position: top;
  border: 3px solid rgba(201,168,76,0.18);
  transition: border-color 0.3s;
  display: block;
}
.teacher-card:hover .teacher-img { border-color: var(--gold); }
.teacher-card h4 { font-family: 'DM Sans',sans-serif; font-size: 12.5px; font-weight: 600; color: var(--white); margin-top: 10px; margin-bottom: 3px; }
.teacher-card span { font-size: 11px; color: var(--gold-light); line-height: 1.3; display: block; }

/* ── ACTIVITIES ── */
.activities-section { background: var(--cream); padding: 80px 0; }
.activities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.activity-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 20px 0 28px; }
.activity-tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 15px;
  background: var(--white);
  border: 1.5px solid rgba(13,43,85,0.1);
  border-radius: 100px;
  font-size: 13px; font-weight: 500; color: var(--navy);
  transition: var(--transition); cursor: default;
}
.activity-tag:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); transform: translateY(-2px); }
.activity-tag i { color: var(--gold); font-size: 12px; }
.activity-carousel-wrap { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.activity-carousel-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* ── TESTIMONIAL ── */
.testimonial-section {
  background: linear-gradient(135deg,var(--navy) 0%,var(--navy-light) 100%);
  padding: 80px 0;
}
.testimonial-inner { max-width: 720px; margin: 0 auto; padding: 0 20px; text-align: center; }
.quote-icon { font-size: 56px; color: var(--gold); opacity: 0.4; line-height: 1; font-family: Georgia,serif; margin-bottom: 4px; }
.testimonial-text {
  font-size: clamp(16px,2.5vw,21px);
  color: rgba(255,255,255,0.88);
  line-height: 1.75; font-style: italic;
  margin-bottom: 28px;
  font-family: 'Playfair Display',serif;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); flex-shrink: 0; }
.testimonial-author strong { display: block; color: var(--white); font-size: 14px; font-family: 'DM Sans',sans-serif; }
.testimonial-author span { font-size: 11.5px; color: var(--gold-light); }

/* ── CONTACT ── */
.contact-section { background: var(--white); padding: 80px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; }
.c-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(13,43,85,0.06);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 16px;
  transition: var(--transition);
}
.contact-info-item:hover .c-icon { background: var(--navy); color: var(--gold); }
.contact-info-item h5 { font-family: 'DM Sans',sans-serif; font-size: 11px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 3px; }
.contact-info-item p { font-size: 14.5px; color: var(--text-dark); margin: 0; }
.contact-form-box { background: var(--cream); border-radius: 20px; padding: 36px 32px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(13,43,85,0.14);
  border-radius: 8px;
  font-family: 'DM Sans',sans-serif;
  font-size: 14px; color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,43,85,0.08);
}
.form-group textarea { resize: vertical; min-height: 108px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  width: 100%; padding: 13px;
  background: var(--navy); color: var(--white);
  border: none; border-radius: 8px;
  font-family: 'DM Sans',sans-serif;
  font-size: 15px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.btn-submit:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,43,85,0.28); }
.btn-submit:active { transform: translateY(0); }

/* ── ADMISSION CTA ── */
.admission-section { background: var(--gold); padding: 72px 0; }
.admission-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 40px; align-items: center;
}
.admission-inner > img {
  width: 160px; height: 160px;
  border-radius: 50%; object-fit: cover;
  border: 4px solid rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.admission-text h2 { font-size: clamp(24px,3.5vw,34px); color: var(--navy); margin-bottom: 8px; }
.admission-text p { font-size: clamp(13px,2vw,15px); color: rgba(13,43,85,0.72); line-height: 1.65; margin: 0; }

/* ── FOOTER ── */
.site-footer { background: var(--text-dark); padding: 56px 0 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; margin-bottom: 36px; }
.footer-brand > img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); margin-bottom: 12px; }
.footer-brand h3 { font-size: 16px; color: var(--white); margin-bottom: 9px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.65; margin: 0; }
.footer-col h4 { font-family: 'DM Sans',sans-serif; font-size: 10.5px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.52); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 11.5px; color: rgba(255,255,255,0.32); margin: 0; }
.social-links { display: flex; gap: 9px; }
.social-links a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.48); font-size: 13px;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.social-links a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }

/* ══════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-content { gap: 40px; }
  .about-grid { gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Small Tablet / Large Phone */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; padding: 56px 20px 64px; }
  .hero-visual { display: none; }
  .hero-text h1 { font-size: clamp(28px,8vw,44px); }
  .hero-text p { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-badge { top: -14px; right: -14px; width: 76px; height: 76px; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .activities-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .admission-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 24px; }
  .admission-inner > img { width: 130px; height: 130px; }
}

/* Mobile */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(10,31,61,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 12px 0 20px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 999;
    max-height: calc(100svh - 68px);
    overflow-y: auto;
  }
  .nav-links a {
    padding: 13px 24px;
    border-radius: 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .nav-links .nav-cta {
    margin: 12px 20px 0;
    border-radius: 8px !important;
    text-align: center;
    justify-content: center;
    padding: 13px 20px !important;
  }
  .hamburger { display: flex; }

  /* Sections */
  .section-pad { padding: 56px 0; }
  .section-header-center { margin-bottom: 36px; }

  /* Hero */
  .hero { min-height: 100svh; padding-top: 68px; }
  .hero-content { padding: 40px 20px 56px; }
  .hero-stats { gap: 18px; padding-top: 22px; margin-top: 32px; }
  .hero-stat h3 { font-size: 22px; }
  .hero-btns { gap: 10px; }
  .hero-btns .btn-gold,
  .hero-btns .btn-outline-white { font-size: 13px; padding: 11px 20px; }

  /* About */
  .about-section { padding: 56px 0; }
  .about-grid { padding: 0 20px; gap: 28px; }
  .about-badge { width: 68px; height: 68px; top: -10px; right: -10px; }
  .about-badge .num { font-size: 16px; }
  .about-badge .sub { font-size: 7.5px; }

  /* Values */
  .values-section { padding: 56px 0; }
  .values-grid { grid-template-columns: 1fr; gap: 14px; }
  .value-card { padding: 24px 20px; }

  /* Teachers */
  .teachers-section { padding: 56px 0; }
  .teachers-grid { grid-template-columns: repeat(auto-fill, minmax(130px,1fr)); gap: 14px; }

  /* Activities */
  .activities-section { padding: 56px 0; }

  /* Testimonial */
  .testimonial-section { padding: 56px 0; }

  /* Contact */
  .contact-section { padding: 56px 0; }
  .contact-form-box { padding: 24px 18px; }
  .form-row-2 { grid-template-columns: 1fr; gap: 0; }

  /* Admission */
  .admission-section { padding: 52px 0; }

  /* Footer */
  .site-footer { padding: 44px 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* Small phones */
@media (max-width: 400px) {
  .nav-inner { padding: 0 16px; }
  .brand-text { font-size: 12.5px; }
  .section-inner { padding: 0 16px; }
  .about-grid { padding: 0 16px; }
  .hero-content { padding: 36px 16px 48px; }
  .hero-text h1 { font-size: clamp(26px,9vw,38px); }
  .teachers-grid { grid-template-columns: repeat(auto-fill, minmax(110px,1fr)); gap: 12px; }
  .contact-form-box { padding: 20px 14px; }
  .admission-inner > img { width: 110px; height: 110px; }
  .btn-gold, .btn-navy, .btn-outline-white { font-size: 13px; padding: 11px 18px; }
}

/* Touch: disable hover lifts that feel bad on touch */
@media (hover: none) {
  .value-card:hover { transform: none; box-shadow: var(--shadow-sm); }
  .value-card:hover::before { transform: scaleX(0); }
  .teacher-card:hover { transform: none; }
  .activity-tag:hover { transform: none; }
  .social-links a:hover { transform: none; }
  .btn-gold:hover, .btn-navy:hover, .btn-submit:hover { transform: none; box-shadow: none; }
}
