/* ============================================================
   SAS INSTITUTIONS — MAIN STYLESHEET
   style.css
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
    --font-heading: "Plus Jakarta Sans", sans-serif;
    --font-body: "Inter", sans-serif;

    --navy:         #075463;
    --navy-2:       #087F91;
    --navy-deep:    #0A2833;
    --white:        #FFFFFF;
    --off-white:    #F7FAFA;
    --gold:         #4177CC;
    --gold-light:   #5A8FD8;
    --text-dark:    #142B35;
    --text-muted:   #52666D;
    --bg-light:     #EAF8FA;
    --border:       #D9E7EA;



    --radius-sm:    8px;
    --radius-md:    12px;
    --radius-lg:    16px;

    --shadow-sm:    0 1px 4px rgba(10,40,51,.06);
    --shadow-md:    0 8px 25px rgba(10,40,51,.06);

    --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out:  cubic-bezier(0.4, 0, 0.2, 1);

    --container:    1260px;
/* ── Section Spacing (Reduced) ────────────────────────── */
:root {
    --section-v:    clamp(20px, 2vw, 35px);
    --section-v-sm: clamp(16px, 1.8vw, 28px);
}
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    scrollbar-gutter: stable;
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── Container ────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

/* ── Separate dynamic page template ─────────────────────── */
.standard-page__breadcrumb { padding: 14px 0; background: var(--off-white); border-bottom: 1px solid var(--border); }
.standard-page__breadcrumb .container { display: flex; gap: 10px; font-size: .82rem; color: var(--text-muted); }
.standard-page__breadcrumb a { color: var(--navy); }
.standard-page__hero { padding: clamp(80px, 11vw, 150px) 0 100px; background: linear-gradient(120deg, #eff9f8, #fff 62%, #f8f1e5); }
.standard-page__hero h1 { max-width: 920px; color: var(--navy-deep); font: 800 clamp(2.7rem, 6vw, 6rem)/1 var(--font-heading); letter-spacing: -.055em; margin: 18px 0 25px; }
.standard-page__hero > .container > p:last-child { max-width: 650px; color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; }
.standard-page__content { padding: var(--section-v) 0; background: var(--white); }
.standard-page__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.standard-page__card { display: grid; grid-template-columns: 42px 1fr; gap: 18px; min-height: 190px; padding: 28px; background: var(--off-white); border: 1px solid var(--border); transition: transform .3s var(--ease-out), border-color .3s ease, box-shadow .3s ease; }
.standard-page__card:hover { transform: translateY(-6px); border-color: var(--gold-light); box-shadow: var(--shadow-md); }
.standard-page__card > span { color: var(--gold); font: 700 .75rem var(--font-heading); letter-spacing: .1em; }
.standard-page__card h2 { color: var(--navy); font: 700 1.25rem/1.25 var(--font-heading); margin: 0 0 12px; }
.standard-page__card p { color: var(--text-muted); font-size: .92rem; line-height: 1.7; margin: 0; }
.standard-page__cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 55px; padding: 30px; background: var(--navy-deep); color: var(--white); }
.standard-page__cta p { margin: 0; font: 700 1.1rem var(--font-heading); }
@media (max-width: 680px) { .standard-page__grid { grid-template-columns: 1fr; } .standard-page__cta { display: block; } .standard-page__cta .btn { margin-top: 20px; } }

/* ── Admin-managed public content ───────────────────────── */
.cms-managed-content { padding: clamp(64px, 8vw, 110px) 0; background: var(--off-white); border-top: 1px solid var(--border); }
.cms-managed-content h2 { max-width: 800px; color: var(--navy-deep); font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.1; margin: 0 0 18px; }
.cms-managed-content__intro { max-width: 650px; color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 38px; }
.cms-managed-content__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cms-managed-content__item { display: flex; gap: 15px; min-height: 140px; padding: 22px; background: var(--white); border: 1px solid var(--border); }
.cms-managed-content__item > span { color: var(--gold); font-size: 1.3rem; }
.cms-managed-content__item h3 { color: var(--navy); font-family: var(--font-heading); font-size: 1rem; margin: 0 0 9px; }
.cms-managed-content__item p { color: var(--text-muted); font-size: .86rem; line-height: 1.6; margin: 0; }
@media (max-width: 768px) { .cms-managed-content__grid { grid-template-columns: 1fr; } }

/* ── Section Label ────────────────────────────────────────── */
.section-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.section-label--light { color: rgba(197,161,90,.75); }
.section-label--light::before { background: rgba(197,161,90,.75); }

/* ── Typography Utilities ─────────────────────────────────── */
.heading-xl {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--navy);
}

.heading-lg {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--navy);
}

.heading-md {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.4vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.heading-sm {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--navy);
}

.body-lg {
    font-size: clamp(1rem, 1.3vw, 1.125rem);
    line-height: 1.75;
    color: var(--text-muted);
}

.body-md {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.7;
    color: var(--text-muted);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: all 0.28s var(--ease-out);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
}

.btn--primary {
    background: var(--navy);
    color: var(--white);
    border: 1.5px solid var(--navy);
}

.btn--primary:hover {
    background: var(--navy-2);
    border-color: var(--navy-2);
}

.btn--primary:hover .btn-arrow { transform: translateX(4px); }

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.45);
}

.btn--outline:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.8);
}

.btn--outline:hover .btn-arrow { transform: translateX(4px); }

.btn--outline-navy {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--border);
}

.btn--outline-navy:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}

.btn--gold {
    background: #D2A84B;
    color: var(--white);
    border: 1.5px solid #D2A84B;
}

.btn--outline-white {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid #ffffff;
}

.btn--outline-white:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--navy);
}

.btn--outline-white:hover .btn-arrow { transform: translateX(4px); }

.btn--gold:hover {
    background: #DDBB70;
    border-color: #DDBB70;
}

.btn--white {
    background: var(--white);
    color: var(--navy);
    border: 1.5px solid var(--white);
}

.btn--white:hover {
    background: var(--off-white);
}

.btn-arrow {
    display: inline-block;
    transition: transform 0.25s var(--ease-out);
}

/* ── Scroll Progress Bar ──────────────────────────────────── */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--gold);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ── Preloader ────────────────────────────────────────────── */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--navy-deep);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-wordmark {
    text-align: center;
}

.preloader-wordmark h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(12px);
    animation: preloaderReveal 0.6s var(--ease-out) 0.2s forwards;
}

.preloader-wordmark p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(197,161,90,0.8);
    margin-top: 8px;
    opacity: 0;
    transform: translateY(8px);
    animation: preloaderReveal 0.6s var(--ease-out) 0.4s forwards;
}

.preloader-bar-wrap {
    width: 180px;
    height: 1px;
    background: rgba(255,255,255,.12);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: preloaderReveal 0.4s ease 0.6s forwards;
}

.preloader-bar {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0%;
    background: var(--gold);
    animation: preloaderProgress 1s var(--ease-out) 0.7s forwards;
}

@keyframes preloaderReveal {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes preloaderProgress {
    to { width: 100%; }
}

/* ── Announcement Bar ─────────────────────────────────────── */
#announcement-bar {
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(197,161,90,.15);
    padding: 10px 0;
    position: relative;
    z-index: 200;
}

.announcement-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.announcement-bar__text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(247,248,245,.75);
    letter-spacing: 0.04em;
}

.announcement-bar__text span {
    color: var(--gold);
    font-weight: 600;
}

.announcement-bar__cta {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s ease;
}

.announcement-bar__cta:hover { gap: 9px; }

.announcement-bar__close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(247,248,245,.4);
    font-size: 1rem;
    transition: color 0.2s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-bar__close:hover { color: rgba(247,248,245,.9); }

/* ── Navbar ───────────────────────────────────────────────── */
#navbar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 500;
    transition: all 0.35s var(--ease-out);
    padding: 0;
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px clamp(20px, 4vw, 60px);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    transition: all 0.35s var(--ease-out);
}

/* Transparent state (over hero) */
#navbar.nav-transparent .navbar__inner {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
}

/* Scrolled state */
#navbar.nav-scrolled {
    top: 50px;
}

#navbar.nav-scrolled .navbar__inner {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 14px clamp(20px, 4vw, 60px);
}

/* Logo */
.navbar__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 8px;
}

.navbar__logo-icon {
    width: 50px;
    height: 50px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.navbar__logo-icon svg { color: var(--white); }

.navbar__logo-text { line-height: 1; }

.navbar__logo-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    transition: color 0.3s ease;
}

.navbar__logo-tagline {
    display: block;
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-top: 2px;
    transition: color 0.3s ease;
}

#navbar.nav-scrolled .navbar__logo-name { color: var(--navy); }
#navbar.nav-scrolled .navbar__logo-tagline { color: var(--gold); }

/* Desktop nav links */
.navbar__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex: 1;
    margin: 0 16px;
}

/* Dropdown container */
.navbar__dropdown {
    position: relative;
}

.navbar__link--dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    transition: transform 0.25s ease;
}

.navbar__dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.navbar__dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 240px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 24px rgba(11,31,51,.12);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s var(--ease-out);
    z-index: 600;
}

#navbar.nav-scrolled .navbar__dropdown-menu {
    top: calc(100% + 8px);
}

.navbar__dropdown:hover .navbar__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar__dropdown-item {
    display: block;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 601;
}

.navbar__dropdown-item:hover {
    background: var(--bg-light);
    color: var(--navy);
}

.navbar__link {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 8px 8px;
    color: var(--text-muted);
    border-radius: 6px;
    transition: all 0.25s ease;
    position: relative;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.navbar__link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 6px;
    background: rgba(7, 84, 99, 0.08);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.25s ease;
    border: none;
}

.navbar__link:hover {
    color: var(--navy);
    transform: none;
}

.navbar__link:hover::after {
    opacity: 1;
}

.navbar__link.active,
.navbar__link.active:hover,
.navbar__link.active:focus {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue, #1b73d8), var(--navy, #0a2833));
    border: 1px solid rgba(255,255,255,0.78);
    box-shadow: 0 8px 16px rgba(11,40,51,0.22), inset 0 0 12px rgba(255,255,255,0.16);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
}

.navbar__link.active::after {
    opacity: 0;
}

#navbar.nav-scrolled .navbar__link {
    color: var(--text-muted);
}

#navbar.nav-scrolled .navbar__link:hover {
    color: var(--navy);
    background: rgba(7, 84, 99, 0.08);
    border: none;
}

#navbar.nav-scrolled .navbar__link.active,
#navbar.nav-scrolled .navbar__link.active:hover,
#navbar.nav-scrolled .navbar__link.active:focus {
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--blue, #1b73d8), var(--navy, #0a2833));
    border: 1px solid rgba(255,255,255,0.78);
    border-radius: 999px;
    box-shadow: 0 8px 16px rgba(11,40,51,0.22), inset 0 0 12px rgba(255,255,255,0.16);
    font-weight: 700;
    padding: 8px 14px;
}

/* Navbar CTA */
.navbar__cta {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 8px 16px;
    background: var(--gold);
    color: var(--white);
    border-radius: var(--radius-sm);
    transition: background 0.25s ease, transform 0.2s ease;
    margin-left: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar__cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* Hamburger */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    z-index: 600;
    position: relative;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    padding: 0;
}

.navbar__hamburger:active {
    transform: scale(0.9);
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: var(--navy);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    display: block;
    border-radius: 0;
}

#navbar.nav-scrolled .hamburger-line { 
    background: var(--navy);
}

.navbar__hamburger.open .hamburger-line {
    background: var(--navy) !important;
}

.navbar__hamburger.open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar__hamburger.open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.navbar__mobile-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 400px;
    background: var(--navy-deep);
    z-index: 490;
    display: flex;
    flex-direction: column;
    padding: 100px 40px 48px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease, 
                visibility 0.4s ease;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
}

.navbar__mobile-overlay.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Backdrop */
.navbar__mobile-overlay::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(10, 40, 51, 0.8);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.navbar__mobile-overlay.open::before {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav__links {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
    text-align: right;
}

.mobile-nav__link {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    font-weight: 700;
    color: rgba(255,255,255,.6);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: color 0.25s ease, padding-right 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
    text-align: right;
    opacity: 0;
    transform: translateX(30px);
}

.mobile-nav__link.active {
    color: var(--white);
    background: rgba(255,255,255,0.10);
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.16), inset 0 0 12px rgba(255,255,255,0.10);
}

.mobile-nav__link--sub {
    font-size: clamp(1rem, 4vw, 1.3rem);
    font-weight: 600;
    padding-right: 20px;
    color: rgba(255,255,255,.45);
}

.mobile-nav__link:hover {
    color: var(--white);
    padding-right: 8px;
}

.mobile-nav__link--sub:hover {
    color: var(--gold);
    padding-right: 28px;
}

/* Stagger animation for links */
.navbar__mobile-overlay.open .mobile-nav__link:nth-child(1) {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}
.navbar__mobile-overlay.open .mobile-nav__link:nth-child(2) {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.15s forwards;
}
.navbar__mobile-overlay.open .mobile-nav__link:nth-child(3) {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}
.navbar__mobile-overlay.open .mobile-nav__link:nth-child(4) {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.25s forwards;
}
.navbar__mobile-overlay.open .mobile-nav__link:nth-child(5) {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}
.navbar__mobile-overlay.open .mobile-nav__link:nth-child(6) {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.35s forwards;
}
.navbar__mobile-overlay.open .mobile-nav__link:nth-child(7) {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}
.navbar__mobile-overlay.open .mobile-nav__link:nth-child(8) {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.45s forwards;
}
.navbar__mobile-overlay.open .mobile-nav__link:nth-child(9) {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}
.navbar__mobile-overlay.open .mobile-nav__link:nth-child(10) {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.55s forwards;
}
.navbar__mobile-overlay.open .mobile-nav__link:nth-child(11) {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}
.navbar__mobile-overlay.open .mobile-nav__link:nth-child(12) {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.65s forwards;
}
.navbar__mobile-overlay.open .mobile-nav__link:nth-child(13) {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}
.navbar__mobile-overlay.open .mobile-nav__link:nth-child(14) {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.75s forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 16px 28px;
    background: var(--gold);
    color: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 40px;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    text-align: center;
}

.navbar__mobile-overlay.open .mobile-nav__cta {
    animation: mobileNavReveal 0.4s var(--ease-out) 0.8s forwards;
}

.mobile-nav__contact {
    margin-top: auto;
    opacity: 0;
    transform: translateY(12px);
    text-align: right;
}

.navbar__mobile-overlay.open .mobile-nav__contact {
    animation: mobileNavReveal 0.4s var(--ease-out) 0.9s forwards;
}

.mobile-nav__contact p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(255,255,255,.35);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mobile-nav__contact a {
    display: block;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255,255,255,.65);
    margin-bottom: 6px;
    transition: color 0.2s ease;
}

.mobile-nav__contact a:hover { color: var(--white); }

@keyframes mobileNavReveal {
    to { opacity: 1; transform: translateY(0); }
}

/* ── Admission Popup ──────────────────────────────────────── */
#admission-popup {
    position: fixed;
    inset: 0;
    z-index: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background: rgba(7,21,34,0.68);
}

#admission-popup.open {
    opacity: 1;
    visibility: visible;
}

.popup__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 840px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 30px 80px rgba(7,21,34,.35);
    transform: scale(0.96) translateY(20px);
    transition: transform 0.4s var(--ease-out);
    max-height: 90vh;
}

#admission-popup.open .popup__card {
    transform: scale(1) translateY(0);
}

.popup__content {
    padding: clamp(32px, 4vw, 52px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.popup__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(197,161,90,.1);
    border: 1px solid rgba(197,161,90,.25);
    border-radius: 50px;
    padding: 5px 12px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    width: fit-content;
}

.popup__badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.popup__title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 8px;
}

.popup__year {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--navy-2);
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}

.popup__school {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.popup__streams {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}

.popup__stream {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.popup__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup__btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.25s ease;
}

.popup__btn-primary:hover { background: var(--navy-2); }

.popup__btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.popup__btn-secondary:hover {
    border-color: var(--navy);
    background: var(--off-white);
}

.popup__image {
    position: relative;
    overflow: hidden;
}

.popup__image-bg {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, rgba(197,161,90,.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup__image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 380px;
    background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy-deep) 100%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
}

.popup__image-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,.6);
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.popup__image-text span {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1rem;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.popup__close:hover {
    background: var(--white);
    transform: rotate(90deg);
}

/* ── Hero Section ─────────────────────────────────────────── */
#hero {
    position: relative;
    min-height: min(860px, 88vh);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #0A2833;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: transparent;
    z-index: 3;
    pointer-events: none;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: transparent;
    overflow: hidden;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(10,40,51,.72) 0%, 
        rgba(10,40,51,.58) 50%, 
        rgba(10,40,51,.42) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
    opacity: 0.85;
    filter: saturate(.95) contrast(1.05);
    transform: scale(1.0);
    transition: opacity 0.5s ease;
}

.hero__content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 190px clamp(20px, 4vw, 60px) 0;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@keyframes heroFadeInOut {
    0% { opacity: 0.85; }
    25% { opacity: 0.85; }
    33% { opacity: 0; }
    58% { opacity: 0; }
    66% { opacity: 0.85; }
    100% { opacity: 0.85; }
}

.hero__left {
    grid-column: 1;
}

.hero__right {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero__floating-card {
    position: static;
    margin-top: 20px;
}

.hero__micro-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(12px);
}

.hero__micro-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero__headline {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,.25);
    margin-bottom: 28px;
    max-width: 780px;
    text-wrap: balance;
}

.hero__headline-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
}

.hero__body {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    line-height: 1.75;
    color: rgba(247,248,245,.72);
    max-width: 480px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
}

.hero__ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    margin-bottom: 64px;
}

.hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    opacity: 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.hero__scroll:hover { color: rgba(255,255,255,.75); }

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.25);
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollLine 1.8s ease infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* Floating Hero Card */
.hero__floating-card {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(217,231,234,.95);
    border-top: 2px solid var(--gold);
    border-radius: 14px;
    padding: 28px;
    max-width: 280px;
    box-shadow: 0 20px 50px rgba(10,40,51,.15);
    opacity: 0;
    transform: translateY(16px);
    transition: transform 0.3s ease;
}

.hero__floating-card:hover {
    transform: translateY(12px);
}

.hero__floating-card-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.hero__floating-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.hero__floating-card p {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
}

/* ── Trust / Stats Band ───────────────────────────────────── */
#trust {
    background: var(--white);
    padding: 0 0 clamp(28px, 3.5vw, 45px) 0;
    border-bottom: 1px solid var(--border);
    margin: 0;
}

.trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.trust__item {
    padding: 12px 20px;
    border-right: 1px solid var(--border);
    text-align: center;
}

.trust__item:last-child { border-right: none; }

.trust__number {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
    display: block;
}

.trust__number-gold { color: var(--gold); }

.trust__label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ── About Section ────────────────────────────────────────── */
#about {
    background: var(--off-white);
    padding: clamp(35px, 4vw, 55px) 0;
    overflow: hidden;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}

.about__image-col {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
}

.about__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 4px solid var(--off-white);
    background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy-deep) 100%);
    box-shadow: var(--shadow-md);
}

.about__image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__content-col {
    padding-right: 20px;
}

.about__gold-rule {
    width: 2px;
    height: 48px;
    background: var(--gold);
    margin-bottom: 28px;
}

.about__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 22px;
}

.about__body {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.about__sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.about__sub-item {
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.about__sub-icon {
    width: 36px;
    height: 36px;
    background: rgba(197,161,90,.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--gold);
}

.about__sub-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.about__sub-body {
    font-family: var(--font-body);
    font-size: 0.82rem;
    line-height: 1.65;
    color: var(--text-muted);
}

/* ── Institutions Section ─────────────────────────────────── */
#institutions {
    background: var(--white);
    padding: clamp(35px, 4vw, 55px) 0;
}

.institutions__header {
    text-align: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.institutions__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    white-space: nowrap;
}

.institutions__sub {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    color: var(--text-muted);
    line-height: 1.7;
}

.institutions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.institution-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
    cursor: pointer;
    background: var(--white);
}

.institution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(11,31,51,.12);
}

.institution-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.institution-card__image img,
.institution-card__image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.institution-card__image-bg {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.institution-card:hover .institution-card__image img { transform: scale(1.04); }

.institution-card__num {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--white);
    background: rgba(7,21,34,.5);
    backdrop-filter: blur(6px);
    padding: 5px 10px;
    border-radius: 50px;
}

.institution-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,21,34,.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.institution-card:hover .institution-card__overlay { opacity: 1; }

.institution-card__gold-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--gold);
    transition: width 0.4s var(--ease-out);
}

.institution-card:hover .institution-card__gold-line { width: 100%; }

.institution-card__body {
    padding: 24px;
}

.institution-card__location {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.institution-card__location::before {
    content: '';
    width: 12px;
    height: 1px;
    background: var(--gold);
}

.institution-card__name {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.015em;
    line-height: 1.25;
    margin-bottom: 12px;
}

.institution-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 16px;
}

.institution-card__tag {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    padding: 3px 9px;
    background: var(--bg-light);
    border-radius: 50px;
    color: var(--text-muted);
}

.institution-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    transition: gap 0.2s ease, color 0.2s ease;
}

.institution-card__cta:hover {
    gap: 10px;
    color: var(--gold);
}

/* ── Academics Section ────────────────────────────────────── */
#academics {
    background: var(--bg-light);
    padding: clamp(35px, 4vw, 55px) 0;
    overflow: hidden;
}

.academics__header {
    margin-bottom: 60px;
    text-align: center;
}

.academics__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
}

.academics__sub {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    color: rgba(247,248,245,.55);
    line-height: 1.7;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.academics__timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin-top: 20px;
}

.academics__timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    height: 1px;
    background: rgba(197,161,90,.2);
}

.academic-stage {
    padding: 0 16px 0 0;
    position: relative;
}

.academic-stage__dot {
    width: 12px;
    height: 12px;
    background: rgba(197,161,90,.3);
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
    transition: background 0.3s ease;
}

.academic-stage:hover .academic-stage__dot {
    background: var(--gold);
}

.academic-stage__num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: rgba(255,255,255,.05);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.academic-stage:hover .academic-stage__num { color: rgba(197,161,90,.15); }

.academic-stage__level {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.academic-stage__title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.academic-stage__body {
    font-family: var(--font-body);
    font-size: 0.78rem;
    line-height: 1.65;
    color: rgba(247,248,245,.45);
}

/* ── Values Section ───────────────────────────────────────── */
#values {
    background: var(--navy);
    padding: var(--section-v) 0;
}

.values__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.values__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.value-card {
    padding: 36px 28px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius-sm);
    transition: background 0.35s ease, border-color 0.35s ease;
    cursor: default;
}

.value-card:hover {
    background: rgba(255,255,255,.06);
    border-color: rgba(197,161,90,.2);
}

.value-card__num {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(197,161,90,.5);
    margin-bottom: 20px;
}

.value-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
    color: var(--gold);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.value-card:hover .value-card__icon { opacity: 1; }

.value-card__gold-line {
    width: 0;
    height: 1.5px;
    background: var(--gold);
    margin-bottom: 18px;
    transition: width 0.4s var(--ease-out);
}

.value-card:hover .value-card__gold-line { width: 32px; }

.value-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    line-height: 1.25;
}

.value-card__body {
    font-family: var(--font-body);
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgba(247,248,245,.45);
    transition: color 0.3s ease;
}

.value-card:hover .value-card__body { color: rgba(247,248,245,.65); }

/* ── Facilities Section ───────────────────────────────────── */
#facilities {
    background: var(--white);
    padding: clamp(35px, 4vw, 55px) 0;
    overflow: hidden;
}

.facilities__header {
    margin-bottom: 52px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.facilities__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.025em;
    line-height: 1.4;
    margin-bottom: 12px;
}

.facilities__sub {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.facilities__tabs {
    display: flex;
    gap: 2px;
    margin-bottom: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 4px;
    width: fit-content;
}

.facilities__tab {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 6px;
    color: var(--text-muted);
    transition: all 0.25s ease;
    cursor: pointer;
}

.facilities__tab.active {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-sm);
}

.facilities__panel { display: none; }
.facilities__panel.active { display: block; }

.facilities__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
}

.facility-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--bg-light);
}

.facility-item:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 2; }
.facility-item:nth-child(2) { grid-column: 2 / 4; grid-row: 1 / 2; aspect-ratio: 2/1; }
.facility-item:nth-child(3) { grid-column: 1 / 3; grid-row: 2 / 3; aspect-ratio: 2/1; }
.facility-item:nth-child(4) { grid-column: 3 / 4; grid-row: 2 / 3; }

.facility-item__bg {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.facility-item:hover .facility-item__bg { transform: scale(1.04); }

.facility-item__placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
    position: relative;
}

.facility-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,21,34,.75) 0%, rgba(7,21,34,.1) 60%);
    transition: background 0.35s ease;
}

.facility-item:hover .facility-item__overlay {
    background: linear-gradient(to top, rgba(7,21,34,.88) 0%, rgba(7,21,34,.2) 60%);
}

.facility-item__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
    transform: translateY(8px);
    transition: transform 0.35s var(--ease-out);
}

.facility-item:hover .facility-item__info { transform: translateY(0); }

.facility-item__title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.facility-item__desc {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(247,248,245,.65);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
    line-height: 1.5;
}

.facility-item:hover .facility-item__desc {
    opacity: 1;
    transform: translateY(0);
}

.facility-item__icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--navy-2), var(--navy));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    opacity: 0.7;
}

/* ── Faculty Section ──────────────────────────────────────── */
#faculty {
    background: var(--off-white);
    padding: var(--section-v) 0;
}

.faculty__header {
    margin-bottom: 52px;
}

.faculty__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 12px;
}

.faculty__institutions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.faculty__institution-group {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
}

.faculty__inst-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--navy-deep);
}

.faculty__inst-num {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 4px;
}

.faculty__inst-location {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 4px;
}

.faculty__inst-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.faculty__dept-list {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faculty__dept-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faculty__dept-icon {
    width: 34px;
    height: 34px;
    background: rgba(197,161,90,.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.faculty__dept-name {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
}

.faculty__dept-note {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 400;
}

.faculty__notice {
    margin-top: 20px;
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
}

/* ── Chairman Section ─────────────────────────────────────── */
#chairman {
    background: var(--white);
    padding: clamp(35px, 4vw, 55px) 0;
}

.chairman__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}

.chairman__portrait {
    position: relative;
}

.chairman__portrait-wrap {
    aspect-ratio: 3/4;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, rgba(197,161,90,.2) 100%);
    display: flex;
    align-items: flex-end;
}

.chairman__portrait-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chairman__portrait-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255,255,255,.2);
    padding: 40px;
}

.chairman__portrait-placeholder svg {
    width: 80px;
    height: 80px;
}

.chairman__portrait-placeholder span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    text-align: center;
}

.chairman__portrait-label {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(7,21,34,.9) 0%, transparent 100%);
}

.chairman__portrait-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.chairman__portrait-role {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.chairman__content {
    position: relative;
}

.chairman__quote-mark {
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 0.5;
    color: rgba(197,161,90,.2);
    font-weight: 800;
    margin-bottom: 24px;
    display: block;
}

.chairman__quote {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.55;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.chairman__signature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.chairman__signature-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.chairman__signature-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

/* ── Scholarships Section ─────────────────────────────────── */
#scholarships {
    background: var(--off-white);
    padding: clamp(35px, 4vw, 55px) 0;
}

.scholarships__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.scholarships__content {
    position: relative;
}

.scholarships__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.scholarships__body {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

.scholarships__disclaimer {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.scholarships__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.scholarship-card {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.scholarship-card:hover {
    border-color: rgba(197,161,90,.3);
    box-shadow: var(--shadow-sm);
}

.scholarship-card__icon {
    width: 44px;
    height: 44px;
    background: rgba(197,161,90,.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.scholarship-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.scholarship-card__body {
    font-family: var(--font-body);
    font-size: 0.82rem;
    line-height: 1.65;
    color: var(--text-muted);
}

/* ── Results Section ──────────────────────────────────────── */
#results {
    background: var(--navy-deep);
    padding: var(--section-v) 0;
    overflow: hidden;
}

.results__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.results__content {
    position: relative;
}

.results__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.results__body {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    color: rgba(247,248,245,.5);
    line-height: 1.75;
    margin-bottom: 32px;
}

.results__figures {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.result-figure {
    padding: 28px 32px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.03);
    position: relative;
    overflow: hidden;
}

.result-figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--gold);
}

.result-figure__label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.result-figure__number {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 6px;
}

.result-figure__suffix {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: var(--gold);
}

.result-figure__detail {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: rgba(247,248,245,.45);
}

.result-figure__meta {
    margin-top: 8px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(247,248,245,.65);
}

.result-figure__meta span {
    color: rgba(197,161,90,.8);
}

/* ── Gallery Section ──────────────────────────────────────── */
#gallery {
    background: var(--off-white);
    padding: clamp(25px, 3vw, 45px) 0;
}

.gallery__header {
    margin-bottom: 48px;
}

.gallery__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 12px;
}

.gallery__sub {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 260px 200px;
    gap: 10px;
}

.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
.gallery-item:nth-child(2) { grid-column: 3 / 4; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 4 / 5; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 1 / 2; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 2 / 4; grid-row: 2; }
.gallery-item:nth-child(6) { grid-column: 4 / 5; grid-row: 2; }

.gallery-item img,
.gallery-item__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.gallery-item__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,.5);
}

.gallery-item:hover img,
.gallery-item:hover .gallery-item__placeholder { transform: scale(1.05); }

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(7,21,34,.0);
    transition: background 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-item__overlay {
    background: rgba(7,21,34,.4);
}

.gallery-item__icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-item__icon {
    opacity: 1;
    transform: scale(1);
}

.gallery-item__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(7,21,34,.8) 0%, transparent 100%);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--white);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-item__caption {
    opacity: 1;
    transform: translateY(0);
}

/* ── Lightbox ─────────────────────────────────────────────── */
#lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(7,21,34,.94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

#lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox__img-wrap {
    max-width: 900px;
    max-height: 80vh;
    width: 100%;
    transform: scale(0.96);
    transition: transform 0.35s var(--ease-out);
}

#lightbox.open .lightbox__img-wrap { transform: scale(1); }

.lightbox__img-wrap img {
    width: 100%;
    height: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.lightbox__img-placeholder {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.4);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
}

.lightbox__caption {
    margin-top: 16px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(247,248,245,.6);
}

.lightbox__close {
    position: fixed;
    top: 24px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.lightbox__close:hover {
    background: rgba(255,255,255,.2);
    transform: rotate(90deg);
}

.lightbox__prev,
.lightbox__next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background 0.2s ease;
    z-index: 10;
}

.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,.18); }

/* ── Admission CTA Section ────────────────────────────────── */
#admission-cta {
    background: linear-gradient(135deg, #0A3D52 0%, #075463 50%, #0A2833 100%);
    padding: clamp(30px, 2.5vw, 40px) 0;
    position: relative;
    overflow: hidden;
}

#admission-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(65,119,204,0.2) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

#admission-cta::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197,161,90,0.12) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.admission-cta__bg-accent {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197,161,90,.1) 0%, transparent 70%);
    pointer-events: none;
}

.admission-cta__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 60px);
    align-items: center;
    position: relative;
    z-index: 2;
}

.admission-cta__content {
    position: relative;
}

.admission-cta__heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 28px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.3);
    max-width: 600px;
}

.admission-cta__body {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 1.3vw, 1.15rem);
    color: rgba(247,248,245,0.8);
    line-height: 1.85;
    margin-bottom: 48px;
    max-width: 550px;
}

.admission-cta__buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.admission-cta__buttons .btn {
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 600;
}

.admission-cta__contact {
    padding: 48px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.04) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 48px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,.1);
    border-top: 1px solid rgba(255,255,255,.3);
    position: relative;
}

.admission-cta__contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.3) 50%, transparent 100%);
}

.admission-cta__contact-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admission-cta__contact-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.admission-cta__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.admission-cta__contact-item:last-child { margin-bottom: 0; }

.admission-cta__contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(65,119,204,0.15);
    border: 1px solid rgba(65,119,204,0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.admission-cta__contact-detail {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(247,248,245,.85);
    font-weight: 500;
    line-height: 1.5;
}

.admission-cta__contact-detail a {
    color: var(--gold);
    transition: color 0.25s ease;
}

.admission-cta__contact-detail a:hover {
    color: var(--white);
}

/* ── Contact Section ──────────────────────────────────────── */
#contact {
    background: var(--white);
    padding: var(--section-v) 0;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
}

.contact__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 8px;
}

.contact__sub {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact__info-item {
    display: flex;
    gap: 14px;
}

.contact__info-icon {
    width: 40px;
    height: 40px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
}

.contact__info-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.contact__info-value {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.contact__info-value a {
    color: var(--navy);
    transition: color 0.2s ease;
}

.contact__info-value a:hover { color: var(--gold); }

/* Map */
.contact__map {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 280px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact__map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.85rem;
}

/* Contact Form */
.contact__form {
    position: relative;
}

.form__group {
    margin-bottom: 16px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form__label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 7px;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-dark);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form__input::placeholder,
.form__textarea::placeholder { color: rgba(107,118,128,.5); }

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--navy);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(11,31,51,.07);
}

.form__input.error,
.form__select.error,
.form__textarea.error {
    border-color: #d9534f;
}

.form__error {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: #d9534f;
    margin-top: 5px;
    display: none;
}

.form__error.visible { display: block; }

.form__textarea { resize: vertical; min-height: 110px; }

.form__select-wrap { position: relative; }

.form__select-wrap::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--text-muted);
    pointer-events: none;
}

.form__submit {
    width: 100%;
    padding: 15px 28px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.form__submit:hover {
    background: var(--navy-2);
    transform: translateY(-1px);
}

/* Success State */
.form__success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 16px;
}

.form__success.visible { display: flex; }

.form__success-icon {
    width: 64px;
    height: 64px;
    background: rgba(197,161,90,.1);
    border: 1px solid rgba(197,161,90,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.form__success-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.form__success-body {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Footer ───────────────────────────────────────────────── */
#footer {
    background: var(--navy-deep);
    padding: clamp(60px, 7vw, 90px) 0 0;
    border-top: 1px solid rgba(255,255,255,.06);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: clamp(48px, 6vw, 72px);
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer__brand {
    position: relative;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer__logo-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.footer__logo-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}

.footer__logo-tagline {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    color: rgba(197,161,90,.7);
    margin-top: 2px;
}

.footer__brand-body {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: rgba(247,248,245,.35);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 260px;
}

.footer__social {
    display: flex;
    gap: 8px;
}

.footer__social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(247,248,245,.5);
    font-size: 0.85rem;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer__social-link:hover {
    background: rgba(197,161,90,.15);
    border-color: rgba(197,161,90,.3);
    color: var(--gold);
}

.footer__col-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(247,248,245,.5);
    margin-bottom: 20px;
}

.footer__col-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col-link {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: rgba(247,248,245,.45);
    transition: color 0.2s ease, padding-left 0.2s ease;
    line-height: 1.4;
}

.footer__col-link:hover {
    color: rgba(247,248,245,.9);
    padding-left: 4px;
}

.footer__contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.footer__contact-item:last-child { margin-bottom: 0; }

.footer__contact-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
}

.footer__contact-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(247,248,245,.45);
    line-height: 1.5;
    transition: color 0.2s ease;
}

.footer__contact-text a {
    color: inherit;
    transition: color 0.2s ease;
}

.footer__contact-text a:hover { color: rgba(247,248,245,.85); }

.footer__bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom-copy {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(247,248,245,.3);
}

.footer__bottom-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(197,161,90,.5);
    font-style: italic;
}

/* ── Back to Top ──────────────────────────────────────────── */
#back-to-top {
    position: fixed;
    bottom: 32px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--navy);
    border: 1px solid rgba(197,161,90,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 200;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
    box-shadow: 0 4px 16px rgba(11,31,51,.2);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

#back-to-top:hover {
    background: var(--navy-2);
    transform: scale(1) translateY(-2px);
}

/* ── Theme 02 visual refinement ──────────────────────────── */
.section-label,
.hero__micro-label,
.institution-card__location,
.academic-stage__level,
.announcement-bar__cta,
.popup__badge,
.popup__image-text span,
.result-figure__label,
.admission-cta__contact-label {
    color: var(--gold);
}

.section-label::before,
.hero__micro-label::before,
.institution-card__location::before {
    background: var(--gold);
}

.section-label--light { color: rgba(197,161,90,.75); }
.section-label--light::before { background: rgba(197,161,90,.75); }

.btn--primary,
.btn--gold,
.navbar__cta,
.mobile-nav__cta,
.popup__btn-primary,
.form__submit {
    background: var(--gold);
    border-color: var(--gold);
}

.btn--primary:hover,
.btn--gold:hover,
.navbar__cta:hover,
.mobile-nav__cta:hover,
.popup__btn-primary:hover,
.form__submit:hover {
    background: var(--navy-2);
    border-color: var(--navy-2);
}

.btn--outline-navy {
    color: var(--navy);
    border-color: var(--border);
}

.btn--outline-navy:hover {
    background: var(--navy);
    border-color: var(--navy);
}

#scroll-progress,
.preloader-bar,
.institution-card__gold-line,
.about__gold-rule,
.academic-stage:hover .academic-stage__dot,
.chairman__signature-line {
    background: var(--gold);
}

#announcement-bar,
#footer,
#results,
#admission-cta,
.navbar__mobile-overlay {
    background: var(--navy-deep);
}

#navbar.nav-scrolled {
    background: rgba(255,255,255,.94);
    box-shadow: 0 1px 20px rgba(10,40,51,.06);
}

.navbar__logo-icon,
.footer__logo-icon {
    background: var(--gold);
}

.navbar__logo-tagline,
#navbar.nav-scrolled .navbar__logo-tagline,
.footer__logo-tagline,
.footer__bottom-tagline {
    color: var(--gold);
}

.navbar__link::after { background: var(--gold); }
.navbar__link:hover,
.navbar__link.active { color: var(--white); }
#navbar.nav-scrolled .navbar__link:hover,
#navbar.nav-scrolled .navbar__link.active { color: var(--navy); }

.hero__floating-card {
    background: rgba(255,255,255,.96);
    border-color: var(--border);
    box-shadow: 0 8px 30px rgba(10,40,51,.12);
}

.hero__floating-card-label { color: var(--gold); }
.hero__floating-card h3 { color: var(--navy); }
.hero__floating-card p { color: var(--text-muted); }

.trust__number,
.about__heading,
.institutions__heading,
.facilities__heading,
.faculty__heading,
.chairman__quote,
.scholarships__heading,
.contact__heading,
.institution-card__name,
.institution-card__cta,
.popup__title,
.popup__year,
.popup__btn-secondary,
.form__success-title {
    color: var(--navy);
}

.trust__number-gold { color: var(--gold); }

#about,
#faculty,
#scholarships {
    background: var(--off-white);
}

.about__sub-icon,
.faculty__dept-icon,
.scholarship-card__icon,
.form__success-icon {
    background: var(--bg-light);
    color: var(--gold);
}

.institution-card:hover,
.scholarship-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(10,40,51,.06);
}

.institution-card__tag,
.popup__stream { background: var(--bg-light); }
.institution-card__cta:hover { color: var(--gold); }

#academics {
    background: var(--bg-light);
}

.academics__heading,
.academic-stage__title { color: var(--navy); }
.academics__sub,
.academic-stage__body { color: var(--text-muted); }
.academics__timeline::before { background: var(--gold); opacity: .3; }
.academic-stage__dot { background: var(--navy-2); border-color: var(--gold); }
.academic-stage__num { color: rgba(7,84,99,.12); }
.academic-stage:hover .academic-stage__num { color: rgba(12,159,178,.25); }

#values { background: var(--navy); }
.value-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.value-card:hover { background: rgba(255,255,255,.11); border-color: rgba(210,168,75,.55); }
.value-card__body { color: rgba(255,255,255,.68); }
.value-card__icon { color: var(--navy-2); }

.facility-item__overlay {
    background: linear-gradient(to top, rgba(7,84,99,.72) 0%, rgba(7,84,99,.08) 60%);
}
.facility-item:hover .facility-item__overlay {
    background: linear-gradient(to top, rgba(7,84,99,.78) 0%, rgba(7,84,99,.18) 60%);
}
.facility-item__icon-bg { background: var(--navy); }

.faculty__inst-header { background: var(--navy); }
.faculty__inst-num,
.faculty__dept-icon { color: var(--gold); }

.results__body,
.admission-cta__body { color: rgba(220,236,239,.78); }
.result-figure { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.04); }
.result-figure__suffix { color: var(--gold); }

#gallery { background: var(--off-white); }
.gallery-item:hover .gallery-item__overlay { background: rgba(7,84,99,.72); }
#lightbox { background: rgba(7,31,40,.94); }

.admission-cta__bg-accent { background: radial-gradient(circle, rgba(12,159,178,.12) 0%, transparent 70%); }
.admission-cta__contact { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.08); }
.admission-cta__contact-icon { background: rgba(12,159,178,.16); color: var(--navy-2); }

.contact__info-icon { color: var(--gold); }
.form__input,
.form__select,
.form__textarea { background: var(--white); }
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(12,159,178,.10);
}

.popup__badge { background: var(--bg-light); border-color: var(--navy-2); }
.popup__badge::before { background: var(--gold); }
.popup__image-placeholder { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); }
.popup__close { color: var(--navy); }

#back-to-top { background: var(--color-deep-teal); border-color: rgba(12,159,178,.4); }
#back-to-top:hover { background: var(--color-primary-dark); }

/* ── Navbar ───────────────────────────────────────────────── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    transition: all 0.35s var(--ease-out);
    padding: 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(217, 231, 234, 0.3);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px clamp(20px, 4vw, 60px);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    transition: all 0.35s var(--ease-out);
}

/* Transparent state (over hero) */
#navbar.nav-transparent .navbar__inner {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
}

/* Scrolled state */
#navbar.nav-scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(217, 231, 234, 0.4);
    box-shadow: 0 1px 6px rgba(10, 40, 51, 0.04);
}

#navbar.nav-scrolled .navbar__inner {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 14px clamp(20px, 4vw, 60px);
}

#hero {
    position: relative;
    min-height: min(700px, 78vh);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #0A2833;
}

.hero__content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 190px clamp(20px, 4vw, 60px) 0;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


/* ============================================================
   ABOUT PAGE STYLES (Enhanced Full-Width Premium Design)
   ============================================================ */

/* ── About Simple Hero (White background, centered) ─────────── */
.about-simple-hero {
    background: var(--white);
    padding: clamp(80px, 12vw, 160px) 0;
    position: relative;
    overflow: hidden;
    min-height: clamp(700px, 90vh, 950px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.95;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(10,40,51,0.65) 0%,
        rgba(10,40,51,0.55) 50%,
        rgba(10,40,51,0.65) 100%
    );
    z-index: 1;
}

.about-simple-hero .container {
    position: relative;
    z-index: 2;
}

.about-simple-hero__content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.about-simple-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    display: inline-block;
    background: rgba(10,40,51,0.6);
    padding: 10px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
}

.about-simple-heading {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--white);
    margin-bottom: 32px;
    text-shadow: 0 4px 24px rgba(10,40,51,0.4);
}

.about-heading-line {
    display: block;
}

.about-simple-intro {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 1.4vw, 1.25rem);
    line-height: 1.8;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    background: rgba(10,40,51,0.55);
    padding: 28px 40px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
}

/* ── Enhanced Container (Full-width approach) ──────────────── */
.about-enhanced-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}

/* ── Enhanced Section Base ────────────────────────────────– */
.about-enhanced-section {
    background: var(--off-white);
    padding: clamp(25px, 3vw, 45px) 0;
}

.about-enhanced-content {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.about-enhanced-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.about-enhanced-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin-bottom: 20px;
    max-width: 100%;
}

.about-enhanced-text {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.85;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* ── Stats Grid ───────────────────────────────────────────── */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.about-stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: clamp(32px, 3vw, 40px);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(10,40,51,.08);
    border-color: rgba(65,119,204,.3);
}

.about-stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--gold);
    margin-bottom: 12px;
}

.about-stat-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.about-stat-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/* ── Purpose Section ──────────────────────────────────────── */
.about-purpose-section {
    background: var(--white);
    padding: clamp(25px, 3vw, 45px) 0;
}

.about-purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.about-purpose-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: clamp(36px, 4vw, 48px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-purpose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(10,40,51,.1);
    border-color: rgba(65,119,204,.3);
}

.about-purpose-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 24px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.about-purpose-card:hover .about-purpose-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.about-purpose-title {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 1.6vw, 1.5rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 12px;
}

.about-purpose-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 16px;
    transition: width 0.4s ease;
}

.about-purpose-card:hover .about-purpose-line {
    width: 60px;
}

.about-purpose-text {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.05vw, 1rem);
    line-height: 1.7;
    color: var(--text-muted);
}

/* ── Institutions Section ─────────────────────────────────── */
.about-institutions-section {
    background: var(--off-white);
    padding: clamp(25px, 3vw, 45px) 0;
}

.about-institutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.about-institution-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-institution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(10,40,51,.12);
    border-color: rgba(65,119,204,.4);
}

.about-institution-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--gold);
    background: rgba(65,119,204,.1);
    border: 1px solid rgba(65,119,204,.25);
    padding: 6px 14px;
    border-radius: 50px;
    z-index: 2;
}

.about-institution-content {
    padding: clamp(32px, 3.5vw, 44px);
}

.about-institution-name {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 1.5vw, 1.4rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 4px;
    padding-right: 60px;
}

.about-institution-location {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-institution-desc {
    font-family: var(--font-body);
    font-size: clamp(0.88rem, 1vw, 0.95rem);
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-institution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.about-institution-tag {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.about-institution-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    transition: gap 0.25s ease, color 0.25s ease;
}

.about-institution-link svg {
    transition: transform 0.25s ease;
}

.about-institution-link:hover {
    gap: 10px;
    color: var(--navy);
}

.about-institution-link:hover svg {
    transform: translateX(2px);
}

.about-institution-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--gold);
    transition: width 0.5s ease;
}

.about-institution-card:hover .about-institution-accent {
    width: 100%;
}

/* ── Foundation Section ───────────────────────────────────── */
.about-foundation-section {
    background: var(--white);
    padding: clamp(25px, 3vw, 45px) 0;
}

.about-foundation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 5vw, 80px);
    align-items: center;
}

.about-foundation-text {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.15vw, 1.1rem);
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.about-foundation-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.about-foundation-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
}

.about-foundation-feature svg {
    color: var(--gold);
    flex-shrink: 0;
}

.about-foundation-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.about-foundation-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-foundation-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(65,119,204,0.15) 0%, rgba(197,161,90,0.08) 100%);
    border: 1px solid rgba(65,119,204,0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-foundation-feature:hover .about-foundation-feature-icon {
    background: linear-gradient(135deg, rgba(65,119,204,0.25) 0%, rgba(197,161,90,0.12) 100%);
    border-color: rgba(65,119,204,0.3);
}

.about-foundation-feature-content h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.3;
}

.about-foundation-feature-content p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.about-foundation-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-foundation-card {
    width: 100%;
    max-width: 380px;
    background: linear-gradient(135deg, var(--off-white) 0%, rgba(234,248,250,0.5) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(10,40,51,0.08);
    transition: all 0.35s ease;
}

.about-foundation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(10,40,51,0.12);
    border-color: rgba(65,119,204,0.3);
}

.about-foundation-card-accent {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(65,119,204,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-foundation-card-content {
    position: relative;
    z-index: 1;
}

.about-foundation-card-content svg {
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0.9;
}

.about-foundation-card-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 1.6vw, 1.5rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.about-foundation-card-content p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Simple CTA ───────────────────────────────────────────── */
.about-simple-cta {
    background: var(--off-white);
    padding: clamp(25px, 3vw, 45px) 0;
}

.about-simple-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-simple-cta-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--navy);
    margin-bottom: 20px;
}

.about-simple-cta-text {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.about-simple-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-institutions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-foundation-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .about-simple-hero {
        padding: 120px 0 70px;
    }

    .about-enhanced-section,
    .about-purpose-section,
    .about-institutions-section,
    .about-foundation-section {
        padding: 70px 0;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-purpose-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-simple-cta {
        padding: 70px 0;
    }

    .about-simple-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .about-simple-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}


/* ── NEWS PREVIEW SECTION ─────────────────────────────────── */
#news-preview {
    background: var(--off-white);
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.news-preview__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
}

.news-preview__badge-title {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.news-preview__badge {
    background: var(--navy-deep);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-block;
}

.news-preview__divider {
    width: 1px;
    height: 20px;
    background: var(--border);
}

.news-preview__ticker {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    overflow: hidden;
    position: relative;
}

.news-preview__ticker::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(90deg, var(--off-white) 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.news-preview__ticker::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(270deg, var(--off-white) 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.news-preview__scroll-track {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: slideNews 40s linear infinite;
}

@keyframes slideNews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.news-preview__item {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.news-preview__separator {
    width: 3px;
    height: 3px;
    background: var(--text-muted);
    border-radius: 50%;
    flex-shrink: 0;
}

.news-preview__cta {
    background: transparent;
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
    border: 1px solid var(--navy);
    border-radius: 3px;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.news-preview__cta:hover {
    background: var(--navy);
    color: var(--white);
}

@media (max-width: 768px) {
    #news-preview {
        padding: 4px 0;
    }

    .news-preview__inner {
        gap: 6px;
        flex-wrap: nowrap;
    }

    .news-preview__badge {
        padding: 3px 8px;
        font-size: 0.65rem;
        line-height: 1;
    }

    .news-preview__divider {
        height: 14px;
    }

    .news-preview__ticker {
        gap: 10px;
        flex: 1;
    }

    .news-preview__item {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    .news-preview__separator {
        width: 2px;
        height: 2px;
    }

    .news-preview__cta {
        padding: 3px 8px;
        font-size: 0.6rem;
        line-height: 1;
    }
}
