/* ============================================================
   BRIGHT MINDS EDUCATION CENTRE
   Mobile-first CSS — written clean from scratch
   ============================================================ */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body { font-family: 'Outfit', sans-serif; background: #faf8f3; color: #1c1c1c; overflow-x: hidden; }

:root {
  --teal: #0d6e6e;
  --teal-dark: #094f4f;
  --teal-light: #e0f5f5;
  --gold: #e8a020;
  --gold-light: #fff4e0;
  --gold-dark: #c07800;
  --cream: #faf8f3;
  --ink: #1c1c1c;
  --muted: #6b7280;
  --radius: 20px;
}

h1, h2, h3, h4, h5 { font-family: 'Fraunces', serif; line-height: 1.15; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
p { line-height: 1.75; }

.eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--teal); margin-bottom: 10px;
  display: block;
}
.eyebrow.center { text-align: center; }
h2.center { text-align: center; }

/* ===== CURSOR (desktop only) ===== */
.cursor-dot { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor-dot {
    display: block;
    width: 10px; height: 10px;
    background: var(--gold); border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
  }
}

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: #fff;
  padding: 15px 28px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: all 0.25s; border: 2px solid var(--gold);
  font-family: 'Outfit', sans-serif; cursor: pointer;
  min-height: 50px;
}
.btn-gold:active { transform: scale(0.97); }
@media (hover: hover) { .btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); } }

.btn-teal {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--teal); color: #fff;
  padding: 15px 28px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: all 0.25s; border: 2px solid var(--teal);
  font-family: 'Outfit', sans-serif; min-height: 50px;
}
.btn-teal:active { transform: scale(0.97); }
@media (hover: hover) { .btn-teal:hover { background: var(--teal-dark); } }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  background: transparent; color: var(--ink);
  padding: 14px 24px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid rgba(28,28,28,0.25); transition: all 0.25s; min-height: 50px;
}
@media (hover: hover) { .btn-outline-dark:hover { background: var(--ink); color: #fff; } }

.btn-outline-light {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: #fff;
  padding: 14px 24px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.25s; margin-top: 16px;
  font-family: 'Outfit', sans-serif; min-height: 50px;
}
@media (hover: hover) { .btn-outline-light:hover { background: #fff; color: var(--teal); } }

/* ===== POPUP ===== */
.popup-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.6);
  align-items: flex-end; justify-content: center;
  backdrop-filter: blur(4px);
}
.popup-box {
  background: #fff;
  border-radius: 28px 28px 0 0;
  padding: 12px 24px 40px;
  width: 100%;
  position: relative;
  animation: slideUp 0.4s cubic-bezier(0.34,1.2,0.64,1) both;
  max-height: 90vh; overflow-y: auto;
}
@media (min-width: 600px) {
  .popup-overlay { align-items: center; padding: 20px; }
  .popup-box { border-radius: 28px; padding: 48px 40px; max-width: 520px; animation: popUp 0.4s cubic-bezier(0.34,1.56,0.64,1) both; }
  .popup-box::before { display: none; }
}
.popup-box::before {
  content: ''; display: block;
  width: 44px; height: 5px;
  background: #d1d5db; border-radius: 3px;
  margin: 0 auto 20px;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes popUp { from { opacity: 0; transform: scale(0.88); } to { opacity: 1; transform: scale(1); } }
.popup-close {
  position: absolute; top: 16px; right: 16px;
  background: #f3f4f6; border: none; border-radius: 50%;
  width: 38px; height: 38px; cursor: pointer; font-size: 1rem; color: #6b7280;
  display: flex; align-items: center; justify-content: center;
}
.popup-badge {
  display: inline-block; background: var(--gold-light); color: var(--gold-dark);
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px;
  margin-bottom: 14px; border: 1px solid rgba(232,160,32,0.3);
}
.popup-box h2 { font-size: 1.65rem; color: #1c1c1c; margin-bottom: 10px; }
.popup-box h2 em { color: var(--teal); font-style: italic; }
.popup-box > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 16px; }
.popup-list { margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.popup-list li { font-size: 0.88rem; color: #374151; font-weight: 500; }
.popup-btns { display: flex; gap: 10px; flex-direction: column; }
@media (min-width: 400px) { .popup-btns { flex-direction: row; } }
.popup-btns .btn-gold { flex: 1; }
.popup-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #25d366; color: #fff; flex: 1;
  padding: 15px 16px; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem; min-height: 50px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(250,248,243,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 12px 18px;
  display: flex; align-items: center;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-right: auto; }
.logo-mark {
  width: 38px; height: 38px; background: var(--teal); color: #fff;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 0.88rem; font-weight: 900; flex-shrink: 0;
}
.logo-mark.sm { width: 34px; height: 34px; font-size: 0.8rem; }
.logo-words { font-family: 'Fraunces', serif; font-size: 0.82rem; font-weight: 700; line-height: 1.2; }
.logo-words span { color: var(--gold); }

/* Desktop nav links — hidden on mobile */
.nav-links { display: none; }
.nav-cta { display: none; }
@media (min-width: 1001px) {
  .nav-links {
    display: flex; gap: 6px; align-items: center; margin: 0 24px;
  }
  .nav-links a {
    font-size: 0.84rem; font-weight: 500; color: var(--muted);
    transition: color 0.2s; padding: 6px 10px; border-radius: 8px;
    white-space: nowrap;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--teal); }
  .nav-highlight {
    font-weight: 700 !important; padding: 6px 12px !important;
    border-radius: 50px !important; border: 2px solid transparent;
    font-size: 0.8rem !important;
  }
  .nav-computer {
    background: var(--gold-light) !important; color: var(--gold-dark) !important;
    border-color: rgba(232,160,32,0.3) !important;
  }
  .nav-computer:hover { background: var(--gold) !important; color: #fff !important; }
  .nav-ntt {
    background: var(--teal-light) !important; color: var(--teal) !important;
    border-color: rgba(13,110,110,0.2) !important;
  }
  .nav-ntt:hover { background: var(--teal) !important; color: #fff !important; }
  .nav-cta {
    display: block;
    background: var(--teal); color: #fff;
    padding: 10px 20px; border-radius: 50px;
    font-size: 0.84rem; font-weight: 700;
    flex-shrink: 0; transition: all 0.25s; white-space: nowrap;
  }
  .nav-cta:hover { background: var(--teal-dark); }
}

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
  margin-left: 12px; min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }
@media (min-width: 1001px) { .hamburger { display: none; } }

/* Mobile menu */
.mob-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  padding: 8px 0 20px;
  max-height: 80vh; overflow-y: auto;
}
.mob-menu[style*="flex"] { display: flex !important; }
.mob-menu a {
  padding: 15px 20px; font-size: 1rem; font-weight: 500;
  color: var(--ink); border-bottom: 1px solid #f5f5f5;
  transition: background 0.15s;
}
.mob-menu a:active { background: var(--teal-light); }
.mob-highlight { font-weight: 700 !important; margin: 6px 14px !important; border-radius: 14px !important; border-bottom: none !important; padding: 16px 20px !important; }
.mob-computer { background: var(--gold-light) !important; color: var(--gold-dark) !important; }
.mob-ntt { background: var(--teal-light) !important; color: var(--teal-dark) !important; }
.mob-cta { background: var(--teal) !important; color: #fff !important; margin: 10px 14px 0 !important; border-radius: 14px !important; text-align: center !important; border-bottom: none !important; font-weight: 700 !important; }

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  background: var(--cream);
  padding: 90px 18px 48px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
@media (min-width: 900px) {
  .hero { display: grid; grid-template-columns: 1fr 1fr; padding: 120px 6vw 60px; }
}
.hero-blob { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(60px); }
.blob1 { width: 300px; height: 300px; background: rgba(13,110,110,0.08); top: -60px; right: -60px; }
.blob2 { width: 250px; height: 250px; background: rgba(232,160,32,0.1); bottom: 0; left: 0; }
.blob3 { display: none; }
@media (min-width: 900px) {
  .blob1 { width: 500px; height: 500px; }
  .blob2 { width: 350px; height: 350px; }
  .blob3 { display: block; width: 200px; height: 200px; background: rgba(13,110,110,0.06); top: 40%; left: 35%; }
}
.hero-left { z-index: 2; }
.hero-pill {
  display: inline-block; background: var(--gold-light); color: var(--gold-dark);
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px;
  margin-bottom: 20px; border: 1px solid rgba(232,160,32,0.3);
  animation: fadeUp 0.6s ease both;
}
.hero h1 {
  font-size: clamp(2.6rem, 9vw, 5rem);
  color: var(--ink); line-height: 1.05; margin-bottom: 18px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em { color: var(--teal); font-style: italic; }
.hero-left > p {
  font-size: 1rem; color: var(--muted); margin-bottom: 28px;
  animation: fadeUp 0.6s 0.2s ease both;
  max-width: 480px;
}
.hero-actions {
  display: flex; flex-direction: column; gap: 12px;
  animation: fadeUp 0.6s 0.3s ease both;
}
@media (min-width: 480px) { .hero-actions { flex-direction: row; flex-wrap: wrap; } }

/* Mobile stats strip */
.hero-stats-mobile {
  display: flex; gap: 10px; margin-top: 28px;
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-stat-m {
  flex: 1; background: #fff; border-radius: 16px; padding: 14px 10px;
  text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.05);
}
.hero-stat-m span { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 900; color: var(--teal); display: block; }
.hero-stat-m p { font-size: 0.65rem; color: var(--muted); font-weight: 600; margin-top: 3px; line-height: 1.3; }
.hero-stat-m.gold span { color: var(--gold-dark); }
@media (min-width: 900px) { .hero-stats-mobile { display: none; } }

/* Desktop hero right */
.hero-right { display: none; }
@media (min-width: 900px) {
  .hero-right {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; align-content: center; z-index: 2; padding-left: 32px;
    animation: fadeUp 0.7s 0.3s ease both;
  }
}
.hero-card-main {
  grid-column: 1 / 3; background: var(--teal); color: #fff;
  border-radius: 24px; padding: 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.hero-card-icon { font-size: 2rem; margin-bottom: 4px; }
.hero-card-main h3 { font-size: 1.4rem; font-family: 'Fraunces', serif; }
.hero-card-main p { font-size: 0.82rem; opacity: 0.7; }
.hero-card-small {
  background: #fff; border-radius: 18px; padding: 18px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.05);
}
.hero-card-small span { font-family: 'Fraunces', serif; font-size: 1.4rem; color: var(--teal); font-weight: 900; display: block; line-height: 1.1; }
.hero-card-small p { font-size: 0.72rem; color: var(--muted); margin-top: 4px; font-weight: 600; }
.c1 { background: var(--gold-light); }
.c1 span { color: var(--gold-dark); }
.hero-deco-ring {
  position: absolute; width: 160px; height: 160px;
  border: 3px dashed rgba(13,110,110,0.15); border-radius: 50%;
  top: -20px; right: -20px;
  animation: spin 20s linear infinite; pointer-events: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== MARQUEE ===== */
.marquee-wrap { background: var(--teal); overflow: hidden; padding: 12px 0; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 24px; animation: marquee 28s linear infinite; }
.marquee-track span { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: 1px; text-transform: uppercase; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== TUITION SECTION ===== */
.classes { background: var(--ink); color: #fff; padding: 64px 18px; }
@media (min-width: 900px) { .classes { padding: 100px 6vw; } }
.classes-head { margin-bottom: 32px; }
.classes-head .eyebrow { color: var(--gold); }
.classes-head h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: #fff; margin: 8px 0 12px; }
.classes-sub { color: rgba(255,255,255,0.5); font-size: 0.95rem; }

.classes-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.tab {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 18px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s; font-family: 'Outfit', sans-serif;
  min-height: 44px;
}
.tab.tab-active { background: var(--gold); color: #fff; border-color: var(--gold); }

.panel-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 600px) { .panel-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; } }
.panel-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 20px;
}
.panel-card h5 { font-size: 1rem; color: #fff; margin-bottom: 6px; }
.panel-card p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 10px; }
.pc-boards { display: inline-block; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); padding: 3px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; }
.panel-card.gold { border-color: rgba(232,160,32,0.3); background: rgba(232,160,32,0.07); }
.panel-card.gold .pc-boards { background: rgba(232,160,32,0.15); color: var(--gold); }
.panel-note { margin-top: 14px; color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* ===== COMPUTER SECTION ===== */
.computer-section { background: #0f1923; color: #fff; padding: 64px 18px; }
@media (min-width: 900px) { .computer-section { padding: 100px 6vw; } }
.computer-section .section-header { margin-bottom: 36px; }
.computer-section .section-header h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 8px 0 12px; }

/* ===== NTT SECTION ===== */
.ntt-section { background: linear-gradient(135deg, #082525 0%, #0d5050 100%); color: #fff; padding: 64px 18px; }
@media (min-width: 900px) { .ntt-section { padding: 100px 6vw; } }
.ntt-section .section-header { margin-bottom: 36px; }
.ntt-section .section-header h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 8px 0 12px; }

.section-header { max-width: 720px; }
.section-sub { font-size: 0.95rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* Highlight grid cards */
.highlight-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 600px) { .highlight-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1000px) {
  .computer-section .highlight-grid { grid-template-columns: repeat(4, 1fr); }
  .ntt-section .highlight-grid { grid-template-columns: repeat(2, 1fr); max-width: 860px; }
}
.highlight-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px; padding: 28px 22px; transition: transform 0.25s;
}
@media (hover: hover) { .highlight-card:hover { transform: translateY(-5px); } }
.highlight-card.hc-accent { background: var(--gold); border-color: var(--gold); }
.hc-icon { font-size: 2.6rem; margin-bottom: 16px; display: block; }
.highlight-card h3 { font-size: 1.15rem; color: #fff; margin-bottom: 10px; }
.highlight-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.75; }
.highlight-card.hc-accent p { color: rgba(255,255,255,0.85); }
.hc-tag {
  display: inline-block; margin-top: 18px;
  background: rgba(255,255,255,0.15); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 6px 14px; border-radius: 50px;
}
.highlight-card.hc-accent .hc-tag { background: rgba(255,255,255,0.25); }
.ntt-full-name {
  font-size: 0.78rem !important; color: var(--gold) !important;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 10px !important; font-family: 'Outfit', sans-serif !important;
}
.ntt-perks {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px;
}
.ntt-perk {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px; padding: 12px 18px; flex: 1; min-width: 150px;
}
.ntt-perk span { font-size: 1.3rem; }
.ntt-perk p { font-size: 0.82rem; color: rgba(255,255,255,0.75); font-weight: 600; margin: 0; }

/* ===== ABOUT ===== */
.about { display: flex; background: #fff; overflow: hidden; }
.about-tag-col { width: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--teal-light); }
.vertical-tag { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 0.62rem; font-weight: 800; letter-spacing: 4px; color: var(--teal); text-transform: uppercase; }
.about-body { display: flex; flex-direction: column; gap: 32px; padding: 56px 18px 56px 20px; flex: 1; }
@media (min-width: 900px) {
  .about-tag-col { width: 60px; }
  .about-body { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; padding: 100px 6vw 100px 48px; align-items: center; }
}
.about-photo-wrap { position: relative; max-width: 280px; }
@media (min-width: 900px) { .about-photo-wrap { max-width: 100%; } }
.about-photo {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 24px 24px 24px 6px; height: 280px;
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
  overflow: hidden;
}
@media (min-width: 900px) { .about-photo { height: 420px; } }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 24px 24px 24px 6px; pointer-events: none; }
.about-photo-badge {
  position: absolute; bottom: -16px; left: 14px;
  background: #fff; border-radius: 12px; padding: 10px 14px;
  font-size: 0.78rem; box-shadow: 0 8px 28px rgba(0,0,0,0.12); line-height: 1.5;
}
.about-photo-badge strong { display: block; font-size: 0.88rem; color: var(--teal); margin-bottom: 2px; }
.about-years-badge {
  position: absolute; top: -12px; right: -12px;
  width: 56px; height: 56px; background: var(--gold); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 0.82rem; font-weight: 900; text-align: center; line-height: 1.2;
}
.about-text { padding-top: 24px; }
@media (min-width: 900px) { .about-text { padding-top: 0; } }
.about-text h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); color: var(--ink); margin-bottom: 14px; }
.about-text h2 em { color: var(--teal); font-style: italic; }
.about-text p { color: var(--muted); margin-bottom: 12px; font-size: 0.95rem; }
.about-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 24px; }
.chip { background: var(--teal-light); color: var(--teal); padding: 7px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }

/* ===== WHY US ===== */
.why { background: var(--cream); padding: 64px 18px; }
@media (min-width: 900px) { .why { padding: 100px 6vw; } }
.why-header { text-align: center; max-width: 600px; margin: 0 auto 40px; }
.why-header h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); color: var(--ink); margin-top: 8px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 1100px; margin: 0 auto; }
@media (min-width: 900px) { .why-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.why-card { border-radius: 18px; padding: 22px 18px; position: relative; overflow: hidden; transition: transform 0.25s; }
@media (min-width: 900px) { .why-card { padding: 32px 28px; } }
@media (hover: hover) { .why-card:hover { transform: translateY(-4px); } }
.wc1 { background: var(--teal); color: #fff; }
.wc2 { background: var(--gold-light); }
.wc3 { background: #fff; border: 2px solid #eee; }
.wc4 { background: #fff; border: 2px solid #eee; }
.wc5 { background: var(--teal-light); }
.wc6 { background: var(--gold); color: #fff; }
.wc-num { font-family: 'Fraunces', serif; font-size: 2.5rem; font-weight: 900; opacity: 0.1; position: absolute; top: 8px; right: 12px; line-height: 1; }
.wc-icon { font-size: 1.6rem; margin-bottom: 10px; }
.why-card h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 6px; }
@media (min-width: 900px) { .why-card h4 { font-size: 1rem; } }
.why-card p { font-size: 0.8rem; line-height: 1.6; opacity: 0.8; }
.wc1 h4, .wc6 h4 { color: #fff; }
.wc1 p, .wc6 p { color: rgba(255,255,255,0.8); opacity: 1; }

/* ===== INFO BAND ===== */
.info-band { display: grid; grid-template-columns: 1fr; }
@media (min-width: 700px) { .info-band { grid-template-columns: 1fr 1fr; } }
.info-card { padding: 52px 18px; display: flex; flex-direction: column; }
@media (min-width: 900px) { .info-card { padding: 72px 6vw; } }
.timing-card-new { background: var(--teal); }
.location-card { background: var(--teal-dark); }
.info-card-icon { font-size: 2rem; margin-bottom: 14px; }
.info-card h3 { font-size: 1.5rem; color: #fff; margin-bottom: 12px; }
.big-time { font-family: 'Fraunces', serif; font-size: 2.4rem; color: var(--gold); font-weight: 900; margin-bottom: 10px; line-height: 1; }
@media (min-width: 900px) { .big-time { font-size: 3rem; } }
.info-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.addr { line-height: 1.8 !important; }
.phones { margin-top: 12px !important; font-weight: 600; color: rgba(255,255,255,0.85) !important; }

/* ===== TESTIMONIALS ===== */
.testi { background: var(--cream); padding: 64px 18px; }
@media (min-width: 900px) { .testi { padding: 100px 6vw; } }
.testi h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); color: var(--ink); margin: 8px 0 32px; }
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 1100px; margin: 0 auto; }
@media (min-width: 700px) { .testi-grid { grid-template-columns: 1fr 1fr; gap: 18px; } }
@media (min-width: 1000px) { .testi-grid { grid-template-columns: 1fr 1fr 1fr; } }
.testi-card { background: #fff; border-radius: 20px; padding: 26px 22px; border: 1px solid rgba(0,0,0,0.06); }
.tc-tall { background: var(--teal); color: #fff; }
@media (min-width: 1000px) { .tc-tall { grid-row: span 2; } }
@media (min-width: 700px) { .tc-wide { grid-column: span 2; } }
.quote-mark { font-family: 'Fraunces', serif; font-size: 3rem; color: var(--gold); line-height: 0.8; margin-bottom: 12px; display: block; }
.tc-tall .quote-mark { color: rgba(255,255,255,0.3); }
.testi-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }
.tc-tall p { color: rgba(255,255,255,0.8); }
.testi-author { margin-top: 16px; font-size: 0.78rem; font-weight: 700; color: var(--teal); }
.tc-tall .testi-author { color: rgba(255,255,255,0.5); }

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, #0a3d3d, #0d6e6e);
  padding: 64px 18px; text-align: center; position: relative; overflow: hidden;
}
@media (min-width: 900px) { .final-cta { padding: 100px 6vw; } }
.cta-deco-left, .cta-deco-right { position: absolute; font-size: 5rem; opacity: 0.06; color: #fff; font-family: serif; }
.cta-deco-left { top: 20px; left: 20px; }
.cta-deco-right { bottom: 20px; right: 20px; }
.final-cta h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); color: #fff; margin: 8px 0 16px; }
.final-cta > p { color: rgba(255,255,255,0.65); font-size: 0.95rem; max-width: 500px; margin: 0 auto 32px; }
.cta-btns { display: flex; flex-direction: column; gap: 12px; align-items: center; }
@media (min-width: 500px) { .cta-btns { flex-direction: row; justify-content: center; } }
.cta-btns .btn-gold, .cta-btns .btn-outline-light { width: 100%; max-width: 260px; }

/* ===== FOOTER ===== */
.footer { background: #0f0f0f; color: rgba(255,255,255,0.6); padding: 52px 0 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 18px 48px; display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 700px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (min-width: 1000px) { .footer-inner { grid-template-columns: 2fr 1fr 1.5fr; gap: 56px; } }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer-brand strong { color: rgba(255,255,255,0.85); }
.footer-col h5 { color: #fff; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; font-family: 'Outfit', sans-serif; }
.footer-col a, .footer-col p { display: block; font-size: 0.85rem; margin-bottom: 10px; transition: color 0.2s; padding: 2px 0; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); text-align: center; padding: 20px 18px; font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: linear-gradient(135deg, #0a3d3d, var(--teal)); padding: 110px 18px 56px; color: #fff; }
@media (min-width: 700px) { .page-hero { padding: 150px 6vw 72px; } }
.page-hero .eyebrow { color: rgba(255,255,255,0.5); }
.page-hero h1 { font-size: clamp(2rem, 6vw, 3.5rem); margin: 8px 0 14px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }

/* ===== GALLERY ===== */
.gallery-sec { background: #fff; padding: 56px 18px; }
@media (min-width: 700px) { .gallery-sec { padding: 80px 6vw; } }
.gallery-sec h2 { font-size: 1.8rem; color: var(--ink); margin: 8px 0 28px; }
.gallery-sec h3 { font-size: 1.1rem; color: var(--teal); font-weight: 700; margin: 40px 0 16px; font-family: 'Outfit', sans-serif; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 600px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
.g-item {
  border-radius: 14px; overflow: hidden; aspect-ratio: 4/3;
  background: var(--teal-light); position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  border: 2px dashed rgba(13,110,110,0.2); transition: transform 0.25s;
  font-size: 2rem; align-items: center;
}
@media (hover: hover) { .g-item:hover { transform: scale(1.02); } }
.g-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; -webkit-user-select: none; user-select: none; }
.g-item p {
  position: relative; z-index: 2;
  background: rgba(0,0,0,0.52); color: #fff;
  width: 100%; text-align: center;
  padding: 5px 8px; font-size: 0.72rem; font-weight: 600; margin: 0;
}

/* ===== ADMISSIONS ===== */
.adm-sec { background: #fff; padding: 56px 18px; }
@media (min-width: 700px) { .adm-sec { padding: 80px 6vw; } }
.adm-sec h2 { font-size: 1.8rem; color: var(--ink); margin: 8px 0 28px; }
.steps-row { display: flex; flex-direction: column; margin-bottom: 44px; }
@media (min-width: 700px) { .steps-row { flex-direction: row; } }
.step { flex: 1; background: var(--cream); padding: 22px 18px; border-bottom: 1px solid #eee; }
@media (min-width: 700px) { .step { border-bottom: none; border-right: 1px solid #eee; } }
.step:last-child { border: none; }
.step-n { width: 36px; height: 36px; background: var(--teal); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; margin-bottom: 10px; }
.step h4 { font-size: 0.92rem; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.step p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.adm-form-wrap { max-width: 640px; margin: 0 auto; background: var(--cream); border-radius: 20px; padding: 28px 18px; }
@media (min-width: 600px) { .adm-form-wrap { padding: 48px; } }
.adm-form-wrap h3 { font-size: 1.35rem; color: var(--ink); margin-bottom: 22px; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--ink); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.5px; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 14px 16px; border: 2px solid #e8e4da; border-radius: 12px;
  font-family: 'Outfit', sans-serif; font-size: 1rem; color: var(--ink); background: #fff;
  transition: border-color 0.2s; -webkit-appearance: none; appearance: none;
  min-height: 50px;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--teal); }
.fg textarea { resize: vertical; min-height: 100px; }
.form-btn {
  width: 100%; padding: 16px; background: var(--teal); color: #fff; border: none;
  border-radius: 50px; font-size: 1rem; font-weight: 700; cursor: pointer;
  font-family: 'Outfit', sans-serif; transition: all 0.25s; min-height: 54px;
}
@media (hover: hover) { .form-btn:hover { background: var(--teal-dark); } }

/* ===== CONTACT ===== */
.contact-sec { background: #fff; padding: 56px 18px; }
@media (min-width: 700px) { .contact-sec { padding: 80px 6vw; } }
.contact-sec h2 { font-size: 1.8rem; color: var(--ink); margin: 8px 0 32px; }
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 900px) { .contact-layout { grid-template-columns: 1fr 1.3fr; gap: 56px; } }
.cinfo-list { display: flex; flex-direction: column; gap: 12px; }
.cinfo { display: flex; gap: 14px; align-items: flex-start; background: var(--cream); border-radius: 14px; padding: 16px; }
.cinfo-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.cinfo h5 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--teal); margin-bottom: 5px; }
.cinfo p, .cinfo a { font-size: 0.88rem; color: var(--muted); line-height: 1.6; display: block; transition: color 0.2s; }
.cinfo a:hover { color: var(--teal); }
.cform { background: var(--cream); border-radius: 20px; padding: 24px 18px; }
@media (min-width: 600px) { .cform { padding: 40px; } }
.cform h3 { font-size: 1.35rem; color: var(--ink); margin-bottom: 20px; }
.map-wrap { margin-top: 36px; border-radius: 16px; overflow: hidden; border: 2px solid #eee; }

/* ===== IMAGE PROTECTION ===== */
img { -webkit-user-select: none; user-select: none; -webkit-touch-callout: none; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== COMPUTER CARDS (restore box style) ===== */
.computer-section { background: #0f1923; color: #fff; padding: 64px 18px; }
@media (min-width: 900px) { .computer-section { padding: 100px 6vw; } }
.computer-section .classes-head h2 { color: #fff; }
.computer-section .classes-sub { color: rgba(255,255,255,0.5); }

.cc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 8px;
}
@media (min-width: 580px) { .cc-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 1000px) { .cc-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.computer-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 22px;
  padding: 28px 22px;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
@media (hover: hover) {
  .computer-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
}
.computer-card.cc-highlight {
  background: var(--gold);
  border-color: var(--gold);
}
.cc-icon { font-size: 2.6rem; margin-bottom: 16px; display: block; }
.computer-card h4 { font-size: 1.1rem; color: #fff; margin-bottom: 10px; font-family: 'Fraunces', serif; }
.computer-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.75; flex: 1; }
.computer-card.cc-highlight p { color: rgba(255,255,255,0.88); }
.cc-tag {
  display: inline-block; margin-top: 18px;
  background: rgba(255,255,255,0.15); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 6px 14px; border-radius: 50px;
  align-self: flex-start;
}
.computer-card.cc-highlight .cc-tag { background: rgba(255,255,255,0.28); }

/* ===== NTT SECTION (restore box style) ===== */
.ntt-section {
  background: linear-gradient(135deg, #082525 0%, #0d5050 100%);
  color: #fff; padding: 64px 18px;
}
@media (min-width: 900px) { .ntt-section { padding: 100px 6vw; } }
.ntt-section .eyebrow { color: rgba(255,255,255,0.55); }

.ntt-inner {
  display: flex; flex-direction: column; gap: 40px;
  max-width: 1100px; margin: 0 auto;
}
@media (min-width: 900px) { .ntt-inner { flex-direction: row; align-items: flex-start; gap: 64px; } }

.ntt-text { flex: 1; }
.ntt-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; margin: 8px 0 16px; }
.ntt-text > p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; }

.ntt-cards { display: flex; flex-direction: column; gap: 16px; }
.ntt-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px; padding: 22px 20px;
  transition: transform 0.25s;
}
@media (hover: hover) { .ntt-card:hover { transform: translateY(-3px); } }
.ntt-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; font-family: 'Outfit', sans-serif; }
.ntt-card p { font-size: 0.87rem; color: rgba(255,255,255,0.62); line-height: 1.7; }

.ntt-badges {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; flex-shrink: 0;
}
@media (min-width: 900px) { .ntt-badges { width: 260px; } }
.ntt-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px; padding: 24px 14px;
  text-align: center; transition: transform 0.25s;
}
@media (hover: hover) { .ntt-badge:hover { transform: translateY(-3px); } }
.ntt-badge span { font-size: 2rem; display: block; margin-bottom: 8px; }
.ntt-badge strong { display: block; font-size: 1rem; color: #fff; font-family: 'Fraunces', serif; }
.ntt-badge p { font-size: 0.73rem; color: rgba(255,255,255,0.5); margin: 4px 0 0; }

/* ===== MOBILE STATS STRIP ===== */
.hero-stats-mobile {
  display: flex; gap: 10px; margin-top: 28px;
}
.hero-stat-m {
  flex: 1; background: #fff;
  border-radius: 16px; padding: 16px 10px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}
.hero-stat-m span {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem; font-weight: 900;
  color: var(--teal); display: block;
}
.hero-stat-m p {
  font-size: 0.65rem; color: var(--muted);
  font-weight: 600; margin-top: 4px; line-height: 1.3;
}
.hero-stat-m.gold span { color: var(--gold-dark); }
/* Hide on desktop since hero-right shows instead */
@media (min-width: 900px) { .hero-stats-mobile { display: none; } }

/* ===== NAVBAR ALWAYS ON TOP ===== */
.navbar { z-index: 2000 !important; }
.mob-menu { z-index: 1999 !important; position: relative; }
