/* ══════════════════════════════════════════
   APEX ACADEMY — Main Stylesheet
   File: css/style.css
   ══════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --R: #c0392b;
  --R2: #96281b;
  --RG: rgba(192, 57, 43, .14);
  --K: #0b0e1a;
  --K2: #161929;
  --K3: #1f2438;
  --W: #fff;
  --C: #fdf9f4;
  --C2: #f4ede3;
  --T: #374151;
  --M: #8a97b0;
  --BD: #e5ddd4;
  --DP: 'Cormorant Garamond', serif;
  --HD: 'Bebas Neue', cursive;
  --BD2: 'Outfit', sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--BD2); background: var(--C); color: var(--K); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--K); }
::-webkit-scrollbar-thumb { background: var(--R); border-radius: 2px; }

/* ── UTILITIES ── */
.ctr { max-width: 1200px; margin: 0 auto; padding: 0 44px; }
.sec { padding: 100px 0; }
.lbl { display: inline-flex; align-items: center; gap: 10px; font-size: 10.5px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--R); margin-bottom: 16px; }
.lbl::before { content: ''; width: 20px; height: 2px; background: var(--R); border-radius: 1px; flex-shrink: 0; }
.h2 { font-family: var(--DP); font-size: clamp(36px, 4.5vw, 58px); font-weight: 700; line-height: 1.06; letter-spacing: -.4px; color: var(--K); }
.h2 em { font-style: italic; color: var(--R); }
.p { font-size: 15px; line-height: 1.85; color: var(--M); margin-top: 14px; max-width: 540px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 5px; font-size: 13px; font-weight: 700; letter-spacing: .4px; transition: all .25s var(--ease); cursor: pointer; border: none; font-family: var(--BD2); }
.btn-r { background: var(--R); color: #fff; box-shadow: 0 4px 18px rgba(192, 57, 43, .35); }
.btn-r:hover { background: var(--R2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(192, 57, 43, .45); }
.btn-k { background: var(--K); color: #fff; }
.btn-k:hover { background: var(--K2); transform: translateY(-2px); }
.btn-o { border: 1.5px solid rgba(255, 255, 255, .28); color: #fff; }
.btn-o:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }

/* ── REVEAL ANIMATION ── */
[data-v] { opacity: 0; transform: translateY(30px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
[data-v].vis { opacity: 1; transform: none; }
[data-v][data-d="1"] { transition-delay: .08s; }
[data-v][data-d="2"] { transition-delay: .16s; }
[data-v][data-d="3"] { transition-delay: .24s; }
[data-v][data-d="4"] { transition-delay: .32s; }
[data-v][data-d="5"] { transition-delay: .40s; }
[data-v][data-d="6"] { transition-delay: .48s; }

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
#nav { position: fixed; inset: 0 0 auto; z-index: 999; transition: all .35s var(--ease); }
#nav.scrolled { background: rgba(11, 14, 26, .96); backdrop-filter: blur(18px); box-shadow: 0 1px 0 rgba(255, 255, 255, .07); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 68px; max-width: 1280px; margin: 0 auto; padding: 0 44px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon { width: 40px; height: 40px; background: var(--R); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 3px 12px rgba(192, 57, 43, .4); }
.nav-logo-icon svg { width: 22px; height: 22px; fill: #fff; }
.nav-logo-name { font-family: var(--DP); font-size: 17px; font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: -.2px; }
.nav-logo-loc { font-size: 10px; color: rgba(255, 255, 255, .38); letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-a { font-size: 13px; font-weight: 500; color: rgba(255, 255, 255, .6); padding: 7px 13px; border-radius: 5px; transition: color .2s; position: relative; }
.nav-a:hover, .nav-a.on { color: #fff; }
.nav-a.on::after { content: ''; position: absolute; bottom: 3px; left: 13px; right: 13px; height: 1.5px; background: var(--R); border-radius: 1px; }
.nav-cta { font-size: 12px; font-weight: 700; letter-spacing: .4px; padding: 9px 20px; background: var(--R); color: #fff; border-radius: 5px; margin-left: 14px; transition: all .2s; box-shadow: 0 2px 10px rgba(192, 57, 43, .3); }
.nav-cta:hover { background: var(--R2); transform: translateY(-1px); }
.ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.ham span { width: 22px; height: 2px; background: #fff; border-radius: 1px; transition: .3s var(--ease); }
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mob-nav { display: none; position: fixed; inset: 68px 0 0; background: var(--K); z-index: 998; flex-direction: column; padding: 22px 24px; gap: 2px; border-top: 1px solid rgba(255, 255, 255, .07); overflow-y: auto; }
.mob-nav.open { display: flex; }
.mob-nav .nav-a { font-size: 17px; padding: 14px 12px; border-bottom: 1px solid rgba(255, 255, 255, .06); color: rgba(255, 255, 255, .75); }
.mob-nav .nav-cta { margin: 16px 0 0; display: block; text-align: center; padding: 14px; }

/* ══════════════════════════════════════════
   BANNER SLIDER
   ══════════════════════════════════════════ */
.banner-slider { position: relative; width: 100%; height: 580px; overflow: hidden; background: var(--K); }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; display: flex; align-items: center; }
.slide.active { opacity: 1; z-index: 1; }
.slide-content { max-width: 1200px; margin: 0 auto; padding: 0 44px; padding-top: 68px; width: 100%; }
.slide-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(192, 57, 43, .18); border: 1px solid rgba(192, 57, 43, .4); color: #f87171; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 5px 15px; border-radius: 30px; margin-bottom: 18px; }
.slide-h { font-family: var(--DP); font-size: clamp(36px, 5vw, 62px); font-weight: 700; color: #fff; line-height: 1.05; margin-bottom: 14px; letter-spacing: -.5px; }
.slide-h em { font-style: italic; color: var(--R); }
.slide-p { font-size: 15px; color: rgba(255, 255, 255, .6); line-height: 1.7; max-width: 500px; margin-bottom: 26px; }
.sl-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); color: #fff; width: 46px; height: 46px; border-radius: 50%; cursor: pointer; font-size: 16px; transition: .25s; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(6px); }
.sl-arrow:hover { background: var(--R); border-color: var(--R); }
.sl-prev { left: 20px; }
.sl-next { right: 20px; }
.sl-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.sl-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .35); border: none; cursor: pointer; transition: .25s; padding: 0; }
.sl-dot.active { background: #fff; width: 24px; border-radius: 4px; }

/* ══════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════ */
#hero { min-height: 100vh; background: var(--K); display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 85% 70% at 60% 38%, rgba(192, 57, 43, .2) 0%, transparent 65%), radial-gradient(ellipse 50% 70% at 8% 85%, rgba(192, 57, 43, .07) 0%, transparent 55%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, .024) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .024) 1px, transparent 1px); background-size: 52px 52px; }
.hero-ring { position: absolute; right: -160px; top: 50%; transform: translateY(-50%); width: 660px; height: 660px; border: 1px solid rgba(192, 57, 43, .1); border-radius: 50%; pointer-events: none; }
.hero-ring::before { content: ''; position: absolute; inset: 70px; border: 1px solid rgba(192, 57, 43, .06); border-radius: 50%; }
.hero-ring::after { content: ''; position: absolute; inset: 140px; border: 1px solid rgba(192, 57, 43, .04); border-radius: 50%; }
.hero-wrap { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 120px 44px 80px; display: grid; grid-template-columns: 1fr 390px; gap: 60px; align-items: center; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(192, 57, 43, .13); border: 1px solid rgba(192, 57, 43, .3); color: #f87171; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 5px 15px; border-radius: 30px; margin-bottom: 22px; }
.pulse { width: 6px; height: 6px; border-radius: 50%; background: #f87171; flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(1.6); } }
.hero-sub { font-family: var(--HD); font-size: 12px; letter-spacing: 6px; color: rgba(255, 255, 255, .28); margin-bottom: 16px; }
.hero-h1 { font-family: var(--DP); font-size: clamp(52px, 7.5vw, 88px); font-weight: 700; line-height: .98; letter-spacing: -2px; color: #fff; margin-bottom: 22px; }
.hero-h1 em { font-style: italic; color: var(--R); }
.hero-h1 .outline { -webkit-text-stroke: 1.5px rgba(255, 255, 255, .22); color: transparent; display: block; }
.hero-p { font-size: 15px; color: rgba(255, 255, 255, .52); line-height: 1.85; max-width: 460px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-nums { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255, 255, 255, .07); border-radius: 11px; overflow: hidden; background: rgba(255, 255, 255, .035); }
.hn-item { padding: 18px 14px; text-align: center; border-right: 1px solid rgba(255, 255, 255, .05); transition: background .25s; }
.hn-item:last-child { border-right: none; }
.hn-item:hover { background: rgba(255, 255, 255, .06); }
.hn-num { font-family: var(--HD); font-size: 34px; letter-spacing: 1px; color: #fff; line-height: 1; }
.hn-num small { font-family: var(--BD2); font-size: 13px; color: var(--R); letter-spacing: 0; }
.hn-lbl { font-size: 10px; color: rgba(255, 255, 255, .33); letter-spacing: 2px; text-transform: uppercase; margin-top: 5px; }
.hero-card { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); border-radius: 18px; padding: 30px; backdrop-filter: blur(22px); position: relative; }
.hero-card::before { content: ''; position: absolute; top: -1px; left: 22px; right: 22px; height: 2px; background: linear-gradient(90deg, transparent, var(--R), transparent); }
.hc-icon { width: 66px; height: 66px; background: var(--R); border-radius: 13px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 8px 22px rgba(192, 57, 43, .42); }
.hc-icon svg { width: 38px; height: 38px; fill: #fff; }
.hc-name { font-family: var(--DP); font-size: 17px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 2px; }
.hc-sub { text-align: center; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255, 255, 255, .3); margin-bottom: 20px; }
.hc-rows { display: flex; flex-direction: column; gap: 8px; }
.hc-row { display: flex; align-items: center; gap: 11px; padding: 10px 12px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .06); border-radius: 8px; transition: .2s; }
.hc-row:hover { background: rgba(255, 255, 255, .08); border-color: rgba(192, 57, 43, .3); }
.hc-ico { width: 30px; height: 30px; border-radius: 7px; background: rgba(192, 57, 43, .15); display: flex; align-items: center; justify-content: center; color: #f87171; font-size: 12px; flex-shrink: 0; }
.hc-lbl { font-size: 10px; color: rgba(255, 255, 255, .32); text-transform: uppercase; letter-spacing: 1px; }
.hc-val { font-size: 12.5px; color: #fff; font-weight: 600; margin-top: 1px; }
.hc-badge { margin-top: 16px; background: linear-gradient(135deg, rgba(192, 57, 43, .22), rgba(192, 57, 43, .08)); border: 1px solid rgba(192, 57, 43, .32); border-radius: 8px; padding: 12px 14px; display: flex; align-items: center; gap: 9px; }
.hc-badge p { font-size: 12px; color: rgba(255, 255, 255, .7); line-height: 1.5; }
.hc-badge strong { color: #f87171; }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 9.5px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255, 255, 255, .2); z-index: 3; animation: float 3.2s ease-in-out infinite; }
.hero-scroll::after { content: ''; width: 1px; height: 32px; background: linear-gradient(to bottom, rgba(255, 255, 255, .2), transparent); }
@keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(9px); } }

/* ══════════════════════════════════════════
   TICKER / NEWS BAND
   ══════════════════════════════════════════ */
.ticker { background: var(--R); overflow: hidden; white-space: nowrap; padding: 0; height: 40px; display: flex; align-items: center; }
.tk-label { display: inline-flex; align-items: center; gap: 5px; background: rgba(0, 0, 0, .18); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 0 14px 0 10px; height: 40px; flex-shrink: 0; clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%); }
.tk-wrap { overflow: hidden; flex: 1; height: 40px; display: flex; align-items: center; }
.tk-track { display: inline-block; animation: scroll 42s linear infinite; font-size: 13px; font-weight: 500; color: rgba(255, 255, 255, .9); white-space: nowrap; line-height: 40px; }
.tk-track:hover { animation-play-state: paused; }
.tk-item { display: inline; margin-right: 52px; }
.tk-item::before { content: '\25C6  '; font-size: 7px; opacity: .65; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ══════════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════════ */
#about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
.about-vis { position: relative; }
.about-img { aspect-ratio: 3/4; border-radius: 22px; overflow: hidden; background: linear-gradient(145deg, var(--K2), var(--K)); display: flex; align-items: center; justify-content: center; position: relative; }
.about-img::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(192, 57, 43, .06) 1px, transparent 1px); background-size: 20px 20px; }
.about-img::after { content: ''; position: absolute; top: 15%; left: 10%; right: 10%; bottom: 15%; background: radial-gradient(circle, rgba(192, 57, 43, .1), transparent 65%); border-radius: 50%; }
.about-emoji { font-size: 100px; opacity: .12; position: relative; z-index: 1; }
.about-badge { position: absolute; background: #fff; border-radius: 12px; padding: 14px 18px; box-shadow: 0 10px 32px rgba(0, 0, 0, .12); }
.about-badge-1 { right: -24px; top: 28px; border-left: 3px solid var(--R); }
.about-badge-2 { left: -24px; bottom: 44px; background: var(--K); }
.ab-num { font-family: var(--HD); font-size: 28px; line-height: 1; letter-spacing: 1px; }
.about-badge-1 .ab-num { color: var(--R); }
.about-badge-2 .ab-num { color: #fff; }
.ab-txt { font-size: 11px; margin-top: 2px; }
.about-badge-1 .ab-txt { color: #999; }
.about-badge-2 .ab-txt { color: rgba(255, 255, 255, .4); }
.why-grid { margin-top: 28px; display: flex; flex-direction: column; gap: 11px; }
.why-row { display: flex; gap: 13px; align-items: flex-start; padding: 14px 16px; border-radius: 10px; border: 1.5px solid var(--BD); background: #fff; transition: .25s var(--ease); }
.why-row:hover { border-color: var(--R); box-shadow: 0 5px 18px rgba(192, 57, 43, .08); transform: translateX(4px); }
.why-ico { width: 34px; height: 34px; flex-shrink: 0; background: var(--RG); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--R); font-size: 14px; }
.why-t h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; color: var(--K); }
.why-t p { font-size: 13px; color: var(--M); line-height: 1.55; }

/* ══════════════════════════════════════════
   PROGRAMS
   ══════════════════════════════════════════ */
#programs { background: var(--C); }
.prog-hd { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prog-card { border-radius: 16px; overflow: hidden; border: 1.5px solid var(--BD); background: #fff; transition: .28s var(--ease); cursor: pointer; }
.prog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0, 0, 0, .11); border-color: transparent; }
.prog-card:hover .pc-cta { background: var(--R); color: #fff; border-color: var(--R); }
.pc-top { padding: 26px 24px; background: var(--K); position: relative; overflow: hidden; }
.pc-bign { position: absolute; right: -8px; bottom: -20px; font-family: var(--HD); font-size: 94px; color: rgba(255, 255, 255, .04); line-height: 1; pointer-events: none; }
.pc-grade { display: inline-block; background: rgba(192, 57, 43, .18); color: #f87171; font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; margin-bottom: 14px; }
.pc-ico { font-size: 26px; margin-bottom: 12px; display: block; }
.pc-top h3 { font-family: var(--DP); font-size: 21px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.pc-top p { font-size: 12px; color: rgba(255, 255, 255, .4); }
.pc-body { padding: 20px 24px; }
.pc-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.pc-li { font-size: 13px; color: var(--T); display: flex; align-items: center; gap: 9px; }
.pc-li::before { content: ''; width: 16px; height: 16px; flex-shrink: 0; border-radius: 50%; background: var(--RG); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23c0392b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 11px; }
.pc-cta { display: block; width: 100%; padding: 11px; text-align: center; border: 1.5px solid var(--K); border-radius: 7px; font-size: 13px; font-weight: 700; color: var(--K); transition: .25s var(--ease); }

/* ══════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════ */
.stats-bar { background: var(--R); padding: 52px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.stats-inner::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(90deg, transparent, transparent calc(25% - .5px), rgba(255, 255, 255, .2) calc(25% - .5px), rgba(255, 255, 255, .2) 25%); }
.stat-cell { text-align: center; padding: 8px 20px; position: relative; z-index: 1; }
.stat-big { font-family: var(--HD); font-size: 58px; color: #fff; line-height: 1; letter-spacing: 2px; }
.stat-big sub { font-family: var(--BD2); font-size: 17px; letter-spacing: 0; vertical-align: baseline; }
.stat-lbl { font-size: 12px; color: rgba(255, 255, 255, .7); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 5px; }

/* ══════════════════════════════════════════
   FACILITIES
   ══════════════════════════════════════════ */
#facilities { background: #fff; }
.fac-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fac-card { padding: 24px 18px; text-align: center; border-radius: 13px; border: 1.5px solid var(--BD); background: var(--C); transition: .25s var(--ease); cursor: pointer; }
.fac-card:hover { border-color: var(--R); background: #fff; box-shadow: 0 7px 26px rgba(192, 57, 43, .09); transform: translateY(-4px); }
.fac-card:hover .fac-ico { background: var(--R); color: #fff; }
.fac-ico { width: 50px; height: 50px; margin: 0 auto 12px; border-radius: 11px; background: var(--K); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 19px; transition: .25s var(--ease); }
.fac-card h4 { font-size: 13.5px; font-weight: 700; margin-bottom: 5px; color: var(--K); }
.fac-card p { font-size: 12px; color: var(--M); line-height: 1.6; }
.bus-box { margin-top: 34px; background: var(--K); border-radius: 14px; padding: 26px 30px; }
.bus-box h3 { font-family: var(--HD); font-size: 19px; letter-spacing: 2px; color: #fff; margin-bottom: 16px; display: flex; align-items: center; gap: 9px; }
.routes { display: flex; flex-wrap: wrap; gap: 9px; }
.rt { padding: 7px 15px; border-radius: 6px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .1); font-size: 13px; color: rgba(255, 255, 255, .72); transition: .2s; }
.rt:hover { background: var(--RG); border-color: rgba(192, 57, 43, .4); color: #fff; }

/* ══════════════════════════════════════════
   NOTICES
   ══════════════════════════════════════════ */
#notices { background: var(--C); }
.notice-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 36px; }
.nb-hd { font-family: var(--DP); font-size: 19px; font-weight: 700; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 2px solid var(--BD); display: flex; align-items: center; gap: 10px; }
.n-list { display: flex; flex-direction: column; }
.n-item { display: grid; grid-template-columns: 50px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--BD); cursor: pointer; transition: padding .2s var(--ease); }
.n-item:hover { padding-left: 8px; }
.n-item:hover .n-title { color: var(--R); }
.n-date { background: var(--K); border-radius: 8px; padding: 8px 5px; text-align: center; flex-shrink: 0; }
.n-day { font-family: var(--HD); font-size: 22px; color: var(--R); line-height: 1; letter-spacing: 1px; }
.n-mo { font-size: 9px; color: rgba(255, 255, 255, .36); text-transform: uppercase; letter-spacing: 1px; margin-top: 1px; }
.n-tag { display: inline-block; padding: 2px 9px; border-radius: 20px; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.t-r { background: rgba(192, 57, 43, .1); color: var(--R); }
.t-b { background: rgba(37, 99, 235, .1); color: #2563eb; }
.t-g { background: rgba(22, 163, 74, .1); color: #16a34a; }
.t-a { background: rgba(217, 119, 6, .1); color: #b45309; }
.n-title { font-size: 14px; font-weight: 700; margin-bottom: 3px; transition: color .2s; color: var(--K); }
.n-desc { font-size: 12.5px; color: var(--M); line-height: 1.55; }
.n-skeleton { padding: 16px 0; border-bottom: 1px solid var(--BD); }
.n-skel-bar { height: 12px; border-radius: 4px; background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
.n-skel-title { width: 70%; margin-bottom: 8px; }
.n-skel-desc { width: 90%; }
.n-empty { padding: 32px; text-align: center; color: var(--M); font-size: 14px; }
.ev-box { background: var(--K); border-radius: 14px; padding: 22px; height: fit-content; position: sticky; top: 80px; }
.ev-box h3 { font-family: var(--HD); font-size: 16px; letter-spacing: 2px; color: #fff; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(255, 255, 255, .08); display: flex; align-items: center; gap: 8px; }
.ev-item { display: flex; gap: 11px; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, .06); }
.ev-item:last-child { border-bottom: none; }
.ev-bar { width: 3px; flex-shrink: 0; background: var(--R); border-radius: 3px; align-self: stretch; }
.ev-name { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.ev-date { font-size: 11px; color: rgba(255, 255, 255, .35); }

/* ══════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════ */
#gallery { background: #fff; }
.g-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 210px); gap: 12px; }
.g-item { border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: .25s var(--ease); }
.g-item:hover { transform: scale(.97); }
.g-item:hover .g-ovl { opacity: 1; }
.g-item.wide { grid-column: span 2; }
.g-item.tall { grid-row: span 2; }
.g-ico { font-size: 46px; opacity: .16; position: relative; z-index: 1; }
.g-ovl { position: absolute; inset: 0; z-index: 2; opacity: 0; background: linear-gradient(to top, rgba(0, 0, 0, .72) 0%, transparent 55%); display: flex; align-items: flex-end; padding: 15px; transition: opacity .25s; }
.g-ovl span { color: #fff; font-size: 13px; font-weight: 600; }
.g-item:nth-child(1) { background: linear-gradient(135deg, #0b1524, #1b3a6e); }
.g-item:nth-child(2) { background: linear-gradient(135deg, #170a28, #3a185e); }
.g-item:nth-child(3) { background: linear-gradient(135deg, #081e14, #184d3a); }
.g-item:nth-child(4) { background: linear-gradient(135deg, #200808, #621a1a); }
.g-item:nth-child(5) { background: linear-gradient(135deg, #081622, #183a6e); }
.g-item:nth-child(6) { background: linear-gradient(135deg, #1c1006, #6b4a18); }

/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
#testimonials { background: var(--C); }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.t-card { background: #fff; border: 1.5px solid var(--BD); border-radius: 15px; padding: 26px; transition: .25s var(--ease); }
.t-card:hover { border-color: var(--R); box-shadow: 0 7px 26px rgba(192, 57, 43, .08); }
.t-stars { color: #f59e0b; font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }
.t-q { font-size: 58px; line-height: .8; font-family: Georgia, serif; color: var(--R); opacity: .2; margin-bottom: 8px; }
.t-txt { font-size: 14px; color: var(--T); line-height: 1.76; font-style: italic; margin-bottom: 18px; }
.t-auth { display: flex; align-items: center; gap: 10px; }
.t-av { width: 40px; height: 40px; border-radius: 50%; background: var(--K); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.t-name { font-size: 14px; font-weight: 700; color: var(--K); }
.t-role { font-size: 12px; color: var(--R); font-weight: 500; }

/* ══════════════════════════════════════════
   ADMISSION
   ══════════════════════════════════════════ */
#admission { background: var(--K); position: relative; overflow: hidden; }
#admission::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 65% 90% at 80% 50%, rgba(192, 57, 43, .17), transparent 68%); pointer-events: none; }
.adm-layout { display: grid; grid-template-columns: 1fr 445px; gap: 70px; align-items: start; position: relative; z-index: 1; }
#admission .lbl { color: #f87171; }
#admission .lbl::before { background: #f87171; }
#admission .h2 { color: #fff; }
.adm-steps { margin-top: 28px; display: flex; flex-direction: column; }
.adm-step { display: flex; gap: 16px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .07); }
.adm-step:last-child { border-bottom: none; }
.adm-n { width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%; border: 2px solid rgba(192, 57, 43, .4); display: flex; align-items: center; justify-content: center; font-family: var(--HD); font-size: 17px; letter-spacing: 1px; color: var(--R); }
.adm-t h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.adm-t p { font-size: 13px; color: rgba(255, 255, 255, .4); line-height: 1.6; }
.form-card { background: #fff; border-radius: 18px; padding: 34px; box-shadow: 0 22px 56px rgba(0, 0, 0, .24); }
.form-card h3 { font-family: var(--DP); font-size: 20px; font-weight: 700; margin-bottom: 3px; color: var(--K); }
.form-card .fsub { font-size: 13px; color: var(--M); margin-bottom: 24px; }
.ff { margin-bottom: 14px; }
.ff label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--M); margin-bottom: 5px; }
.ff input, .ff select { width: 100%; padding: 11px 13px; border: 1.5px solid var(--BD); border-radius: 7px; font-size: 14px; font-family: var(--BD2); color: var(--K); background: var(--C); outline: none; transition: border-color .2s, box-shadow .2s; }
.ff input:focus, .ff select:focus { border-color: var(--R); box-shadow: 0 0 0 3px rgba(192, 57, 43, .1); background: #fff; }
.ff select { cursor: pointer; }
.r2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.f-submit { width: 100%; padding: 14px; margin-top: 6px; background: var(--R); color: #fff; border: none; border-radius: 7px; font-family: var(--BD2); font-size: 14px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: .25s var(--ease); box-shadow: 0 4px 16px rgba(192, 57, 43, .35); }
.f-submit:hover { background: var(--R2); transform: translateY(-2px); }
.f-submit:disabled { opacity: .7; transform: none; cursor: not-allowed; }
.f-note { text-align: center; font-size: 12px; color: var(--M); margin-top: 10px; }

/* ══════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════ */
#contact { background: var(--C2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }
.c-cards { display: flex; flex-direction: column; gap: 13px; }
.c-card { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; background: #fff; border: 1.5px solid var(--BD); border-radius: 11px; transition: .25s var(--ease); }
.c-card:hover { border-color: var(--R); transform: translateX(4px); }
.c-ico { width: 40px; height: 40px; flex-shrink: 0; background: var(--RG); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--R); font-size: 16px; }
.c-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: #aaa; margin-bottom: 3px; }
.c-val { font-size: 14px; font-weight: 600; color: var(--K); }
.c-val a { color: inherit; transition: color .2s; }
.c-val a:hover { color: var(--R); }
.s-row { display: flex; gap: 9px; margin-top: 7px; }
.s-pill { display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px; border-radius: 7px; font-size: 12px; font-weight: 700; transition: .25s; }
.s-fb { background: #1877f2; color: #fff; }
.s-fb:hover { background: #1563d8; transform: translateY(-2px); }
.map-box { background: #fff; border: 1.5px solid var(--BD); border-radius: 14px; min-height: 340px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 36px; text-align: center; }
.map-ico { font-size: 48px; }
.map-box h3 { font-family: var(--DP); font-size: 22px; font-weight: 700; color: var(--K); }
.map-box p { font-size: 14px; color: var(--M); line-height: 1.6; max-width: 240px; }
.map-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 7px; background: var(--K); color: #fff; font-size: 13px; font-weight: 700; transition: .25s; }
.map-btn:hover { background: var(--R); transform: translateY(-2px); }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer { background: #07090f; padding: 62px 0 0; }
.f-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 48px; }
.f-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.f-bicon { width: 36px; height: 36px; background: var(--R); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.f-bicon svg { width: 20px; height: 20px; fill: #fff; }
.f-bname { font-family: var(--DP); font-size: 15px; font-weight: 700; color: #fff; }
.f-bdesc { font-size: 13px; color: rgba(255, 255, 255, .36); line-height: 1.75; max-width: 265px; }
.f-socs { display: flex; gap: 8px; margin-top: 18px; }
.f-soc { width: 32px; height: 32px; border-radius: 7px; background: rgba(255, 255, 255, .07); display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, .48); font-size: 13px; transition: .2s; }
.f-soc:hover { background: var(--R); color: #fff; }
.f-col h5 { font-family: var(--HD); font-size: 13px; letter-spacing: 2px; color: #fff; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid rgba(255, 255, 255, .07); }
.f-col li { margin-bottom: 8px; }
.f-col a { font-size: 13px; color: rgba(255, 255, 255, .36); transition: color .2s; }
.f-col a:hover { color: #fff; }
.f-ci { display: flex; gap: 8px; margin-bottom: 10px; align-items: flex-start; }
.f-ci i { color: var(--R); font-size: 11px; margin-top: 2px; flex-shrink: 0; }
.f-ci span { font-size: 13px; color: rgba(255, 255, 255, .36); line-height: 1.55; }
.f-bottom { border-top: 1px solid rgba(255, 255, 255, .07); padding: 20px 44px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; max-width: 1280px; margin: 0 auto; }
.f-bottom p { font-size: 12px; color: rgba(255, 255, 255, .26); }
.f-credit { color: var(--R); font-weight: 700; }

/* ══════════════════════════════════════════
   SIDE DRAWER
   ══════════════════════════════════════════ */
.drawer-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, .55); z-index: 1100; opacity: 0; pointer-events: none; transition: opacity .35s; }
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.drawer { position: fixed; top: 0; right: -520px; width: min(520px, 100vw); height: 100vh; background: #fff; z-index: 1101; transition: right .4s cubic-bezier(.4, 0, .2, 1); overflow-y: auto; box-shadow: -8px 0 40px rgba(0, 0, 0, .15); }
.drawer.open { right: 0; }
.drawer-hd { position: sticky; top: 0; background: #fff; padding: 20px 28px; border-bottom: 1px solid var(--BD); display: flex; align-items: center; justify-content: space-between; z-index: 2; }
.drawer-hd h3 { font-family: var(--DP); font-size: 22px; font-weight: 700; color: var(--K); }
.drawer-close { width: 38px; height: 38px; border-radius: 50%; background: var(--C); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--K); transition: .2s; }
.drawer-close:hover { background: var(--R); color: #fff; }
.drawer-body { padding: 28px; }
.dr-badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: rgba(192, 57, 43, .1); color: var(--R); margin-bottom: 16px; }
.dr-desc { font-size: 14px; color: var(--M); line-height: 1.8; margin-bottom: 22px; }
.dr-section { margin-bottom: 22px; }
.dr-section h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--K); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--BD); }
.dr-list { display: flex; flex-direction: column; gap: 8px; }
.dr-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 12px; background: var(--C); border-radius: 8px; font-size: 13px; color: var(--T); }
.dr-item i { color: var(--R); font-size: 13px; margin-top: 1px; flex-shrink: 0; width: 16px; }
.dr-img { width: 100%; aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; background: linear-gradient(135deg, var(--K2), var(--K)); display: flex; align-items: center; justify-content: center; font-size: 64px; margin-bottom: 22px; }
.dr-cta { display: block; width: 100%; padding: 13px; background: var(--R); color: #fff; border: none; border-radius: 8px; font-family: var(--BD2); font-size: 14px; font-weight: 700; text-align: center; cursor: pointer; transition: .25s; text-decoration: none; }
.dr-cta:hover { background: var(--R2); }

/* ══════════════════════════════════════════
   TOAST & BACK TO TOP
   ══════════════════════════════════════════ */
.toast { position: fixed; bottom: 22px; right: 22px; z-index: 9999; background: #15803d; color: #fff; padding: 13px 20px; border-radius: 9px; display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; box-shadow: 0 8px 22px rgba(0, 0, 0, .2); transform: translateY(100px); opacity: 0; transition: transform .42s cubic-bezier(.34, 1.56, .64, 1), opacity .28s; pointer-events: none; }
.toast.on { transform: translateY(0); opacity: 1; }
.btt { position: fixed; bottom: 22px; left: 22px; z-index: 999; width: 40px; height: 40px; border-radius: 50%; background: var(--K); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; box-shadow: 0 3px 14px rgba(0, 0, 0, .22); transition: .25s; opacity: 0; pointer-events: none; }
.btt.on { opacity: 1; pointer-events: all; }
.btt:hover { background: var(--R); transform: translateY(-2px); }

/* ══════════════════════════════════════════
   SHIMMER ANIMATION
   ══════════════════════════════════════════ */
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1050px) {
  .hero-wrap { grid-template-columns: 1fr 360px; gap: 44px; }
  .adm-layout { grid-template-columns: 1fr; }
  .form-card { max-width: 480px; }
}

@media (max-width: 860px) {
  .ctr, .nav-in, .f-bottom { padding-left: 22px; padding-right: 22px; }
  .sec { padding: 68px 0; }
  .banner-slider { height: 420px; }
  .slide-content { padding: 0 22px; padding-top: 68px; }
  .sl-arrow { width: 36px; height: 36px; font-size: 13px; }
  .hero-wrap { grid-template-columns: 1fr; padding: 110px 22px 68px; }
  .hc-wrap { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-vis { display: none; }
  .prog-grid { grid-template-columns: 1fr; }
  .prog-hd { flex-direction: column; align-items: flex-start; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-inner::before { background: repeating-linear-gradient(90deg, transparent, transparent calc(50% - .5px), rgba(255, 255, 255, .2) calc(50% - .5px), rgba(255, 255, 255, .2) 50%); }
  .fac-grid { grid-template-columns: repeat(2, 1fr); }
  .notice-layout { grid-template-columns: 1fr; }
  .ev-box { position: static; }
  .t-grid { grid-template-columns: 1fr; }
  .g-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .g-item.wide, .g-item.tall { grid-column: span 1; grid-row: span 1; }
  .f-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .ham { display: flex; }
}

@media (max-width: 540px) {
  .banner-slider { height: 340px; }
  .slide-h { font-size: 28px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .r2 { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr; }
  .f-bottom { flex-direction: column; text-align: center; padding: 18px 22px; }
  .hero-nums { grid-template-columns: repeat(3, 1fr); }
}
