/* =========================================================
   WESTFIELD USG — Main Stylesheet (Redesign 2026)
   ========================================================= */

/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
    --navy:         #1a0808;
    --navy-mid:     #6b0f0f;
    --navy-light:   #9b2626;
    --teal:         #9b1c1c;
    --teal-dark:    #7f1414;
    --teal-light:   #fee2e2;
    --gold:         #c9a227;
    --gold-dark:    #a07d1a;
    --gold-light:   #fef3c7;
    --white:        #ffffff;
    --off-white:    #f8fafc;
    --text:         #1e293b;
    --text-muted:   #64748b;
    --border:       rgba(255,255,255,0.10);
    --border-light: rgba(155,28,28,0.20);
    --border-gold:  rgba(201,162,39,0.25);

    --gradient-hero:   linear-gradient(135deg, #1a0808 0%, #6b0f0f 50%, #1a0808 100%);
    --gradient-accent: linear-gradient(135deg, #9b1c1c 0%, #7f1414 100%);
    --gradient-gold:   linear-gradient(135deg, #c9a227 0%, #a07d1a 100%);
    --gradient-navy:   linear-gradient(135deg, #1a0808 0%, #6b0f0f 100%);
    --gradient-glass:  linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);

    --font-display: 'DM Serif Display', serif;
    --font-heading: 'Playfair Display', serif;
    --font-body:    'Plus Jakarta Sans', sans-serif;

    --container-max: 1240px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s; }
ul, ol { list-style: none; }
button { border: none; cursor: pointer; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 16px; }

/* ── CONTAINER ───────────────────────────────────────────── */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

/* ── SECTION UTILITIES ───────────────────────────────────── */
.section-padding { padding: 96px 0; }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    border-color: transparent;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(155,28,28,0.35);
    color: var(--white);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}
.btn-gold {
    background: var(--gradient-gold);
    color: var(--white);
    border-color: transparent;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,168,83,0.35);
    color: var(--white);
}
.btn-ghost-teal {
    background: transparent;
    color: var(--teal-light);
    border-color: var(--border-light);
}
.btn-ghost-teal:hover {
    background: rgba(155,28,28,0.15);
    color: var(--teal-light);
}
.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    border-color: transparent;
}
.btn-whatsapp:hover {
    opacity: 0.9;
    color: var(--white);
    transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ── SECTION HEADER UTILITY ──────────────────────────────── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: currentColor;
}
.section-eyebrow--light { color: var(--teal-light); }
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.2;
}
.section-title--light { color: var(--white); }
.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.section-subtitle--light { color: rgba(255,255,255,0.6); }

/* ── PRELOADER ───────────────────────────────────────────── */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 32px;
}
.preloader__logo span { color: var(--teal-light); }
.preloader__bar-track {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}
.preloader__bar {
    height: 100%;
    background: var(--gradient-accent);
    animation: preload-bar 1.4s ease forwards;
    width: 0;
}
@keyframes preload-bar { to { width: 100%; } }

/* ── NOTICE BAR ──────────────────────────────────────────── */
.notice-bar {
    background: var(--teal);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
    overflow: hidden;
}
.notice-bar__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}
.notice-bar__icon { flex-shrink: 0; font-size: 14px; }
.notice-bar__ticker { flex: 1; overflow: hidden; }
.notice-bar__text {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.notice-bar__close {
    flex-shrink: 0;
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.2s;
    padding: 4px;
    font-size: 14px;
}
.notice-bar__close:hover { opacity: 1; }

/* ── TOP BAR ─────────────────────────────────────────────── */
.top-bar {
    background: var(--navy);
    color: rgba(255,255,255,0.65);
    font-size: 12px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-bar__left, .top-bar__right { display: flex; align-items: center; gap: 20px; }
.top-bar__link {
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.top-bar__link:hover { color: var(--teal-light); }
.top-bar__social {
    width: 26px; height: 26px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 11px;
    transition: all 0.2s;
}
.top-bar__social:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.top-bar__whatsapp-link {
    display: flex; align-items: center; gap: 5px;
    background: #25d366;
    color: var(--white);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px; font-weight: 600;
    transition: opacity 0.2s;
}
.top-bar__whatsapp-link:hover { opacity: 0.9; color: var(--white); }

/* ── SITE HEADER / NAVBAR ────────────────────────────────── */
.site-header {
    background: rgba(11,26,46,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
    background: rgba(11,26,46,0.99);
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 32px;
}
.site-header__logo-text {
    display: flex; flex-direction: row; align-items: center; gap: 12px;
    color: var(--white); text-decoration: none;
}
.site-header__logo-icon { height: 56px; width: auto; flex-shrink: 0; }
.site-header__logo .custom-logo-link { display: flex; align-items: center; }
.site-header__logo .custom-logo { height: 64px; width: auto; max-width: 200px; object-fit: contain; }
.site-header__logo-words { display: flex; flex-direction: column; gap: 0; }
.logo-westfield {
    font-family: var(--font-heading);
    font-size: 26px; font-weight: 700;
    color: var(--white); letter-spacing: 1.5px; line-height: 1;
}
.logo-usg {
    font-family: var(--font-body);
    font-size: 11px; font-weight: 600;
    color: var(--teal-light);
    letter-spacing: 2px; text-transform: uppercase; line-height: 1.6;
}
.logo-tagline { display: none; }
.logo-grand-opening {
    font-family: var(--font-body);
    font-size: 9px; font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px; text-transform: uppercase; line-height: 1;
    margin-top: 2px;
    animation: grandOpeningPulse 2s ease-in-out infinite;
}
@keyframes grandOpeningPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.site-nav { display: flex; }
.site-nav__menu {
    display: flex; align-items: center; gap: 4px;
    list-style: none; margin: 0; padding: 0;
}
.site-nav__menu > li > a {
    display: block;
    padding: 8px 11px;
    color: rgba(255,255,255,0.85);
    font-size: 13.5px; font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}
.site-nav__menu > li > a:hover,
.site-nav__menu > li.current-menu-item > a {
    color: var(--teal-light);
    background: rgba(155,28,28,0.1);
}
.site-nav__menu .menu-item-has-children { position: relative; }
.site-nav__menu .sub-menu {
    position: absolute; top: calc(100% + 8px); left: 0;
    background: var(--navy-mid);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 8px;
    min-width: 220px;
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s;
    z-index: 100;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    list-style: none;
}
.site-nav__menu .menu-item-has-children:hover .sub-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.site-nav__menu .sub-menu li a {
    display: block; padding: 9px 14px;
    color: rgba(255,255,255,0.7);
    font-size: 13px; border-radius: 8px;
    transition: all 0.2s;
}
.site-nav__menu .sub-menu li a:hover {
    color: var(--teal-light);
    background: rgba(155,28,28,0.12);
}
.site-header__cta { flex-shrink: 0; }
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    padding: 6px; cursor: pointer;
}
.hamburger__line {
    width: 24px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: all 0.3s; display: block;
}
.hamburger.active .hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ──────────────────────────────────────────── */
.mobile-nav {
    position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
    background: var(--navy-mid); z-index: 2000;
    transition: right 0.35s var(--ease);
    overflow-y: auto;
    box-shadow: -4px 0 40px rgba(0,0,0,0.5);
}
.mobile-nav.open { right: 0; }
.mobile-nav__overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6); z-index: 1999;
    opacity: 0; visibility: hidden; transition: all 0.3s;
}
.mobile-nav__overlay.active { opacity: 1; visibility: visible; }
.mobile-nav__header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav__title {
    font-family: var(--font-heading); font-size: 18px;
    color: var(--white); font-weight: 600;
}
.mobile-nav__close {
    color: rgba(255,255,255,0.7); font-size: 20px;
    cursor: pointer; padding: 4px; transition: color 0.2s;
}
.mobile-nav__close:hover { color: var(--white); }
.mobile-nav__body { padding: 16px; }
.mobile-nav__menu { list-style: none; margin: 0; padding: 0; }
.mobile-nav__menu li a {
    display: block; padding: 12px 16px;
    color: rgba(255,255,255,0.8);
    font-size: 15px; font-weight: 500;
    border-radius: 8px; transition: all 0.2s;
}
.mobile-nav__menu li a:hover { color: var(--teal-light); background: rgba(155,28,28,0.1); }
.mobile-nav__menu .sub-menu { display: none; }
.mobile-nav__contact {
    margin-top: 20px; padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; flex-direction: column; gap: 10px;
}
.mobile-nav__contact a {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.65); font-size: 14px;
    transition: color 0.2s;
}
.mobile-nav__contact a:hover { color: var(--teal-light); }

/* ── FLOATING BUTTONS ────────────────────────────────────── */
.float-whatsapp {
    position: fixed; bottom: 88px; right: 24px;
    background: #25d366; color: var(--white);
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; z-index: 900;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}
.float-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); color: var(--white); }
.float-whatsapp__label { display: none; }
.back-to-top {
    position: fixed; bottom: 24px; right: 24px;
    background: var(--navy-mid); color: var(--white);
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 900;
    border: 1px solid rgba(255,255,255,0.12);
    opacity: 0; visibility: hidden;
    transition: all 0.3s; cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-2px); }

/* ── HERO SECTION ────────────────────────────────────────── */
.hero-section {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 100px 0 80px;
}
.hero-section::before {
    content: '';
    position: absolute; top: -20%; right: -10%;
    width: 60%; height: 120%;
    background: radial-gradient(ellipse, rgba(155,28,28,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px; align-items: center;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212,168,83,0.12);
    border: 1px solid rgba(212,168,83,0.3);
    color: var(--gold);
    padding: 6px 14px; border-radius: 50px;
    font-size: 12px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-motto {
    font-family: var(--font-heading);
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 600;
    font-style: italic;
    color: var(--teal-light);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    opacity: 1;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700; color: var(--white);
    line-height: 1.15; margin-bottom: 24px;
}
.hero-title span { color: var(--teal-light); }
.hero-subtitle {
    font-size: 16px; color: rgba(255,255,255,0.7);
    line-height: 1.7; max-width: 520px; margin-bottom: 32px;
}
.hero-trust {
    display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px;
}
.hero-trust-item {
    display: flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 500;
}
.hero-trust-item i { color: var(--teal-light); font-size: 12px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Right */
.hero-card-wrap {
    position: relative; display: flex;
    justify-content: center; align-items: center;
}
.hero-scan-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px; padding: 36px 32px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    position: relative; overflow: hidden;
    width: 100%; max-width: 380px;
}
.hero-scan-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-accent);
    border-radius: 24px 24px 0 0;
}
.scan-card-label {
    font-size: 11px; font-weight: 600;
    color: var(--teal-light);
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 4px;
}
.scan-card-title {
    font-family: var(--font-heading); font-size: 20px;
    color: var(--white); font-weight: 600; margin-bottom: 20px;
}
.scan-display {
    background: rgba(155,28,28,0.08);
    border: 1px solid rgba(155,28,28,0.2);
    border-radius: 12px; aspect-ratio: 4/3;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; margin-bottom: 20px;
}
.scan-machine-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block; border-radius: 12px;
}
.scan-line {
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--teal-light), transparent);
    animation: scan 3s ease-in-out infinite;
    box-shadow: 0 0 8px var(--teal-light);
}
@keyframes scan {
    0%   { top: 0;    opacity: 0.8; }
    50%  { opacity: 1; }
    100% { top: 100%; opacity: 0.8; }
}
.scan-stats {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
}
.scan-stat {
    text-align: center; padding: 12px 8px;
    background: rgba(255,255,255,0.04);
    border-radius: 10px; border: 1px solid rgba(255,255,255,0.06);
}
.scan-stat-num {
    display: block;
    font-family: var(--font-heading); font-size: 22px; font-weight: 700;
    color: var(--white); line-height: 1; margin-bottom: 4px;
}
.scan-stat-label {
    font-size: 10px; color: rgba(255,255,255,0.5);
    text-transform: uppercase; letter-spacing: 0.5px;
}
.hero-badge-float {
    position: absolute;
    z-index: 10;
    background: var(--white); border-radius: 12px; padding: 10px 14px;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    animation: float-gentle 4s ease-in-out infinite;
}
.hero-badge-float:nth-child(2) { animation-delay: 2s; }
.hero-badge-float--tl { top: -16px; left: -24px; }
.hero-badge-float--br { bottom: -16px; right: -24px; }
.badge-float-icon {
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--white);
}
.badge-float-icon--teal { background: var(--gradient-accent); }
.badge-float-icon--gold { background: var(--gradient-gold); }
.badge-float-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.badge-float-text span { font-size: 10px; color: var(--text-muted); }
@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* ── COURSES SLIDER SECTION ──────────────────────────────── */
.courses-slider-section { background: var(--off-white); padding: 80px 0; }
.courses-slider-wrap { position: relative; padding-bottom: 48px; }
.courses-slider-wrap .swiper-pagination { bottom: 0; }
.courses-slider-wrap .swiper-pagination-bullet { background: var(--navy); opacity: 0.3; }
.courses-slider-wrap .swiper-pagination-bullet-active { background: var(--teal); opacity: 1; }

/* ── COURSE CARD ─────────────────────────────────────────── */
.course-card {
    background: var(--white); border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
    height: 100%; display: flex; flex-direction: column;
}
.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(155,28,28,0.12);
    border-color: var(--teal);
}
.course-card__header {
    padding: 28px 24px; position: relative;
    display: flex; align-items: flex-start; justify-content: space-between;
}
.ct-teal  { background: var(--gradient-accent); }
.ct-gold  { background: var(--gradient-gold); }
.ct-navy  { background: var(--gradient-navy); }
.course-card__highlight {
    position: absolute; top: 12px; right: 12px;
    font-size: 10px; font-weight: 700;
    background: var(--gold); color: var(--white);
    padding: 3px 8px; border-radius: 50px; text-transform: uppercase;
    letter-spacing: 0.5px;
}
.course-card__icon {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.2); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 22px;
}
.course-card__abbr {
    font-family: var(--font-heading); font-size: 14px; font-weight: 700;
    color: rgba(255,255,255,0.4); letter-spacing: 1px;
}
.course-card__badge {
    position: absolute; bottom: 12px; left: 24px;
    font-size: 11px; font-weight: 600;
    background: rgba(255,255,255,0.2); color: var(--white);
    padding: 4px 10px; border-radius: 50px; letter-spacing: 0.5px;
}
.course-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.course-card__title {
    font-family: var(--font-heading); font-size: 18px; font-weight: 600;
    color: var(--navy); margin-bottom: 12px; line-height: 1.3;
}
.course-card__excerpt {
    font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px;
}
.course-card__meta {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1px; background: #e5e7eb; border-radius: 10px; overflow: hidden;
    margin-bottom: 16px;
}
.course-card__meta .course-meta-item {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    gap: 4px; padding: 12px 8px; background: #f8fafc;
    font-size: 12px; color: var(--text-muted);
}
.course-card__meta .course-meta-item i { color: var(--teal); font-size: 14px; }
.course-card__features {
    list-style: none; margin: 0 0 16px; padding: 0; flex: 1;
}
.course-card__features li {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 13px; color: var(--text-muted);
    padding: 5px 0; border-bottom: 1px solid rgba(0,0,0,0.04);
}
.course-card__features li:last-child { border-bottom: none; }
.course-card__features li i { color: var(--teal); font-size: 11px; margin-top: 3px; flex-shrink: 0; }
.course-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.course-tag {
    font-size: 11px;
    background: rgba(155,28,28,0.08); color: var(--teal);
    border: 1px solid rgba(155,28,28,0.2);
    padding: 3px 9px; border-radius: 50px;
    display: flex; align-items: center; gap: 4px;
}
.course-card__footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.course-card__btn {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; color: var(--navy); transition: color 0.2s;
}
.course-card__btn:hover { color: var(--teal); }
.course-card__btn i { font-size: 12px; transition: transform 0.2s; }
.course-card__btn:hover i { transform: translateX(3px); }
.course-card__apply {
    display: flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 600;
    background: var(--gradient-accent); color: var(--white);
    padding: 6px 14px; border-radius: 6px; transition: opacity 0.2s;
}
.course-card__apply:hover { opacity: 0.9; color: var(--white); }

/* ── ABOUT SECTION ───────────────────────────────────────── */
.about-section { background: var(--white); padding: 96px 0; }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.about-visual {
    border-radius: 24px;
    aspect-ratio: 4/3;
    position: relative; overflow: hidden;
}
.about-machine-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block; border-radius: 24px;
}
.about-visual::before {
    content: '';
    position: absolute; top: -30%; right: -20%; width: 80%; height: 80%;
    background: radial-gradient(circle, rgba(155,28,28,0.15) 0%, transparent 70%);
}
.about-visual-icon { font-size: 100px; color: rgba(155,28,28,0.2); position: relative; z-index: 1; }
.about-visual-badge {
    position: absolute; bottom: 24px; left: 24px;
    background: var(--navy);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 12px; padding: 12px 16px;
    display: flex; align-items: center; gap: 10px; color: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 2;
}
.about-visual-badge i { font-size: 18px; color: var(--gold); }
.about-visual-badge strong { display: block; font-size: 13px; font-weight: 600; color: var(--white); }
.about-visual-badge span { font-size: 11px; color: rgba(255,255,255,0.6); }
.about-features { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.about-feature-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.about-feature-icon--teal { background: rgba(155,28,28,0.1); color: var(--teal); }
.about-feature-icon--gold { background: rgba(212,168,83,0.1); color: var(--gold); }
.about-feature-icon--navy { background: rgba(11,26,46,0.08); color: var(--navy); }
.about-feature-text strong { display: block; font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.about-feature-text p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── COURSES SECTION (grid) ──────────────────────────────── */
.courses-section { background: var(--off-white); padding: 96px 0; }
.courses-filter {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 40px;
}
.filter-btn {
    padding: 8px 20px; border-radius: 50px;
    font-size: 14px; font-weight: 600;
    background: var(--white); color: var(--text-muted);
    border: 1px solid rgba(0,0,0,0.1); cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--navy); color: var(--white); border-color: var(--navy);
}
.courses-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.course-card.hidden { display: none; }

/* ── WHY US SECTION ──────────────────────────────────────── */
.why-us-section {
    background: var(--navy); padding: 96px 0;
    position: relative; overflow: hidden;
}
.why-us-section::before {
    content: '';
    position: absolute; bottom: -10%; left: -5%; width: 40%; height: 80%;
    background: radial-gradient(circle, rgba(155,28,28,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.why-card {
    background: var(--gradient-glass);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 28px 24px;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s, border-color 0.3s;
}
.why-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.why-card__icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 16px;
}
.wi-teal { background: rgba(155,28,28,0.12); color: var(--teal-light); border: 1px solid var(--border-light); }
.wi-gold { background: rgba(212,168,83,0.10); color: var(--gold);       border: 1px solid var(--border-gold); }
.why-card__title {
    font-family: var(--font-heading); font-size: 17px; font-weight: 600;
    color: var(--white); margin-bottom: 10px; line-height: 1.3;
}
.why-card__text { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    padding: 60px 24px; position: relative; overflow: hidden;
}
.stats-bar::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    pointer-events: none;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
    max-width: var(--container-max); margin: 0 auto;
    position: relative; z-index: 1;
}
.stat-item { text-align: center; padding: 0 24px; position: relative; }
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute; right: 0; top: 15%; height: 70%;
    width: 1px; background: rgba(255,255,255,0.2);
}
.stat-num {
    font-family: var(--font-heading);
    font-size: clamp(36px,5vw,52px); font-weight: 700;
    color: var(--white); line-height: 1; display: block; margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ── TESTIMONIALS SECTION ────────────────────────────────── */
.testimonials-section { background: var(--white); padding: 96px 0; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: var(--off-white); border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px; padding: 28px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.testimonial-card__stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--gold); font-size: 14px; }
.testimonial-card__text { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 18px; font-weight: 700;
    color: var(--white); flex-shrink: 0;
}
.avatar-teal { background: var(--gradient-accent); }
.avatar-gold { background: var(--gradient-gold); }
.avatar-navy { background: var(--gradient-navy); }
.testimonial-card__name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testimonial-card__role { font-size: 12px; color: var(--text-muted); }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section { background: var(--off-white); padding: 96px 0; }
.cta-card {
    max-width: 950px; margin: 0 auto;
    background: var(--navy); border-radius: 24px;
    padding: 64px 48px; text-align: center;
    position: relative; overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(155,28,28,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cta-card__dot-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.cta-card__content { position: relative; z-index: 1; }
.cta-card__label {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 700;
    color: var(--teal-light); text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 16px;
}
.cta-card__title {
    font-family: var(--font-heading);
    font-size: clamp(28px,4vw,42px); font-weight: 700;
    color: var(--white); margin-bottom: 16px; line-height: 1.2;
}
.cta-card__subtitle {
    font-size: 16px; color: rgba(255,255,255,0.65);
    max-width: 560px; margin: 0 auto 40px; line-height: 1.7;
}
.cta-card__actions {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 14px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    gap: 48px; margin-bottom: 48px;
}
.footer-brand__logo {
    font-family: var(--font-heading); font-size: 22px; font-weight: 700;
    color: var(--white); margin-bottom: 4px;
}
.footer-brand__logo span { color: var(--teal-light); }
.footer-brand__tagline {
    font-size: 11px; color: rgba(255,255,255,0.4);
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-brand__desc {
    font-size: 13px; color: rgba(255,255,255,0.5);
    line-height: 1.7; margin-bottom: 20px; max-width: 280px;
}
.footer-socials { display: flex; gap: 8px; }
.footer-social {
    width: 34px; height: 34px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); font-size: 13px; transition: all 0.2s;
}
.footer-social:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.footer-col__title {
    font-family: var(--font-heading); font-size: 15px; font-weight: 600;
    color: var(--white); margin-bottom: 20px; padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 13px; color: rgba(255,255,255,0.5);
    display: flex; align-items: center; gap: 6px; transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal-light); }
.footer-links a i { font-size: 10px; color: var(--teal); }
.footer-contact-items { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-item i { font-size: 14px; color: var(--teal); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a,
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--teal-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--teal-light); }
.footer-credit { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-credit a { color: var(--gold); text-decoration: none; font-weight: 600; }
.footer-credit a:hover { color: var(--teal-light); }

/* ── UTILITY CLASSES ─────────────────────────────────────── */

/* Text helpers */
.text-center   { text-align: center; }
.text-white    { color: var(--white) !important; }
.text-white-70 { color: rgba(255,255,255,0.7) !important; }
.text-gold     { color: var(--gold) !important; }
.text-muted    { color: var(--text-muted) !important; }

/* Background helpers */
.bg-navy  { background: var(--navy); }
.bg-light { background: var(--off-white); }

/* Site main */
.site-main { display: block; }

/* Section label pill */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--teal-light);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.section-label--light {
    color: var(--gold);
    background: rgba(201,162,39,0.15);
}

/* Section header block */
.section-header { margin-bottom: 48px; }
.section-header .section-title { margin-top: 8px; }
.section-header .section-subtitle {
    max-width: 580px;
    margin: 12px auto 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}
.section-header.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* Button size variants */
.btn-sm   { padding: 8px 18px; font-size: 0.8rem; }
.btn-full { width: 100%; justify-content: center; }

/* Outline button variants */
.btn-outline-primary {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline-primary:hover { background: var(--teal); color: var(--white); }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-text    { background: none; border: none; cursor: pointer; }
.btn-loading { opacity: 0.7; pointer-events: none; }

/* Course level badges */
.badge-basic       { background: rgba(5,150,105,0.12); color: #059669; }
.badge-advanced    { background: rgba(124,58,237,0.12); color: #7c3aed; }
.badge-specialized { background: rgba(155,28,28,0.12); color: var(--teal); }
.badge-vascular    { background: rgba(155,28,28,0.12); color: var(--teal); }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb-nav { margin-top: 12px; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}
.breadcrumb__item {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 6px;
}
.breadcrumb__item a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.breadcrumb__item a:hover { color: var(--gold); }
.breadcrumb__item::after { content: '/'; opacity: 0.4; margin-left: 2px; }
.breadcrumb__item:last-child::after { display: none; }
.breadcrumb__item--active { color: var(--gold); font-weight: 600; }
.breadcrumb__item--active::after { display: none; }

/* ── INNER PAGE HERO ─────────────────────────────────────── */
.inner-page-hero {
    position: relative;
    background: var(--gradient-hero);
    padding: 80px 0 60px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
}
.inner-page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
}
.inner-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,8,8,0.92) 0%, rgba(107,15,15,0.85) 100%);
}
.inner-page-hero__content {
    position: relative;
    z-index: 2;
}
.inner-page-hero__label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,162,39,0.15);
    border: 1px solid rgba(201,162,39,0.3);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.inner-page-hero__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.inner-page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
}
.inner-page-hero__subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    line-height: 1.65;
}
/* Course variant — slightly taller */
.inner-page-hero--course { padding: 100px 0 70px; min-height: 320px; }

/* ── SERVICES SECTION ────────────────────────────────────── */
.services-section { /* bg-navy + section-padding applied via utility classes */ }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.service-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    padding: 28px 22px;
    text-align: center;
    transition: background 0.25s, transform 0.25s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.25s;
}
.service-card:hover { background: rgba(255,255,255,0.10); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
    width: 56px; height: 56px;
    background: rgba(201,162,39,0.15);
    border: 1px solid rgba(201,162,39,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: var(--gold);
}
.service-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}
.service-card__desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}
.service-card__line {
    width: 32px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* ── GALLERY SECTION + LIGHTBOX ──────────────────────────── */
.gallery-section { /* bg-light + section-padding via utilities */ }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: var(--off-white);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,8,8,0.75) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay span {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Placeholder */
.gallery-item--placeholder { cursor: default; }
.gallery-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    background: #f1f5f9;
}
.gallery-placeholder i { font-size: 2rem; opacity: 0.35; }

.gallery-notice {
    text-align: center;
    margin-top: 32px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    border: 1px dashed rgba(155,28,28,0.2);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Lightbox modal */
.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox-modal.is-open { display: flex; }

.lightbox-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,3,3,0.92);
    cursor: pointer;
}
.lightbox-modal__content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-modal__img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-modal__caption {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-top: 12px;
    text-align: center;
}
.lightbox-modal__close {
    position: fixed;
    top: 20px; right: 24px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}
.lightbox-modal__close:hover { background: rgba(255,255,255,0.2); }
.lightbox-modal__prev,
.lightbox-modal__next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    width: 48px; height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}
.lightbox-modal__prev { left: 20px; }
.lightbox-modal__next { right: 20px; }
.lightbox-modal__prev:hover,
.lightbox-modal__next:hover { background: rgba(155,28,28,0.5); }

/* ── INSTRUCTORS SECTION ─────────────────────────────────── */
.instructors-section { /* bg-light + section-padding */ }

.instructor-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26,8,8,0.08);
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
}
.instructor-card:hover { box-shadow: 0 8px 32px rgba(26,8,8,0.14); transform: translateY(-4px); }

.instructor-card__photo {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    display: block;
}
.instructor-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.instructor-card:hover .instructor-card__photo img { transform: scale(1.05); }
.instructor-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 3rem;
}

.instructor-card__body {
    padding: 20px 18px 18px;
    border-top: 3px solid var(--teal);
}
.instructor-card__name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.instructor-card__quals {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 6px;
}
.instructor-card__spec {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.instructor-card__hospital {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}
.instructor-card__hospital i { color: var(--gold); font-size: 0.75rem; }

/* Hover overlay */
.instructor-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,8,8,0.92) 0%, rgba(26,8,8,0.6) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px 18px;
    opacity: 0;
    transition: opacity 0.3s;
}
.instructor-card:hover .instructor-card__overlay { opacity: 1; }
.instructor-card__overlay-content {
    width: 100%;
    text-align: center;
}
.instructor-card__overlay-content .instructor-card__name { color: var(--white); }
.instructor-card__overlay-content .instructor-card__quals { color: var(--gold); }
.instructor-card__overlay-content .instructor-card__spec { color: rgba(255,255,255,0.75); }

/* Swiper nav for instructors */
.instructors-swiper { padding-bottom: 40px !important; }
.instructors-pagination .swiper-pagination-bullet { background: var(--teal); }
.instructors-pagination .swiper-pagination-bullet-active { background: var(--gold); width: 20px; border-radius: 4px; }
.instructors-prev,
.instructors-next {
    color: var(--teal) !important;
    background: var(--white);
    width: 38px !important; height: 38px !important;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(26,8,8,0.12);
}
.instructors-prev::after,
.instructors-next::after { font-size: 14px !important; font-weight: 700; }

/* ── CONTACT SECTION ─────────────────────────────────────── */
.contact-section { /* section-padding */ }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Form column */
.contact-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(26,8,8,0.08);
    border: 1px solid rgba(155,28,28,0.08);
}
.contact-form-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--off-white);
}
.contact-form-title span { color: var(--teal); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--off-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(155,28,28,0.10);
    background: var(--white);
}
.form-group input:focus:not(:focus-visible),
.form-group select:focus:not(:focus-visible),
.form-group textarea:focus:not(:focus-visible) {
    outline: none;
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group .required { color: var(--teal); }

.form-feedback {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.88rem;
    margin-top: 12px;
    display: none;
}
.form-feedback.success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; display: block; }
.form-feedback.error   { background: #fef2f2; color: var(--teal); border: 1px solid rgba(155,28,28,0.2); display: block; }

/* Info column */
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }

.contact-info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 2px 12px rgba(26,8,8,0.06);
    border: 1px solid rgba(155,28,28,0.07);
    transition: box-shadow 0.2s;
}
.contact-info-card:hover { box-shadow: 0 4px 20px rgba(26,8,8,0.10); }

.contact-info-card__icon {
    width: 44px; height: 44px;
    background: rgba(155,28,28,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal);
    font-size: 1.1rem;
}
.contact-info-card__body h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}
.contact-info-card__body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}
.contact-link { color: var(--teal); }
.contact-link:hover { color: var(--teal-dark); }
.contact-phone { display: flex; flex-direction: column; gap: 3px; }
.contact-phone a { font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.contact-phone a:hover { color: var(--teal); }

.contact-map {
    margin-top: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26,8,8,0.08);
}
.contact-map iframe { width: 100%; display: block; border: none; }

/* ── SINGLE COURSE DETAIL PAGE ───────────────────────────── */
.course-detail-section { background: var(--off-white); }

.course-detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

/* Main column */
.course-detail-image {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 4px 20px rgba(26,8,8,0.10);
}
.course-detail-image img { width: 100%; display: block; }

.course-meta-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1px;
    background: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
}
.course-meta-strip .course-meta-item {
    background: var(--white);
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}
.course-meta-strip .course-meta-item i { font-size: 1.2rem; color: var(--teal); }
.course-meta-strip .course-meta-item strong {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.course-meta-strip .course-meta-item span { font-size: 0.88rem; color: var(--text-muted); }

.course-detail-content { background: var(--white); border-radius: 14px; padding: 32px; box-shadow: 0 2px 12px rgba(26,8,8,0.06); }

/* Entry content typography */
.entry-content h2 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin: 28px 0 14px; }
.entry-content h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 22px 0 10px; }
.entry-content p  { margin-bottom: 16px; line-height: 1.75; color: var(--text); }
.entry-content ul,
.entry-content ol { padding-left: 20px; margin-bottom: 16px; }
.entry-content li { margin-bottom: 6px; color: var(--text); }
.entry-content ul li { list-style: disc; }
.entry-content ol li { list-style: decimal; }
.entry-content strong { font-weight: 700; color: var(--navy); }
.entry-content a { color: var(--teal); border-bottom: 1px solid rgba(155,28,28,0.25); }
.entry-content a:hover { color: var(--teal-dark); }
.entry-content img { border-radius: 10px; margin: 16px 0; }

/* Sidebar */
.course-enroll-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26,8,8,0.10);
    border: 1px solid rgba(155,28,28,0.08);
    position: sticky;
    top: 100px;
    margin-bottom: 20px;
}
.course-enroll-card__header {
    background: var(--gradient-accent);
    padding: 22px 24px;
}
.course-fee { display: flex; flex-direction: column; gap: 2px; }
.course-fee__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.75);
}
.course-fee__amount {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}
.course-enroll-card__body { padding: 22px 24px; }
.course-enroll-features { list-style: none; margin-bottom: 20px; }
.course-enroll-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--off-white);
    font-size: 0.88rem;
    color: var(--text);
}
.course-enroll-features li:last-child { border-bottom: none; }
.course-enroll-features li i { color: var(--teal); font-size: 0.85rem; width: 16px; text-align: center; }

/* Quick-contact card in sidebar */
.course-contact-card {
    background: var(--white);
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 2px 12px rgba(26,8,8,0.08);
    border-left: 4px solid var(--gold);
}
.course-contact-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
}
.course-contact-phone { display: flex; flex-direction: column; gap: 8px; }
.course-contact-phone a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    transition: color 0.2s;
}
.course-contact-phone a:hover { color: var(--teal); }
.course-contact-phone a i { color: var(--teal); width: 16px; }

/* Related courses */
.related-courses-section { /* bg-light + section-padding */ }
.related-courses-section .section-header { margin-bottom: 32px; }

/* ── COURSES ARCHIVE PAGE ────────────────────────────────── */
.courses-archive-section { /* section-padding */ }

.course-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0;
}
.course-tab {
    padding: 10px 22px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    border-radius: 0;
}
.course-tab:hover { color: var(--navy); }
.course-tab.active { color: var(--teal); border-bottom-color: var(--teal); font-weight: 700; }

.empty-state {
    text-align: center;
    padding: 64px 24px;
    background: var(--white);
    border-radius: 16px;
    border: 2px dashed #e2e8f0;
}
.empty-state i { font-size: 2.5rem; color: #cbd5e1; margin-bottom: 16px; display: block; }
.empty-state h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }

/* ── GENERIC PAGE TEMPLATE ───────────────────────────────── */
.page-content { /* section-padding */ }
.page-content-inner { max-width: 800px; margin: 0 auto; }
.page-article {
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 2px 16px rgba(26,8,8,0.06);
}
/* entry-content typography already defined in single-course section */

/* ── 404 PAGE ────────────────────────────────────────────── */
.error-404-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--off-white);
}
.error-404-content { max-width: 560px; margin: 0 auto; text-align: center; }
.error-404-number {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 20vw, 10rem);
    font-weight: 900;
    line-height: 1;
    color: transparent;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 8px;
}
.error-404-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
}
.error-404-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}
.error-404-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.error-404-actions .search-form {
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
}
.error-404-actions .search-form input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
}
.error-404-actions .search-form input:focus { border-color: var(--teal); }
.error-404-actions .search-form button {
    background: var(--teal);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}
.error-404-actions .search-form button:hover { background: var(--teal-dark); }

/* ── Footer logo icon ────────────────────────────────────── */
.footer-brand__icon {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    margin-bottom: 10px;
}

/* ── Blog single (single.php) ────────────────────────────── */
.blog-single-section { background: var(--bg-light, #f8f9fa); }
.blog-single-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    align-items: start;
}
.blog-single-article { min-width: 0; }
.blog-single-thumb { margin-bottom: 28px; border-radius: 14px; overflow: hidden; }
.blog-single-thumb img { width: 100%; display: block; }
.blog-single-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}
.blog-single-meta span { display: flex; align-items: center; gap: 6px; }
.blog-sidebar {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 20px;
    position: sticky;
    top: 100px;
}

/* ── Blog grid / search.php ──────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.blog-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.blog-card__body { padding: 20px; }
.blog-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.4;
}
.blog-card__title a { color: inherit; text-decoration: none; }
.blog-card__title a:hover { color: var(--teal); }
.blog-card__excerpt {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
}
.blog-card__read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-card__read-more:hover { color: var(--teal-dark); }

/* ----------------------------------------------------------
   NEWS PAGE  (page-news.php)
---------------------------------------------------------- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}
.news-card {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
}
.news-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateY(-3px); }
.news-card__thumb { display: block; overflow: hidden; aspect-ratio: 16/9; }
.news-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.news-card:hover .news-card__thumb img { transform: scale(1.04); }
.news-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.news-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.news-card__meta i { color: var(--teal); }
.news-card__cat {
    background: var(--teal);
    color: var(--white);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.news-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.4;
}
.news-card__title a { color: inherit; text-decoration: none; }
.news-card__title a:hover { color: var(--teal); }
.news-card__excerpt {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}
.news-card__link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}
.news-card__link:hover { color: var(--teal-dark); gap: 10px; }

/* ----------------------------------------------------------
   INSTRUCTORS PAGE  (archive-instructor.php)
---------------------------------------------------------- */
.instructors-page-section .section-header { text-align: center; margin-bottom: 40px; }
.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

/* ----------------------------------------------------------
   APPLY ONLINE PAGE  (page-apply-online.php)
---------------------------------------------------------- */
.apply-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}
.apply-form-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 36px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.apply-form-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.apply-form-title i { color: var(--teal); }
.apply-form-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.form-section-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal);
    margin: 24px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}
.form-section-title:first-child { margin-top: 0; }
.apply-info-card {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.apply-info-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.apply-info-title i { color: var(--teal); }
.apply-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.apply-steps li { display: flex; gap: 14px; align-items: flex-start; }
.apply-step-num {
    background: var(--teal);
    color: var(--white);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.apply-steps li strong { font-size: 0.88rem; color: var(--navy); display: block; margin-bottom: 2px; }
.apply-steps li p { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.5; }
.apply-contact-items { display: flex; flex-direction: column; gap: 10px; }
.apply-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    color: var(--navy);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s;
}
.apply-contact-item i { color: var(--teal); font-size: 1rem; }
.apply-contact-item--whatsapp { background: #f0fdf4; border-color: #bbf7d0; color: #15803d; }
.apply-contact-item--whatsapp i { color: #22c55e; }
.apply-contact-item:hover { background: #eef9f8; }
.apply-hours { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; }
.apply-hours p { margin: 0; }
.apply-batches { display: flex; flex-direction: column; gap: 12px; }
.apply-batch-item { display: flex; align-items: flex-start; gap: 12px; }
.apply-batch-item strong { font-size: 0.88rem; color: var(--navy); display: block; }
.apply-batch-item p { font-size: 0.82rem; color: var(--text-muted); margin: 2px 0 0; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; flex-shrink: 0; margin-top: 2px; }
.badge-teal { background: var(--teal); color: var(--white); }
.badge-gold { background: var(--gold); color: var(--white); }

/* -- Popup Modal -- */
.popup-overlay { position:fixed;inset:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity 0.3s; }
.popup-overlay.is-open { opacity:1;pointer-events:auto; }
.popup-modal { background:var(--white);border-radius:20px;padding:48px 40px;max-width:460px;width:90%;text-align:center;position:relative;transform:scale(0.9);transition:transform 0.3s; }
.popup-overlay.is-open .popup-modal { transform:scale(1); }
.popup-close { position:absolute;top:14px;right:14px;background:none;border:none;font-size:1.3rem;color:var(--text-muted);cursor:pointer; }
.popup-icon { font-size:3rem;color:var(--teal);margin-bottom:16px; }
.popup-title { font-family:var(--font-heading);font-size:1.6rem;color:var(--navy);margin-bottom:10px; }
.popup-text { font-size:0.95rem;color:var(--text-muted);line-height:1.7;margin-bottom:24px; }
.popup-btn { display:inline-flex; }

/* -- Successful Students -- */
.students-grid { display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:24px; }
.student-card { background:var(--white);border-radius:14px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,0.08);text-align:center;transition:box-shadow 0.3s,transform 0.3s; }
.student-card:hover { box-shadow:0 8px 32px rgba(0,0,0,0.14);transform:translateY(-4px); }
.student-card__photo { width:120px;height:120px;border-radius:50%;overflow:hidden;margin:24px auto 16px;border:4px solid var(--teal); }
.student-card__photo img { width:100%;height:100%;object-fit:cover; }
.student-photo-placeholder { width:100%;height:100%;background:linear-gradient(135deg,#f1f5f9,#e2e8f0);display:flex;align-items:center;justify-content:center;color:#cbd5e1;font-size:2.5rem; }
.student-card__body { padding:0 20px 24px; }
.student-card__name { font-family:var(--font-heading);font-size:1rem;font-weight:700;color:var(--navy);margin-bottom:4px; }
.student-card__quals { font-size:0.78rem;font-weight:600;color:var(--teal);margin-bottom:6px; }
.student-card__course { font-size:0.82rem;color:var(--text-muted);margin-bottom:2px; }
.student-card__course i,.student-card__batch i { color:var(--gold);margin-right:4px;font-size:0.75rem; }
.student-card__batch { font-size:0.78rem;color:var(--text-muted); }
