/* =====================================================================
   PHONICS UNIVERSITY — LANDING PAGE — "ELEVATED EDITORIAL" REDESIGN
   Aesthetic: Modern editorial magazine × premium academic
   Palette : Midnight Navy + Vivid Pink + Gold + Sage + Warm Parchment
   ===================================================================== */

/* ─────────────────────────────────────────────────────────────────────
   01 ▸ TOKENS
   ───────────────────────────────────────────────────────────────────── */
:root {
    /* Surfaces */
    --ink: #0B1426;
    --ink-2: #131E36;
    --ink-3: #1C2A48;
    --ink-glass: rgba(11, 20, 38, 0.92);

    --paper: #FFFFFF;
    --parchment: #FAF6EE;
    --parchment-2: #F3ECDC;
    --bone: #F5EFE3;
    --line: #E8DFCB;
    --line-2: #DDD3BD;
    --line-dark: rgba(255, 255, 255, 0.10);

    /* Brand accents */
    --crimson: #D01E43;
    --crimson-2: #EB2D56;
    --crimson-3: #A81836;
    --crimson-soft: #FDE8ED;

    --pink: var(--crimson);
    --pink-2: var(--crimson-2);
    --pink-3: var(--crimson-3);
    --pink-soft: var(--crimson-soft);

    --gold: #D4A017;
    --gold-2: #E8B524;
    --gold-soft: #FBEFC4;

    --sage: #5B7A60;
    --sage-2: #8AA68F;
    --sage-soft: #E3EBE1;

    --maroon: #8B1A1A;

    /* Text */
    --text: #1A1F2E;
    --text-2: #4A5063;
    --text-3: #8A8FA1;
    --text-4: #B5B8C3;
    --text-light: #FAF6EE;
    --text-light-2: #C8C4BB;
    --text-light-3: #8E8A82;

    /* Radius */
    --r-xs: 6px;
    --r-sm: 12px;
    --r: 20px;
    --r-lg: 32px;
    --r-xl: 48px;
    --r-pill: 999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(11, 20, 38, 0.06);
    --shadow: 0 14px 40px -12px rgba(11, 20, 38, 0.18);
    --shadow-lg: 0 32px 80px -24px rgba(11, 20, 38, 0.30);
    --shadow-crimson: 0 18px 50px -16px rgba(208, 30, 67, 0.45);
    --shadow-pink: var(--shadow-crimson);
    --shadow-gold: 0 18px 50px -16px rgba(212, 160, 23, 0.50);
    --shadow-soft-inset: inset 0 1px 0 rgba(255, 255, 255, 0.6);

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
    --d-fast: .25s;
    --d: .45s;
    --d-slow: .8s;

    /* Type */
    --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
    --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
    --font-mono: 'Bricolage Grotesque', 'DM Sans', sans-serif;
}

/* ─────────────────────────────────────────────────────────────────────
   31 ▸ STATS — REDESIGN: SVG circular progress rings
   ───────────────────────────────────────────────────────────────────── */
.stats-v2 {
    padding: 130px 0;
    background: #0B1426;
    color: #FAF6EE;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.stats-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    z-index: -2;
}
.stats-v2::after {
    content: '';
    position: absolute;
    width: 800px; height: 800px;
    bottom: -300px; left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,62,140,0.22) 0%, transparent 60%);
    filter: blur(80px);
    z-index: -1;
}
.stats-v2-head {
    text-align: center;
    margin-bottom: 70px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.stats-v2-head h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--text-light);
    margin: 16px 0 14px;
    font-variation-settings: "opsz" 144;
}
.stats-v2-head h2 em { font-style: italic; color: #E8B524; font-weight: 500; }
.stats-v2-head p { color: #C8C4BB; font-size: 1.05rem; line-height: 1.7; margin: 0; }

.rings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.ring-card {
    text-align: center;
    padding: 30px 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--r-lg);
    backdrop-filter: blur(8px);
    transition: all .45s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}
.ring-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 60%; height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--pink) 50%, transparent 100%);
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity var(--d-fast);
}
.ring-card:hover { transform: translateY(-6px); border-color: rgba(232,62,140,0.4); }
.ring-card:hover::before { opacity: 1; }

.ring-wrap {
    position: relative;
    width: 170px;
    height: 170px;
    margin: 0 auto 20px;
}
.ring-svg {
    width: 100%; height: 100%;
    transform: rotate(-90deg);
}
.ring-svg .track {
    fill: none;
    stroke: rgba(255,255,255,0.07);
    stroke-width: 8;
}
.ring-svg .progress {
    fill: none;
    stroke: #E83E8C;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    transition: stroke-dashoffset 2.2s cubic-bezier(0.22, 1, 0.36, 1);
    filter: drop-shadow(0 0 12px rgba(232,62,140,0.5));
}
.ring-card.gold .ring-svg .progress { stroke: #E8B524; filter: drop-shadow(0 0 12px rgba(232,181,36,0.5)); }
.ring-card.sage .ring-svg .progress { stroke: #8AA68F; filter: drop-shadow(0 0 12px rgba(138,166,143,0.5)); }
.ring-card.pink .ring-svg .progress { stroke: #E83E8C; }

.ring-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.ring-num {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 2.6rem;
    color: var(--text-light);
    letter-spacing: -0.03em;
    font-variation-settings: "opsz" 144;
}
.ring-unit {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #E8B524;
    margin-top: 6px;
}
.ring-card.sage .ring-unit { color: #8AA68F; }
.ring-card.gold .ring-unit { color: #E8B524; }

.ring-label {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.15rem;
    color: #FAF6EE;
    margin: 0 0 6px;
    line-height: 1.3;
}
.ring-sub {
    font-size: 12.5px;
    color: #C8C4BB;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .rings-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 575px) {
    .stats-v2 { padding: 80px 0; }
    .ring-wrap { width: 140px; height: 140px; }
    .ring-num { font-size: 2rem; }
}

/* ─────────────────────────────────────────────────────────────────────
   02 ▸ RESET & BASE
   ───────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { 
    margin: 0; font-family: var(--font-sans); font-size: 16px; line-height: 1.6; color: var(--text); background: var(--parchment); overflow-x: hidden;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility;
    background-image: 
        radial-gradient(at 14% 22%, rgba(232, 62, 140, 0.04) 0px, transparent 50%),
        radial-gradient(at 86% 78%, rgba(212, 160, 23, 0.05) 0px, transparent 50%),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.04  0 0 0 0 0.06  0 0 0 0 0.10  0 0 0 0.025 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    background-attachment: fixed;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--d-fast) var(--ease); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
::selection { background: var(--pink); color: var(--paper); }

/* Custom Cursor */
.cursor-dot, .cursor-outline { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; border-radius: 50%; opacity: 0; transition: opacity 0.3s, transform 0.1s; mix-blend-mode: difference; }
.cursor-dot { width: 8px; height: 8px; background: var(--pink); }
.cursor-outline { width: 30px; height: 30px; border: 1px solid var(--pink); transition: width 0.3s, height 0.3s; }
.cursor-dot.hover { transform: scale(2); background: var(--gold-2); }
.cursor-outline.hover { width: 50px; height: 50px; border-color: var(--gold-2); }
body:hover .cursor-dot, body:hover .cursor-outline { opacity: 1; }

/* Reveal Animations */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: all 0.8s var(--ease); }
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="fade"] { transform: none; }
[data-reveal].is-visible { opacity: 1; transform: translate(0, 0); }

/* ─────────────────────────────────────────────────────────────────────
   03 ▸ TYPOGRAPHY
   ───────────────────────────────────────────────────────────────────── */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink); padding: 8px 16px; border-radius: var(--r-pill); background: var(--pink-soft); border: 1px solid rgba(232, 62, 140, 0.2); }
.section-title { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1; letter-spacing: -0.04em; color: var(--ink); margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--pink); font-weight: 500; }

/* ─────────────────────────────────────────────────────────────────────
   04 ▸ BUTTONS
   ───────────────────────────────────────────────────────────────────── */
.btn-primary-lg, .btn-ghost-lg {
    display: inline-flex; align-items: center; gap: 12px; padding: 18px 36px; border-radius: var(--r-pill);
    font-weight: 700; font-size: 15px; transition: all .4s var(--ease); position: relative; overflow: hidden;
}
.btn-primary-lg { background: var(--pink); color: #fff !important; box-shadow: var(--shadow-crimson); }
.btn-primary-lg:hover { transform: translateY(-4px); background: var(--crimson-3); box-shadow: var(--shadow-lg); }
.btn-ghost-lg { border: 1.5px solid var(--ink); color: var(--ink) !important; }
.btn-ghost-lg:hover { background: var(--ink); color: #fff !important; }

.btn-apply { display: inline-flex; align-items: center; gap: 8px; background: var(--crimson); color: #fff !important; padding: 10px 20px; border-radius: var(--r-pill); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; transition: 0.3s; box-shadow: var(--shadow-crimson); }
.btn-apply:hover { transform: translateY(-3px); background: var(--pink-2); box-shadow: var(--shadow-lg); }

/* ─────────────────────────────────────────────────────────────────────
   04b ▸ ANNOUNCEMENT & UTILITY
   ───────────────────────────────────────────────────────────────────── */
.announcement-bar { background: var(--ink); color: #fff; padding: 10px 0; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.05); }
.announcement-track { display: flex; width: max-content; animation: annScroll 30s linear infinite; }
.announcement-group { display: flex; align-items: center; gap: 40px; padding-right: 40px; }
.announcement-group .dot { width: 4px; height: 4px; background: var(--pink); border-radius: 50%; }
@keyframes annScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.utility-bar { background: var(--parchment-2); padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.util-left a { color: var(--text-2); font-weight: 600; margin-right: 25px; transition: 0.3s; }
.util-left a:hover { color: var(--pink); }
.util-left i { color: var(--pink); margin-right: 6px; }
.util-right a { color: var(--text-2); font-size: 16px; margin-left: 15px; transition: 0.3s; }
.util-right a:hover { color: var(--pink); }
.util-erp { background: var(--ink); color: #fff !important; padding: 4px 12px; border-radius: 4px; font-weight: 700; font-size: 11px; text-transform: uppercase; }

/* ─────────────────────────────────────────────────────────────────────
   05 ▸ NAVIGATION
   ───────────────────────────────────────────────────────────────────── */
.main-nav { position: sticky; top: 0; z-index: 1000; background: rgba(250, 246, 238, 0.9); backdrop-filter: blur(20px); padding: 15px 0; border-bottom: 1px solid var(--line); transition: all 0.3s; }
.main-nav.scrolled { padding: 10px 0; background: #fff; box-shadow: var(--shadow-sm); }
.nav-logo img { height: 50px; }
.nav-link { font-weight: 600; color: var(--text-2); font-size: 15px; position: relative; padding: 5px 0; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--pink); transition: 0.3s; }
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--pink); }
.nav-link.active { color: var(--pink); }

/* Dropdowns */
.nav-item-has-children { position: relative; display: flex; align-items: center; }
.nav-item-has-children > .nav-link { display: flex; align-items: center; gap: 5px; }
.nav-dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); width: 220px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 10px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: 0.3s var(--ease); z-index: 100; }
.nav-item-has-children:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-item { display: flex; align-items: center; gap: 12px; padding: 12px 15px; border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--ink); transition: 0.3s; }
.nav-dropdown-item:hover { background: var(--parchment); color: var(--pink); }
.nav-dropdown-item i { color: var(--pink); opacity: 0.6; font-size: 18px; }

/* Mega Menu */
.nav-dropdown.mega-menu { width: 550px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 30px; }
.mega-column { display: flex; flex-direction: column; gap: 5px; }
.mega-column-title { font-size: 11px; font-weight: 800; text-transform: uppercase; color: var(--text-4); margin-bottom: 10px; letter-spacing: 0.1em; padding-left: 15px; }

/* Mobile Toggle */
.nav-toggle { width: 30px; height: 20px; position: relative; display: none; flex-direction: column; justify-content: space-between; cursor: pointer; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--ink); transition: 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 115px; left: 0; right: 0; bottom: 0; background: var(--ink); z-index: 1001; display: flex; flex-direction: column; padding: 30px 0; overflow-y: auto; transform: translateX(100%); transition: 0.5s var(--ease); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header { display: none; }
.mobile-menu .container { padding-top: 0; padding-bottom: 28px; }
.mobile-link { color: #fff; font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 10px; display: block; font-weight: 700; }
.mobile-contact { display: flex; flex-direction: column; gap: 14px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-contact a { color: rgba(255,255,255,0.7); font-size: 15px; font-weight: 600; display: flex; align-items: center; gap: 12px; }
.mobile-contact a i { color: var(--pink); font-size: 18px; }

/* Back to Top */
.back-to-top { position: fixed; bottom: 120px; right: 40px; width: 50px; height: 50px; background: #fff; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--ink); box-shadow: var(--shadow-sm); z-index: 1000; opacity: 0; visibility: hidden; transition: 0.3s; cursor: pointer; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--ink); color: #fff; transform: translateY(-5px); }

/* ─────────────────────────────────────────────────────────────────────
   06 ▸ HERO SECTION
   ───────────────────────────────────────────────────────────────────── */
.hero { padding: 120px 0 80px; position: relative; overflow: hidden; background: var(--parchment); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(11, 20, 38, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 20, 38, 0.045) 1px, transparent 1px); background-size: 64px 64px; opacity: 0.3; }
.hero-headline { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6rem); line-height: 0.95; letter-spacing: -0.04em; margin-bottom: 30px; }
.hero-headline em { font-style: italic; color: var(--pink); }
.hero-sub { font-size: 1.2rem; color: var(--text-2); max-width: 600px; margin-bottom: 40px; }

/* Scroll Cue */
.scroll-cue {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-3);
}
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--line), transparent); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 50%; background: var(--pink); animation: scrollDown 2s infinite; }
@keyframes scrollDown { to { top: 100%; } }

.hero-visual-stack { position: relative; height: 550px; perspective: 1000px; }
.hvs-item { position: absolute; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 8px solid #fff; transition: 0.8s var(--ease); }
.hvs-1 { top: 0; right: 0; width: 85%; height: 50%; z-index: 1; }
.hvs-2 { bottom: 30px; left: -10px; width: 65%; height: 55%; z-index: 2; }
.hvs-stats-card { position: absolute; bottom: 0; right: 20px; background: var(--crimson); color: #fff; padding: 25px; border-radius: 20px; z-index: 3; box-shadow: var(--shadow-crimson); text-align: center; }

/* ─────────────────────────────────────────────────────────────────────
   06b ▸ STATS BAND
   ───────────────────────────────────────────────────────────────────── */
.stats-band-unique { background: var(--ink); padding: 50px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.stats-grid-unique { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sgu-item { text-align: center; border-right: 1px solid rgba(255, 255, 255, 0.1); }
.sgu-item:last-child { border-right: none; }
.sgu-num { display: block; font-family: var(--font-display); font-size: 3rem; color: var(--gold-2); line-height: 1; font-weight: 700; margin-bottom: 5px; }
.sgu-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.6); font-weight: 700; }

/* ─────────────────────────────────────────────────────────────────────
   06c ▸ ACCREDITATIONS
   ───────────────────────────────────────────────────────────────────── */
.accreditation-strip { padding: 40px 0; background: var(--paper); border-bottom: 1px solid var(--line); overflow: hidden; }
.accred-header { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.accred-line { flex: 1; height: 1px; background: linear-gradient(to right, var(--line), transparent); }
.accred-marquee { overflow: hidden; position: relative; }
.accred-track { display: flex; gap: 60px; width: max-content; animation: rmuScroll 40s linear infinite; }
.accred-item { display: flex; align-items: center; gap: 15px; background: var(--parchment); padding: 12px 25px; border-radius: var(--r-sm); border: 1px solid var(--line); }
.accred-item img { height: 40px; width: auto; filter: grayscale(1); opacity: 0.5; transition: 0.3s; }
.accred-item:hover img { filter: grayscale(0); opacity: 1; }

/* ─────────────────────────────────────────────────────────────────────
   06d ▸ LEADERSHIP SECTION
   ───────────────────────────────────────────────────────────────────── */
.leadership-section { padding: 120px 0; background: var(--paper); position: relative; overflow: hidden; }
.leadership-bg-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 15vw; font-weight: 900; color: rgba(11, 20, 38, 0.02); white-space: nowrap; pointer-events: none; }
.vision-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.vision-image-stack { position: relative; height: 500px; }
.vis-img { position: absolute; border-radius: 30px; overflow: hidden; border: 10px solid var(--parchment); box-shadow: var(--shadow-lg); }
.vis-img-1 { top: 50px; left: 0; width: 100%; z-index: 1; }
.vision-quote { font-family: var(--font-display); font-size: 2.2rem; line-height: 1.3; color: var(--ink); margin-bottom: 40px; font-style: italic; position: relative; }
.vision-quote::before { content: '“'; position: absolute; top: -40px; left: -20px; font-size: 8rem; color: var(--pink); opacity: 0.2; }
.va-details { margin-top: 20px; }
.va-name { font-weight: 800; font-size: 20px; color: var(--ink); }
.va-role { font-size: 14px; color: var(--pink); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }

/* ─────────────────────────────────────────────────────────────────────
   06e ▸ NEWS SECTION
   ───────────────────────────────────────────────────────────────────── */
.news-section { padding: 100px 0; background: var(--ink); color: #fff; }
.news-reel { display: flex; gap: 30px; margin-top: 50px; overflow-x: auto; padding-bottom: 30px; scrollbar-width: none; }
.news-reel::-webkit-scrollbar { display: none; }
.reel-item { min-width: 350px; background: rgba(255, 255, 255, 0.03); padding: 40px; border-radius: 30px; border: 1px solid rgba(255, 255, 255, 0.05); transition: 0.4s; }
.reel-item:hover { background: rgba(255, 255, 255, 0.06); border-color: var(--pink); transform: translateY(-10px); }
.reel-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--pink); background: rgba(208, 30, 67, 0.1); padding: 5px 12px; border-radius: 50px; margin-bottom: 20px; display: inline-block; }
.reel-title { font-family: var(--font-display); font-size: 24px; margin-bottom: 25px; line-height: 1.3; }
.reel-link { font-weight: 700; font-size: 14px; color: #fff; display: flex; align-items: center; gap: 10px; }
.reel-link i { transition: 0.3s; }
.reel-item:hover .reel-link i { transform: translateX(5px); color: var(--pink); }

/* ─────────────────────────────────────────────────────────────────────
   06f ▸ STATS BAND (GENERAL)
   ───────────────────────────────────────────────────────────────────── */
.stats-band { padding: 80px 0; background: var(--parchment); position: relative; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 10px; }
.stat-unit { color: var(--pink); }
.stat-lbl { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); }

/* ─────────────────────────────────────────────────────────────────────
   07 ▸ ABOUT SECTION (Unique)
   ───────────────────────────────────────────────────────────────────── */
.about-section-unique { padding: 120px 0; background: var(--paper); }
.about-unique-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.aug-visual { position: relative; }
.aug-frame { border-radius: 40px; overflow: hidden; border: 10px solid var(--parchment); box-shadow: var(--shadow-lg); }
.aug-experience-badge { position: absolute; bottom: -30px; right: -30px; background: var(--crimson); color: #fff; padding: 35px; border-radius: 30px; text-align: center; box-shadow: var(--shadow-crimson); }
.aeb-num { display: block; font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; line-height: 1; }

/* ─────────────────────────────────────────────────────────────────────
   08 ▸ SCHOOLS SECTION (Bento Grid)
   ───────────────────────────────────────────────────────────────────── */
.schools-section { padding: 120px 0; position: relative; }
.schools-section::before {
    content: '✦';
    position: absolute;
    top: 80px; left: 6%;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.20;
    animation: spinSlow 24s linear infinite;
}

.schools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.school-card {
    position: relative;
    overflow: hidden;
    padding: 32px 24px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r);
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--ink);
    transition: transform var(--d) var(--ease), border-color var(--d-fast), box-shadow var(--d) var(--ease);
    isolation: isolate;
}
.school-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
    border-radius: inherit;
    transform: translateY(101%);
    transition: transform .55s var(--ease);
    z-index: -1;
}
.school-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    color: var(--text-light);
}
.school-card:hover::before { transform: translateY(0); }

.sc-number {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 3rem;
    line-height: 1;
    color: var(--pink);
    transition: color var(--d) var(--ease);
    font-variation-settings: "opsz" 144;
    margin-bottom: 18px;
}
.school-card:hover .sc-number { color: var(--gold-2); }

.sc-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.15rem;
    line-height: 1.25;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
    color: inherit;
}
.sc-tag {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.45;
    margin: 0;
    transition: color var(--d) var(--ease);
}
.school-card:hover .sc-tag { color: var(--text-light-2); }

.sc-arrow {
    position: absolute;
    top: 24px; right: 24px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--parchment);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--d) var(--ease);
    color: var(--ink);
}
.school-card:hover .sc-arrow {
    background: var(--pink);
    color: var(--paper);
    transform: rotate(-45deg);
}
.sc-glow {
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(232,62,140,0.25) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--d);
    pointer-events: none;
}
.school-card:hover .sc-glow { opacity: 1; }

/* Bento sizes */
.schools-grid > .school-card:nth-child(1) { grid-column: span 2; }
.schools-grid > .school-card:nth-child(6) { grid-column: span 2; }
.schools-grid > .school-card:nth-child(7) { grid-column: span 2; }
.schools-grid > .school-card:nth-child(12) { grid-column: span 2; }

@media (max-width: 1199px) {
    .schools-grid { grid-template-columns: repeat(3, 1fr); }
    .schools-grid > .school-card:nth-child(n) { grid-column: span 1; }
    .schools-grid > .school-card:nth-child(1) { grid-column: span 3; }
}
@media (max-width: 767px) {
    .schools-section { padding: 70px 0; }
    .schools-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .schools-grid > .school-card:nth-child(n) { grid-column: span 1; }
    .school-card { padding: 22px 18px; min-height: 200px; }
    .sc-number { font-size: 2.4rem; }
}
/* ─────────────────────────────────────────────────────────────────────
   09 ▸ COURSES EXPLORER
   ───────────────────────────────────────────────────────────────────── */
.courses-section-unique { padding: 120px 0; background: var(--paper); }
.courses-explorer-unique { background: #fff; border-radius: var(--r-lg); border: 1px solid var(--line); overflow: hidden; display: grid; grid-template-columns: 300px 1fr; min-height: 600px; box-shadow: var(--shadow-lg); }
.courses-tabs-unique { background: var(--parchment); border-right: 1px solid var(--line); padding: 25px; display: flex; flex-direction: column; gap: 10px; }
.courses-tab-unique { background: transparent; border: none; padding: 16px 20px; border-radius: 12px; display: flex; align-items: center; gap: 15px; color: var(--ink); font-weight: 700; text-align: left; transition: 0.3s; width: 100%; cursor: pointer; }
.courses-tab-unique.active { background: var(--pink); color: #fff; }
.courses-panels-unique { padding: 50px; flex: 1; }
.courses-panel-unique { display: none; }
.courses-panel-unique.active { display: block; animation: fadeIn 0.5s var(--ease); }

.cpu-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; border-bottom: 1px solid var(--line); padding-bottom: 30px; }
.cpu-info h3 { font-family: var(--font-display); font-size: 32px; color: var(--ink); margin-bottom: 10px; }
.cpu-info p { color: var(--text-3); font-size: 15px; }

.cpu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.cpu-level-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; color: var(--pink); margin-bottom: 20px; }
.cpu-course-list { list-style: none; padding: 0; margin: 0; }
.cpu-course-list li { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 15px; }
.c-name { font-weight: 600; color: var(--ink); }
.c-dur { font-size: 12px; font-weight: 700; color: var(--text-4); background: var(--parchment); padding: 4px 10px; border-radius: 6px; }

/* ─────────────────────────────────────────────────────────────────────
   10 ▸ WHY PHONICS
   ───────────────────────────────────────────────────────────────────── */
.why-section-unique { padding: 120px 0; background: var(--ink); color: #fff; }
.why-staggered-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 60px; }
.why-stagger-item { background: rgba(255,255,255,0.03); padding: 40px; border-radius: var(--r-lg); border: 1px solid rgba(255,255,255,0.05); transition: 0.4s; }
.why-stagger-item:hover { border-color: var(--pink); transform: translateY(-10px); }
.wsi-icon { font-size: 48px; color: var(--pink); margin-bottom: 25px; }

/* ─────────────────────────────────────────────────────────────────────
   11 ▸ SCHOLARSHIPS
   ───────────────────────────────────────────────────────────────────── */
.scholarship-section-unique { padding: 120px 0; background: var(--parchment); }
.scholar-unique-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.scholar-card-unique { background: #fff; padding: 60px 40px; border-radius: var(--r-lg); text-align: center; border: 1px solid var(--line); transition: 0.4s; }
.scholar-card-unique:hover { transform: scale(1.05); border-color: var(--pink); box-shadow: var(--shadow-lg); }
.scu-val { display: block; font-family: var(--font-display); font-size: 4rem; color: var(--pink); font-weight: 700; margin-bottom: 10px; }

/* ─────────────────────────────────────────────────────────────────────
   12 ▸ CAMPUS LIFE (Mosaic) — named-area grid, drift-proof
   ───────────────────────────────────────────────────────────────────── */
.campus-section-unique { padding: 20px 0; background: var(--paper); }

.campus-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
    grid-template-areas:
        "tall  top-m    top-r"
        "tall  mid-m    mid-r"
        "tall  bot-m    bot-r";
    gap: 20px;
}

.mosaic-item {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 2px solid #D01E43;
    box-sizing: border-box;   /* border included in cell size */
    min-width: 0;             /* prevents content from pushing cell wider */
    min-height: 0;
}
.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.8s;
}
.mosaic-item:hover img { transform: scale(1.1); }

/* Pin each tile to a named cell — nothing can move them. */
.m-1 { grid-area: tall;  }
.m-2 { grid-area: top-m; }
.m-3 { grid-area: top-r; }
.m-4 { grid-area: mid-m; }
.m-5 { grid-area: mid-r; }
.m-6 { grid-area: bot-m; }
.m-7 { grid-area: bot-r; }

@media (max-width: 991px) {
    .campus-mosaic {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
        grid-auto-rows: 350px;
        grid-template-areas: none;  /* drop the desktop areas on mobile */
    }
    .campus-mosaic .mosaic-item {
        grid-area: auto;             /* reset, let it auto-flow into 2 cols */
    }
}
/* ─────────────────────────────────────────────────────────────────────
   13 ▸ TESTIMONIALS
   ───────────────────────────────────────────────────────────────────── */
.testimonials-section-unique { padding: 120px 0; background: var(--parchment); }
.testimonials-track-unique { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.testimonial-card-unique { background: #fff; padding: 50px 40px; border-radius: 30px; border: 1px solid var(--line); }

/* ─────────────────────────────────────────────────────────────────────
   14 ▸ PLACEMENTS
   ───────────────────────────────────────────────────────────────────── */
.placement-section-unique { padding: 120px 0; background: var(--paper); }
.placement-callout-unique { display: flex; justify-content: space-between; align-items: center; background: var(--parchment); padding: 50px; border-radius: var(--r-lg); border: 1px solid var(--line); }
.pcu-stat { flex: 1; text-align: center; }
.pcu-num { display: block; font-family: var(--font-display); font-size: 4rem; color: var(--crimson); font-weight: 700; line-height: 1; }
.pcu-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); }
.pcu-divider { width: 1px; height: 60px; background: var(--line); }

.recruiter-marquee-unique { margin-top: 60px; overflow: hidden; }
.rmu-track { display: flex; gap: 80px; width: max-content; animation: rmuScroll 30s linear infinite; }
@keyframes rmuScroll { to { transform: translateX(-50%); } }
.rmu-item img { height: 50px; width: auto; filter: grayscale(1); opacity: 0.4; transition: 0.3s; }
.rmu-item:hover img { filter: grayscale(0); opacity: 1; }

/* ─────────────────────────────────────────────────────────────────────
   15 ▸ FINAL CTA & FOOTER
   ───────────────────────────────────────────────────────────────────── */
.final-cta-unique { padding: 150px 0; background: var(--ink); color: #fff; position: relative; overflow: hidden; text-align: center; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(208,30,67,0.3) 0%, transparent 70%); filter: blur(50px); pointer-events: none; }
.cta-contact-strip { display: inline-flex; align-items: center; background: rgba(255,255,255,0.05); padding: 15px 40px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,0.1); margin-top: 40px; gap: 30px; }
.ccs-item a { font-size: 18px; font-weight: 700; color: #fff; }

.site-footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 80px 0 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top { padding-bottom: 60px; }
.footer-logo { height: 60px; margin-bottom: 20px; }
.footer-tag { color: var(--gold-2); font-weight: 700; font-size: 12px; text-transform: uppercase; margin-bottom: 15px; }
.footer-about { font-size: 14px; line-height: 1.6; margin-bottom: 30px; }
.footer-social { display: flex; gap: 15px; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; transition: 0.3s; }
.footer-social a:hover { background: var(--pink); transform: translateY(-5px); }
.footer-title { font-family: var(--font-display); font-size: 18px; color: #fff; margin-bottom: 25px; font-weight: 600; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 12px; }
.footer-list a { font-size: 14px; color: rgba(255,255,255,0.6); transition: 0.3s; }
.footer-list a:hover { color: var(--pink); padding-left: 5px; }
.footer-contact { display: flex; flex-direction: column; gap: 20px; }
.fc-item { display: flex; gap: 15px; font-size: 14px; }
.fc-item i { color: var(--pink); font-size: 20px; }
.footer-list-inline { list-style: none; padding: 0; margin: 0; display: flex; gap: 20px; }
.footer-list-inline a { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; }
.footer-bottom { background: rgba(0,0,0,0.2); padding: 30px 0; font-size: 13px; border-top: 1px solid rgba(255,255,255,0.05); }

/* ─────────────────────────────────────────────────────────────────────
   16 ▸ FLOATING ACTIONS
   ───────────────────────────────────────────────────────────────────── */
.floating-actions { position: fixed; bottom: 40px; right: 40px; z-index: 1000; display: flex; flex-direction: column; gap: 15px; }
.float-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 30px; box-shadow: var(--shadow-lg); transition: 0.3s; }
.float-btn.whatsapp { background: #25D366; }
.float-btn.call { background: var(--crimson); }

/* WhatsApp Widget */
.wa-widget { position: fixed; bottom: 40px; left: 40px; z-index: 1000; }
.wa-btn { width: 60px; height: 60px; background: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: var(--shadow-lg); transition: 0.3s; position: relative; }
.wa-btn::after { content: ''; position: absolute; inset: -5px; border: 2px solid #25D366; border-radius: 50%; opacity: 0.5; animation: waPulse 2s infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.4); opacity: 0; } }
.wa-tooltip { position: absolute; bottom: 75px; left: 0; background: var(--ink); color: #fff; padding: 8px 15px; border-radius: 8px; font-size: 12px; font-weight: 700; white-space: nowrap; opacity: 0; visibility: hidden; transform: translateY(10px); transition: 0.3s; }
.wa-widget:hover .wa-tooltip { opacity: 1; visibility: visible; transform: translateY(0); }

/* ─────────────────────────────────────────────────────────────────────
   17 ▸ GLOBAL MEDIA QUERIES
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .container { max-width: 95%; }
}

@media (max-width: 992px) {
    .vision-grid { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .vision-image-stack { height: 400px; max-width: 500px; margin: 0 auto; }
    .cpu-grid { grid-template-columns: 1fr; }
    .cpu-header { flex-direction: column; gap: 20px; align-items: center; }
    .bento-grid-unique { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
    .bento-card.b-large, .bento-card.b-medium { grid-column: span 2; }
    .why-staggered-grid { grid-template-columns: repeat(2, 1fr); }
    .scholar-unique-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-contact-strip { flex-direction: column; padding: 30px; width: 100%; border-radius: 20px; }
    .stats-grid-unique { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .sgu-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
    .bento-grid-unique { grid-template-columns: 1fr; }
    .bento-card.b-large, .bento-card.b-medium { grid-column: span 1; }
    .why-staggered-grid, .scholar-unique-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .section-title { font-size: 2.5rem; }
    .hero-headline { font-size: 2.8rem; }
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ─────────────────────────────────────────────────────────────────────
   19 ▸ LEAD ENQUIRY FORM & VALIDATION
   ───────────────────────────────────────────────────────────────────── */
.lead-form-card {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    color: var(--text-light);
    position: relative;
    z-index: 10;
    overflow: hidden;
}
.lead-form-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(208, 30, 67, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}
.lfc-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
}
.lfc-header h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 6px;
}
.lfc-header p {
    font-size: 12px;
    color: var(--gold-2);
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-group-custom {
    position: relative;
    margin-bottom: 20px;
}
.form-floating-custom {
    position: relative;
}
.form-floating-custom input,
.form-floating-custom textarea {
    width: 100%;
    padding: 24px 16px 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-sm);
    color: #fff;
    font-size: 15px;
    transition: all 0.3s var(--ease);
}
.form-floating-custom textarea {
    padding-top: 28px;
    resize: none;
}
.form-floating-custom label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--text-light-3);
    pointer-events: none;
    transition: all 0.3s var(--ease);
}
.form-floating-custom textarea ~ label {
    top: 20px;
    transform: none;
}
.form-floating-custom input:focus ~ label,
.form-floating-custom input:not(:placeholder-shown) ~ label,
.form-floating-custom textarea:focus ~ label,
.form-floating-custom textarea:not(:placeholder-shown) ~ label {
    top: 8px;
    transform: none;
    font-size: 11px;
    color: var(--pink-2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-floating-custom input:focus,
.form-floating-custom textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(208, 30, 67, 0.15);
    outline: none;
}
.form-select-custom {
    position: relative;
}
.form-select-custom select {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-sm);
    color: #fff;
    font-size: 15px;
    appearance: none;
    transition: all 0.3s var(--ease);
    cursor: pointer;
}
.form-select-custom select option,
.form-select-custom select optgroup {
    background: var(--ink-2);
    color: #fff;
}
.form-select-custom select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(208, 30, 67, 0.15);
    outline: none;
}
.form-select-custom::after {
    content: '▼';
    font-size: 10px;
    color: var(--text-light-3);
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.form-consent {
    margin-top: 15px;
    margin-bottom: 15px;
}
.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}
.consent-checkbox input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--pink);
    cursor: pointer;
}
.consent-checkbox span {
    font-size: 12px;
    color: var(--text-light-2);
    line-height: 1.4;
}
.field-error {
    font-size: 11px;
    color: #ff4a6b;
    font-weight: 600;
    margin-top: 4px;
    margin-left: 4px;
    animation: shakeError 0.3s ease;
}
.form-floating-custom input.is-invalid,
.form-floating-custom textarea.is-invalid,
.form-select-custom select.is-invalid {
    border-color: #ff4a6b !important;
    box-shadow: 0 0 0 4px rgba(255, 74, 107, 0.15) !important;
}
@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}
.form-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--r-sm);
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s var(--ease);
}
.form-banner.show {
    opacity: 1;
    transform: translateY(0);
}
.form-banner.success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #2ece56;
}
.form-banner.error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #f35866;
}
.form-banner i {
    font-size: 20px;
    flex-shrink: 0;
}
.form-banner a {
    color: inherit;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .lead-form-card {
        padding: 30px 24px;
        margin-top: 40px;
    }
}
/* =====================================================================
   RESPONSIVE FIXES — FULL MOBILE & TABLET OVERHAUL
   ===================================================================== */

/* ── Missing base styles for HTML elements ── */
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--pink-soft); color: var(--pink);
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.12em; padding: 8px 18px;
    border-radius: var(--r-pill); border: 1px solid rgba(208,30,67,0.2);
    margin-bottom: 28px;
}
.pulse-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--pink); display: inline-block;
    animation: pulseDot 1.8s ease infinite;
}
@keyframes pulseDot {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:0.5; transform:scale(1.5); }
}
.hero-content { padding-right: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-noise { position: absolute; inset: 0; opacity: 0.03; pointer-events: none; }

.eyebrow-light { background: rgba(255,255,255,0.08); color: var(--gold-2);
    border-color: rgba(232,181,36,0.25); }

.section-head-row { display: flex; justify-content: space-between;
    align-items: flex-end; gap: 40px; margin-bottom: 60px; flex-wrap: wrap; }
.section-lede { color: var(--text-2); font-size: 1rem;
    max-width: 480px; line-height: 1.7; }

.about-para { font-size: 1.05rem; color: var(--text-2); line-height: 1.8;
    margin-bottom: 28px; }
.about-features-unique { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.afu-item { display: flex; align-items: center; gap: 12px;
    font-weight: 600; font-size: 15px; color: var(--ink); }
.afu-item i { font-size: 22px; color: var(--pink); }

.va-line { width: 60px; height: 3px; background: var(--pink); margin-bottom: 14px; }
.vision-author { margin-top: 30px; }

.mosaic-overlay { position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,20,38,0.4) 0%, transparent 60%);
    opacity: 0; transition: 0.4s; }
.mosaic-item:hover .mosaic-overlay { opacity: 1; }

/* Testimonials missing classes */
.tcu-quote { font-size: 36px; color: var(--pink); opacity: 0.5; margin-bottom: 20px; }
.tcu-text { font-size: 15px; line-height: 1.75; color: var(--text-2);
    margin-bottom: 30px; font-style: italic; }
.tcu-author { display: flex; align-items: center; gap: 15px; }
.tcu-avatar { width: 48px; height: 48px; border-radius: 50%;
    background: var(--pink); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 18px; flex-shrink: 0; }
.tcu-info h6 { font-weight: 700; color: var(--ink); margin: 0 0 3px; }
.tcu-info span { font-size: 13px; color: var(--text-3); }

/* Schools card — missing classes used in index.php */
.school-card-num { font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text-3); margin-bottom: 12px;
    display: block; transition: color var(--d) var(--ease); }
.school-card:hover .school-card-num { color: rgba(255,255,255,0.5); }
.school-icon { font-size: 32px; margin-bottom: 14px; }
.school-name { font-family: var(--font-display); font-size: 1.1rem;
    font-weight: 600; color: var(--ink); margin: 0 0 6px;
    transition: color var(--d) var(--ease); line-height: 1.3; }
.school-card:hover .school-name { color: #fff; }
.school-tagline { font-size: 13px; color: var(--text-3); margin: 0;
    line-height: 1.5; transition: color var(--d) var(--ease); }
.school-card:hover .school-tagline { color: rgba(255,255,255,0.6); }
.school-card-arrow { position: absolute; top: 20px; right: 20px;
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--parchment);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--ink);
    transition: all var(--d) var(--ease); }
.school-card:hover .school-card-arrow { background: var(--pink); color: #fff; transform: rotate(-45deg); }

/* CTA section missing classes */
.cta-title { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1; letter-spacing: -0.04em; color: #fff; margin: 20px 0; }
.cta-title em { font-style: italic; color: var(--pink); }
.cta-lead { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 580px;
    margin: 0 auto; line-height: 1.7; }
.cta-content-unique { text-align: center; position: relative; z-index: 2; }
.cta-actions-wrap { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.cta-main-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.ccs-item { display: flex; align-items: center; gap: 14px; }
.ccs-item i { font-size: 24px; color: var(--pink); }
.ccs-item label { display: block; font-size: 11px; text-transform: uppercase;
    letter-spacing: 0.1em; color: rgba(255,255,255,0.5); font-weight: 700; }
.ccs-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* Courses explorer responsive fix */
.cpu-level-block { margin-bottom: 30px; }

/* ── ≤1199px — Large tablets / small laptops ── */
@media (max-width: 1199px) {
    .hero-content { padding-right: 20px; }
    .about-unique-grid { gap: 50px; }
    .vision-grid { gap: 50px; }
    .aug-experience-badge { bottom: -20px; right: -10px; padding: 25px; }
}

/* ── ≤991px — Tablets ── */
@media (max-width: 991px) {
    /* Hero */
    .hero { padding: 80px 0 60px; }
    .hero-content { padding-right: 0; text-align: center; }
    .hero-headline { font-size: clamp(2.4rem, 7vw, 3.6rem); }
    .hero-sub { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-badge { margin-left: auto; margin-right: auto; }

    /* Mobile/tablet: show the lead form FIRST, hero text after.
       Desktop (>=992px) keeps its original text-left / form-right layout. */
    .hero .row { flex-direction: column; }
    .hero .row > .col-lg-5 { order: 1; } /* form column */
    .hero .row > .col-lg-7 { order: 2; } /* headline column */

    /* Spacing: form now sits on top, text gets the gap below it */
    .col-lg-5 .lead-form-card { margin-top: 0; }
    .hero .row > .col-lg-7 .hero-content { margin-top: 40px; }

    /* About */
    .about-unique-grid { grid-template-columns: 1fr; gap: 50px; }
    .aug-visual { max-width: 480px; margin: 0 auto; }
    .aug-experience-badge { bottom: -15px; right: 0px; padding: 20px 25px; }
    .aeb-num { font-size: 2.5rem; }
    .aug-content { text-align: center; }
    .about-features-unique { align-items: center; }

    /* Vision / Leadership */
    .vision-grid { grid-template-columns: 1fr; gap: 40px; }
    .vision-image-stack { max-width: 400px; margin: 0 auto; height: 380px; }
    .vision-content { text-align: center; }
    .va-line { margin: 0 auto 14px; }

    /* Schools */
    .section-head-row { flex-direction: column; align-items: flex-start; gap: 16px; }
    .section-lede { max-width: 100%; }

    /* Courses explorer — stack tabs above panels */
    .courses-explorer-unique {
        grid-template-columns: 1fr;
        min-height: unset;
    }
    .courses-tabs-unique {
        flex-direction: row; flex-wrap: wrap;
        border-right: none; border-bottom: 1px solid var(--line);
        gap: 8px; padding: 16px;
    }
    .courses-tab-unique { width: auto; padding: 10px 16px; font-size: 13px; }
    .courses-tab-unique .ctu-num { font-size: 18px; }
    .courses-panels-unique { padding: 30px 24px; }
    .cpu-grid { grid-template-columns: 1fr; gap: 20px; }

    /* Why grid */
    .why-staggered-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .why-stagger-item.mt-lg-5 { margin-top: 0 !important; }

    /* Scholarship */
    .scholar-unique-grid { grid-template-columns: repeat(2, 1fr); }

    /* Placement callout */
    .placement-callout-unique { flex-wrap: wrap; gap: 30px; padding: 35px; }
    .pcu-stat { flex: 0 0 40%; }
    .pcu-divider { display: none; }

    /* CTA contact strip */
    .cta-contact-strip { flex-direction: column; gap: 20px; padding: 25px 30px;
        border-radius: 20px; }
    .ccs-divider { width: 60px; height: 1px; }

    /* Stats band grid */
    .stats-grid-unique { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .sgu-item { border-right: none; }

    /* Floating / back-to-top */
    .floating-actions { bottom: 20px; right: 20px; }
    .back-to-top { bottom: 90px; right: 20px; }
}

/* ── ≤767px — Mobile landscape / large phones ── */
@media (max-width: 767px) {
    /* Utility bar already hidden via d-none d-lg-block */

    /* Hero */
    .hero { padding: 70px 0 50px; }
    .hero-headline { font-size: clamp(2rem, 8vw, 2.8rem); }
    .hero-sub { font-size: 1rem; }
    .btn-primary-lg, .btn-ghost-lg { padding: 14px 26px; font-size: 14px; }
    .scroll-cue { display: none; }

    /* About */
    .aug-experience-badge { position: static; margin-top: 20px;
        border-radius: 16px; padding: 18px 24px;
        display: inline-flex; align-items: center; gap: 14px; }
    .aeb-num { font-size: 2.2rem; }
    .aug-content { text-align: left; }
    .about-features-unique { align-items: flex-start; }
    .section-title { font-size: clamp(2rem, 7vw, 3rem); }

    /* Stats rings */
    .rings-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .ring-wrap { width: 130px; height: 130px; }
    .ring-num { font-size: 1.8rem; }
    .ring-card { padding: 22px 14px; }

    /* Stats band */
    .stats-band { padding: 60px 0; }
    .stats-band .stat-num { font-size: 2.6rem; }

    /* Schools */
    .schools-section { padding: 60px 0; }
    .schools-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .schools-grid > .school-card:nth-child(n) { grid-column: span 1; }
    .school-card { padding: 20px 16px; min-height: 180px; }
    .school-icon { font-size: 26px; margin-bottom: 10px; }
    .school-name { font-size: 1rem; }
    .school-tagline { font-size: 12px; }

    /* Courses */
    .courses-section-unique { padding: 70px 0; }
    .courses-tabs-unique { overflow-x: auto; flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .courses-tabs-unique::-webkit-scrollbar { display: none; }
    .courses-tab-unique { white-space: nowrap; flex-shrink: 0; }
    .courses-panels-unique { padding: 24px 16px; }
    .cpu-header { flex-direction: column; gap: 16px; align-items: flex-start; }
    .cpu-info h3 { font-size: 22px; }

    /* Why */
    .why-section-unique { padding: 70px 0; }
    .why-staggered-grid { grid-template-columns: 1fr; gap: 20px; }
    .why-stagger-item { padding: 28px 24px; }

    /* Scholarship */
    .scholarship-section-unique { padding: 70px 0; }
    .scholar-unique-grid { grid-template-columns: 1fr; }
    .scholar-card-unique { padding: 40px 28px; }
    .scu-val { font-size: 3rem; }

    /* Campus mosaic */
    .campus-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-auto-rows: 180px;
        grid-template-areas: none;
    }
    .campus-mosaic .mosaic-item { grid-area: auto !important; }
    .m-1 { grid-column: span 2; height: 220px; }

    /* Testimonials */
    .testimonials-section-unique { padding: 70px 0; }
    .testimonials-track-unique { grid-template-columns: 1fr; }
    .testimonial-card-unique { padding: 32px 24px; }

    /* Placement */
    .placement-section-unique { padding: 70px 0; }
    .placement-callout-unique { padding: 28px 20px; gap: 20px; }
    .pcu-stat { flex: 0 0 100%; }
    .pcu-num { font-size: 2.8rem; }

    /* Leadership */
    .leadership-section { padding: 70px 0; }
    .vision-image-stack { height: auto; max-width: 100%; }
    .vis-img { position: relative; top: auto; left: auto; width: 100%; border: 6px solid var(--parchment); }
    .vis-img-1 { top: auto; left: auto; width: 100%; }
    .vision-quote { font-size: 1.5rem; }
    .vision-quote::before { font-size: 5rem; top: -20px; }

    /* CTA */
    .final-cta-unique { padding: 90px 0; }
    .cta-title { font-size: clamp(2rem, 8vw, 3rem); }
    .cta-contact-strip { flex-direction: column; width: 100%; }

    /* Footer */
    .footer-list-inline { flex-wrap: wrap; gap: 12px; }

    /* Floating buttons */
    .float-btn { width: 50px; height: 50px; font-size: 24px; }
    .floating-actions { bottom: 16px; right: 16px; gap: 10px; }
    .wa-widget { bottom: 16px; left: 16px; }
    .wa-btn { width: 50px; height: 50px; font-size: 24px; }
    .back-to-top { bottom: 80px; right: 16px; width: 42px; height: 42px; }

    /* Stats v2 */
    .stats-v2 { padding: 70px 0; }
    .stats-v2-head { margin-bottom: 40px; padding: 0 10px; }
    .stats-v2-head h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
}

/* ── ≤480px — Small phones ── */
@media (max-width: 480px) {
    .hero-headline { font-size: clamp(1.8rem, 9vw, 2.4rem); }

    /* Schools single column on very small screens */
    .schools-grid { grid-template-columns: 1fr; }
    .schools-grid > .school-card:nth-child(n) { grid-column: span 1; }
    .m-1 { grid-column: span 1; height: 200px; }
    .campus-mosaic { grid-template-columns: 1fr; grid-auto-rows: 200px; }

    /* Stats rings single column */
    .rings-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }

    /* Announcement bar font size */
    .announcement-bar { font-size: 10px; }

    /* Sections padding reduction */
    .about-section-unique,
    .courses-section-unique,
    .why-section-unique,
    .scholarship-section-unique,
    .placement-section-unique,
    .testimonials-section-unique,
    .leadership-section { padding: 55px 0; }

    /* Courses tabs always scroll horizontally */
    .courses-tabs-unique { padding: 12px; gap: 6px; }
    .courses-tab-unique { padding: 9px 12px; font-size: 12px; }

    /* Form card tighter */
    .lead-form-card { padding: 24px 18px; }

    /* CTA */
    .cta-contact-strip { padding: 20px 16px; gap: 16px; }
    .btn-primary-lg, .btn-ghost-lg { padding: 13px 22px; font-size: 13px; gap: 8px; }
}