/* ===========================
   NIEC Design System - main.css
   Light Theme — Crimson Red + Warm Cream
   =========================== */

/* --- CSS Variables --- */
:root {
    --bg-base: #F5F0E8;
    --bg-white: #FFFFFF;
    --bg-panel: #FFFFFF;
    --bg-panel-alt: #FAF5ED;
    --bg-panel-border: rgba(0,0,0,0.08);
    --text-primary: #1A1A1A;
    --text-secondary: #5A5A5A;
    --text-light: #666666;
    --accent-crimson: #AD0F2D;
    --accent-crimson-dark: #8B0C24;
    --accent-crimson-light: #C41E3A;
    --accent-brown: #522D17;
    --accent-brown-light: #7A4A2A;
    --gradient-primary: linear-gradient(135deg, #AD0F2D 0%, #C41E3A 100%);
    --gold: #C9A84C;
    --red-error: #D32F2F;
    --green-success: #2E7D32;
    --primary-color: #185ee0;
    --secondary-color: #e6eef9;
    --page-bg: #eef2fc;
    --pill-bg: #ffffff;
    --active-bg: rgba(173, 15, 45, 0.10);
    --active-text: #AD0F2D;
    --inactive-text: #12141a;
    --shadow-color: rgba(30, 41, 90, 0.14);
    --container-max: 1200px;
    --header-height: 72px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-card-hover: 0 8px 30px rgba(0,0,0,0.1);
    --transition-fast: 200ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    background-color: var(--page-bg);
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5, h6 { color: var(--text-primary); font-weight: 700; line-height: 1.2; }

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 10000;
}
.skip-link:focus {
    position: fixed;
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 12px 20px;
    background: var(--accent-crimson);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    overflow: visible;
}

/* --- Announcement bar --- */
.site-announcement {
    background: #0b5ed7;
    color: #fff;
}
.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 24px;
    text-align: center;
    flex-wrap: wrap;
}
.announcement-text { font-size: 14px; font-weight: 500; color: #fff; }
.announcement-link {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.announcement-link:hover { color: #fff; text-decoration: underline; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
    outline: 3px solid var(--accent-blue);
    outline-offset: 2px;
}

/* --- Layout --- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; width: 100%; }
.section { padding: 80px 0; }
.section-lg { padding: 100px 0; }

/* --- Typography --- */
.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(173,15,45,0.2);
    background: rgba(173,15,45,0.06);
    color: var(--accent-crimson);
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 48px;
}
.text-center { text-align: center; }
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Buttons --- */
.gradient-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: transform var(--transition-fast), filter var(--transition-fast), box-shadow var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(173,15,45,0.25);
}
.gradient-btn:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
    box-shadow: 0 4px 20px rgba(173,15,45,0.35);
}
.gradient-btn:active { transform: scale(0.98); }
.gradient-btn:focus-visible {
    outline: 2px solid var(--accent-crimson);
    outline-offset: 3px;
}
.gradient-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    filter: none;
}

.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    border: 1px solid rgba(0,0,0,0.15);
    cursor: pointer;
    transition: border-color var(--transition-base), color var(--transition-fast), box-shadow var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}
.ghost-btn:hover {
    border-color: var(--accent-crimson);
    color: var(--accent-crimson);
}
.ghost-btn:focus-visible {
    outline: 2px solid var(--accent-crimson);
    outline-offset: 3px;
}

/* --- Glass Card --- */
.glass-card {
    background: var(--bg-panel);
    border: 1px solid var(--bg-panel-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}
.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(173,15,45,0.15);
    box-shadow: var(--shadow-card-hover);
}

/* --- Gradient Icon Badge --- */
.gradient-icon-badge {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}

/* --- Page Header --- */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-panel-alt);
    border-bottom: 1px solid var(--bg-panel-border);
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at top center, rgba(173,15,45,0.05) 0%, transparent 60%);
    pointer-events: none;
}
.page-header .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-light);
}
.page-header .breadcrumb a { color: var(--accent-crimson); }
.page-header .breadcrumb a:hover { text-decoration: underline; }
.page-header h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.page-header .page-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   HEADER
   =========================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--page-bg);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}
.site-header.scrolled {
    background: rgba(238, 242, 252, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 101;
}
.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    image-rendering: auto;
}
.nav {
    position: relative;
    display: inline-flex;
    background: var(--pill-bg);
    border-radius: 999px;
    padding: 6px;
    box-shadow:
        0 12px 24px -8px var(--shadow-color),
        0 2px 6px rgba(30, 41, 90, 0.08);
}
.nav .nav__indicator {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    border-radius: 999px;
    background: var(--active-bg);
    transition:
        transform 0.35s cubic-bezier(.65, 0, .35, 1),
        width 0.35s cubic-bezier(.65, 0, .35, 1);
    z-index: 0;
    pointer-events: none;
}
.nav .nav__item {
    position: relative;
    z-index: 1;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    color: var(--inactive-text);
    border-radius: 999px;
    white-space: nowrap;
    transition: color 0.3s ease;
}
.nav .nav__item:hover { color: var(--active-text); }
.nav .nav__item.is-active { color: var(--active-text); font-weight: 600; }
.nav .nav__item:focus-visible {
    outline: 2px solid var(--active-text);
    outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
    .nav .nav__indicator { transition: none; }
}
.nav__dropdown {
    position: relative;
}
.nav__chevron {
    font-size: 10px;
    margin-left: 5px;
    vertical-align: 1px;
    transition: transform 0.25s ease;
}
.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 10px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 50;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}
.nav__dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 8px;
    background: var(--pill-bg);
    border-radius: 14px;
    box-shadow:
        0 12px 24px -8px var(--shadow-color),
        0 2px 6px rgba(30, 41, 90, 0.08);
}
.nav__dropdown-menu a {
    display: block;
    padding: 8px 13px;
    font-size: 12px;
    color: var(--inactive-text);
    border-radius: 9px;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}
.nav__dropdown-menu a:hover,
.nav__dropdown-menu a.is-active {
    background: var(--active-bg);
    color: var(--active-text);
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.nav__dropdown:hover .nav__chevron {
    transform: rotate(180deg);
}
.hero-nav-wrap {
    display: flex;
    justify-content: center;
    padding: 0 24px;
    margin-top: 56px;
}
.hero-nav { flex-shrink: 0; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cta { padding: 10px 24px; font-size: 14px; }

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 101;
}
.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.mobile-toggle.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-toggle.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    left: 0;
    z-index: 99;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-base);
}
.mobile-nav.open {
    pointer-events: auto;
    opacity: 1;
}
.mobile-nav-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
}
.mobile-nav-panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 300px;
    max-width: 85vw;
    background: var(--bg-white);
    border-left: 1px solid var(--bg-panel-border);
    padding: 100px 24px 32px;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    overflow-y: auto;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast), color var(--transition-fast);
}
.mobile-nav-link:hover, .mobile-nav-link.active {
    background: rgba(173,15,45,0.05);
    color: var(--accent-crimson);
}
.mobile-nav-link.apply-link {
    margin-top: 16px;
    background: var(--gradient-primary);
    color: #fff !important;
    text-align: center;
    border-radius: var(--radius-full);
}
.mobile-accordion { }
.mobile-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: left;
}
.mobile-accordion-trigger i { transition: transform var(--transition-fast); }
.mobile-accordion-trigger.open i { transform: rotate(180deg); }
.mobile-accordion-content {
    display: none;
    padding: 0 16px;
}
.mobile-accordion-content.open { display: block; }
.mobile-accordion-content a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    color: var(--text-light);
    border-radius: var(--radius-sm);
}
.mobile-accordion-content a:hover { color: var(--accent-crimson); background: rgba(173,15,45,0.03); }

/* ===========================
   FLOATING WHATSAPP BUTTON
   =========================== */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    font-size: 30px;
    box-shadow: 0 14px 34px rgba(18, 140, 126, 0.3);
    z-index: 999;
    transition: transform var(--transition-base), box-shadow var(--transition-base), filter var(--transition-base);
    animation: whatsapp-float-pulse 2.2s ease-in-out infinite;
}
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(37, 211, 102, 0.28);
    border-radius: 50%;
    animation: whatsapp-float-ring 1.7s ease-out infinite;
}
.whatsapp-float:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 20px 40px rgba(18, 140, 126, 0.38);
    filter: brightness(1.08);
}
.whatsapp-float .whatsapp-tooltip {
    position: absolute;
    right: 76px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 26, 26, 0.95);
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}
.whatsapp-float:hover .whatsapp-tooltip,
.whatsapp-float:focus-visible .whatsapp-tooltip {
    opacity: 1;
}

@keyframes whatsapp-float-pulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes whatsapp-float-ring {
    0% { transform: scale(0.92); opacity: 1; }
    100% { transform: scale(1.14); opacity: 0; }
}

@media (max-width: 768px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 58px;
        height: 58px;
        font-size: 26px;
    }
    .whatsapp-float .whatsapp-tooltip {
        display: none;
    }
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 40px) 0 80px;
    overflow: hidden;
    background: var(--bg-white);
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}
.hero-blob-1 {
    width: 500px; height: 500px;
    background: var(--accent-crimson);
    top: -10%; left: -10%;
}
.hero-blob-2 {
    width: 400px; height: 400px;
    background: var(--accent-brown);
    top: 20%; right: -5%;
}
.hero-blob-3 {
    width: 300px; height: 300px;
    background: var(--gold);
    bottom: 10%; left: 30%;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content { max-width: 600px; }
.hero-eyebrow { margin-bottom: 24px; }
.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--text-primary);
}
.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-mockup {
    position: relative;
    display: flex;
    justify-content: center;
}
.mockup-card {
    background: var(--bg-white);
    border: 1px solid var(--bg-panel-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-card-hover);
}
.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.mockup-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}
.mockup-info h4 { font-size: 16px; margin-bottom: 2px; }
.mockup-info span { font-size: 13px; color: var(--text-light); }
.mockup-items { display: flex; flex-direction: column; gap: 12px; }
.mockup-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--bg-panel-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--bg-panel-border);
}
.mockup-item-info { display: flex; align-items: center; gap: 12px; }
.mockup-item-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.mockup-item-icon.blue { background: rgba(173,15,45,0.08); color: var(--accent-crimson); }
.mockup-item-icon.purple { background: rgba(82,45,23,0.1); color: var(--accent-brown); }
.mockup-item-icon.pink { background: rgba(201,168,76,0.12); color: var(--gold); }
.mockup-item-label { font-size: 14px; font-weight: 500; color: var(--text-primary); }
.mockup-item-sub { font-size: 12px; color: var(--text-light); }
.mockup-item-status {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-weight: 600;
}
.mockup-item-status.active { background: rgba(46,125,50,0.1); color: var(--green-success); }
.mockup-item-status.pending { background: rgba(201,168,76,0.12); color: var(--gold); }

/* ===========================
   STATS STRIP
   =========================== */
.stats-strip {
    padding: 60px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--bg-panel-border);
    border-bottom: 1px solid var(--bg-panel-border);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.stat-item { text-align: center; }
.stat-number {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--accent-crimson);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 15px;
    color: var(--text-secondary);
}

/* ===========================
   FEATURE GRID
   =========================== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.feature-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.feature-card .glass-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
}
.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===========================
   SHOWCASE GRID (Student Stories)
   =========================== */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.showcase-card { overflow: hidden; }
.showcase-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(173,15,45,0.08), rgba(82,45,23,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(173,15,45,0.3);
    font-size: 48px;
    margin: -32px -32px 24px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.showcase-card-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: rgba(173,15,45,0.08);
    color: var(--accent-crimson);
    margin-bottom: 12px;
}
.showcase-card h3 { font-size: 18px; margin-bottom: 4px; }
.showcase-card .card-meta { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.showcase-card .card-quote { font-size: 14px; color: var(--text-secondary); font-style: italic; margin-bottom: 16px; }
.showcase-card .card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-crimson);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.showcase-card .card-link:hover { text-decoration: underline; }

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner-inner {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}
.cta-banner-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 10s ease-in-out infinite;
}
.cta-banner h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
}
.cta-banner p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.cta-banner .gradient-btn {
    background: #fff;
    color: var(--accent-crimson);
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.cta-banner .gradient-btn:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

/* ===========================
   LOGO MARQUEE
   =========================== */
.logo-marquee {
    padding: 60px 0;
    overflow: hidden;
    background: var(--bg-white);
    border-top: 1px solid var(--bg-panel-border);
    border-bottom: 1px solid var(--bg-panel-border);
}
.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 60px;
    font-size: 18px;
    font-weight: 700;
    color: rgba(0,0,0,0.15);
    transition: color var(--transition-base);
    white-space: nowrap;
}
.marquee-item:hover { color: rgba(0,0,0,0.4); }

/* ===========================
   TESTIMONIAL CAROUSEL
   =========================== */
.testimonials-section { overflow: hidden; background: var(--bg-panel-alt); }
.testimonial-track {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 14px;
}
.testimonial-quote {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.testimonial-programme { font-size: 12px; color: var(--text-light); }
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}
.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.12);
    background: var(--bg-white);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
}
.carousel-btn:hover {
    border-color: var(--accent-crimson);
    background: rgba(173,15,45,0.05);
    transform: scale(1.1);
}

/* ===========================
   BLOG PREVIEW GRID
   =========================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card { overflow: hidden; }
.blog-card-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, rgba(173,15,45,0.06), rgba(82,45,23,0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(173,15,45,0.25);
    font-size: 36px;
    margin: -32px -32px 24px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.blog-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(82,45,23,0.08);
    color: var(--accent-brown);
    margin-bottom: 12px;
}
.blog-card h2 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
.blog-card .card-excerpt { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.6; }
.blog-card .card-date { font-size: 12px; color: var(--text-light); }

/* ===========================
   MAP EMBED
   =========================== */
.map-section { padding: 60px 0 0; }
.map-embed {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: var(--radius-xl);
}
.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--bg-panel-border);
}

/* ===========================
   PROGRAMME ACCORDION
   =========================== */
.programme-accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
    border: 1px solid var(--bg-panel-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-white);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.accordion-item.open { border-color: rgba(173,15,45,0.2); box-shadow: 0 2px 12px rgba(173,15,45,0.06); }
.accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    background: transparent;
    cursor: pointer;
    transition: background var(--transition-fast);
}
.accordion-trigger:hover { background: rgba(173,15,45,0.02); }
.accordion-trigger .accordion-title {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}
.accordion-trigger .chevron {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
    color: var(--text-light);
    flex-shrink: 0;
}
.accordion-item.open .accordion-trigger .chevron { transform: rotate(180deg); }
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.accordion-content-inner {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.accordion-content-inner h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 16px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.accordion-content-inner h3:first-child { margin-top: 0; }
.accordion-content-inner ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 8px;
}
.accordion-content-inner ul li { margin-bottom: 4px; }
.accordion-content-inner p { margin-bottom: 12px; }
.programme-disclaimer {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--bg-panel-border);
}

/* ===========================
   TIER TABS (Pathways)
   =========================== */
.tier-tabs-container { margin-bottom: 40px; }
.tier-tabs {
    display: flex;
    gap: 4px;
    background: rgba(0,0,0,0.04);
    border-radius: var(--radius-full);
    padding: 4px;
    margin-bottom: 32px;
    position: relative;
    overflow-x: auto;
}
.tier-tab {
    flex: 1;
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: color var(--transition-fast);
    position: relative;
    z-index: 1;
    white-space: nowrap;
}
.tier-tab.active { color: var(--text-primary); }
.tier-tab-indicator {
    position: absolute;
    top: 4px; bottom: 4px;
    background: var(--bg-white);
    border-radius: var(--radius-full);
    transition: left 0.3s cubic-bezier(0.22, 1, 0.36, 1), width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.tier-panel { display: none; }
.tier-panel.active { display: block; }

/* ===========================
   EVENT CARD & CALENDAR
   =========================== */
.events-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}
.events-view-toggle {
    display: flex;
    gap: 4px;
    background: rgba(0,0,0,0.04);
    border-radius: var(--radius-full);
    padding: 4px;
}
.events-view-btn {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: color var(--transition-fast), background var(--transition-fast);
}
.events-view-btn.active {
    background: var(--bg-white);
    color: var(--text-primary);
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.events-filter-toggle {
    display: flex;
    gap: 4px;
    background: rgba(0,0,0,0.04);
    border-radius: var(--radius-full);
    padding: 4px;
}
.events-filter-btn {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: color var(--transition-fast), background var(--transition-fast);
}
.events-filter-btn.active {
    background: rgba(173,15,45,0.08);
    color: var(--accent-crimson);
}
.event-card {
    display: flex;
    flex-direction: column;
}
.event-card-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, rgba(173,15,45,0.06), rgba(82,45,23,0.06));
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(173,15,45,0.2);
    font-size: 36px;
    overflow: hidden;
}
.event-card-image img { width: 100%; height: 100%; object-fit: cover; }
.event-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-light);
}
.event-card-meta i { color: var(--accent-crimson); }
.event-type-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: rgba(173,15,45,0.08);
    color: var(--accent-crimson);
}
.event-card h2 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
.event-card h2 a:hover { color: var(--accent-crimson); }
.event-card .card-excerpt { font-size: 14px; color: var(--text-secondary); margin-bottom: 12px; }
.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Calendar Month View */
.calendar-month {
    background: var(--bg-white);
    border: 1px solid var(--bg-panel-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--bg-panel-border);
}
.calendar-header h3 { font-size: 18px; }
.calendar-nav-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--bg-panel-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: border-color var(--transition-fast);
}
.calendar-nav-btn:hover { border-color: var(--accent-crimson); }
.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 12px 24px 0;
}
.calendar-weekday {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    padding: 8px 0;
}
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 8px 24px 24px;
    gap: 4px;
}
.calendar-day {
    text-align: center;
    padding: 8px;
    font-size: 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--text-secondary);
    transition: background var(--transition-fast), color var(--transition-fast);
    position: relative;
}
.calendar-day:hover { background: rgba(173,15,45,0.05); }
.calendar-day.today { color: var(--accent-crimson); font-weight: 700; }
.calendar-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%;
    transform: translateX(-50%);
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent-crimson);
}
.calendar-day.other-month { opacity: 0.3; }
.calendar-day.selected { background: rgba(173,15,45,0.1); color: var(--accent-crimson); }

/* Day View */
.day-view-events { display: flex; flex-direction: column; gap: 16px; }
.day-view-header { margin-bottom: 24px; }
.day-view-header h3 { font-size: 20px; }
.day-view-header p { color: var(--text-secondary); }

.events-empty {
    text-align: center;
    padding: 80px 0;
    color: var(--text-light);
}
.events-empty i { font-size: 48px; margin-bottom: 16px; opacity: 0.3; }

/* ===========================
   FORM STYLES
   =========================== */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.form-group { position: relative; }
.form-group.full-width { grid-column: 1 / -1; }
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
    transition: color var(--transition-fast);
}
.required {
    color: var(--accent-crimson);
    margin-left: 2px;
}
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-panel-alt);
    border: 1px solid var(--bg-panel-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 15px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--accent-crimson);
    box-shadow: 0 0 0 3px rgba(173,15,45,0.1);
    background: var(--bg-white);
}
.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: var(--red-error);
    box-shadow: 0 0 0 3px rgba(211,47,47,0.1);
}
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235A5A5A' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-select option { background: var(--bg-white); color: var(--text-primary); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-error {
    font-size: 13px;
    color: var(--red-error);
    margin-top: 4px;
    display: none;
}
.form-error.visible { display: block; }

/* Floating label effect */
.form-input-wrapper {
    position: relative;
    padding-left: 28px;
}

.form-input-wrapper input,
.form-input-wrapper textarea {
    padding-left: 4px;
}

.form-input-label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
    transition: 0.3s ease all;
    left: 16px;
    top: 14px;
    font-size: 14px;
    transform: translateY(0);
    color: var(--text-primary);
    transition: color 0.3s ease, transform 0.3s ease;
}

.form-input-wrapper input:focus+.form-input-label,
.form-input-wrapper textarea:focus+.form-input-label,
.form-input-wrapper input:valid+.form-input-label,
.form-input-wrapper textarea:valid+.form-input-label {
    transform: translateY(-50%) scale(0.85);
    left: 4px;
    font-size: 11px;
    color: var(--accent-crimson);
}

.form-success {
    padding: 16px 24px;
    background: rgba(46,125,50,0.08);
    border: 1px solid rgba(46,125,50,0.2);
    border-radius: var(--radius-md);
    color: var(--green-success);
    text-align: center;
    font-weight: 500;
}
.form-success .success-icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}
.form-submit-btn { margin-top: 8px; }
.form-submit-btn .spinner {
    display: inline-block;
    width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

/* Enhanced form section styles */
.form-section {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--bg-panel-border);
}
.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.form-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--bg-panel-border);
    cursor: default;
}
.form-section-title i {
    color: var(--accent-crimson);
    font-size: 18px;
}
.form-section-title .section-toggle-label {
    font-weight: 400;
    font-size: 13px;
    color: var(--text-light);
    margin-left: auto;
}
.form-section-collapsible .form-section-title {
    cursor: pointer;
}
.form-section-collapsible .form-section-title:hover {
    color: var(--accent-crimson);
}
.form-section-collapsible .section-toggle-icon {
    transition: transform var(--transition-fast);
}
.form-section-collapsible.collapsed .section-toggle-icon {
    transform: rotate(-90deg);
}
.form-section-collapsible.collapsed .form-section-content {
    display: none;
}
.form-hint {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

/* Phone input wrapper */
.phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.phone-dial-code {
    position: absolute;
    left: 16px;
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
    pointer-events: none;
    z-index: 2;
}
.phone-input-wrapper .form-input {
    padding-left: 70px;
}
.phone-input-wrapper .form-input:focus {
    padding-left: 70px;
}

/* Checkbox group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.checkbox-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--accent-crimson);
    cursor: pointer;
}
.checkbox-label {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}
.checkbox-label .required {
    color: var(--accent-crimson);
}

/* Select disabled state */
.form-select:disabled {
    background: var(--bg-panel-border);
    color: var(--text-light);
    cursor: not-allowed;
}

/* Button loading state */
.gradient-btn .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.gradient-btn.loading .btn-text {
    display: none;
}
.gradient-btn.loading .btn-loading {
    display: inline-flex !important;
}

/* Contact cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.contact-card { text-align: center; }
.contact-card i {
    font-size: 28px;
    color: var(--accent-crimson);
    margin-bottom: 12px;
}
.contact-card h2 { font-size: 16px; margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--text-secondary); }
.contact-card a { color: var(--accent-crimson); }
.contact-card a:hover { text-decoration: underline; }

/* ===========================
   TEAM GRID
   =========================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.team-card { text-align: center; }
.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    position: relative;
}
.team-photo::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0.3;
    filter: blur(8px);
}
.team-card h3 { font-size: 17px; margin-bottom: 4px; }
.team-card .team-role { font-size: 14px; color: var(--accent-crimson); }

/* ===========================
   VALUES GRID
   =========================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.value-card .glass-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.value-card h3 { font-size: 18px; font-weight: 600; }
.value-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.value-read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-crimson);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
}
.value-read-more:hover { text-decoration: underline; }
.value-extra {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.value-extra.open { max-height: 200px; }
.value-extra p {
    padding-top: 12px;
    border-top: 1px solid var(--bg-panel-border);
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}
.about-intro p { font-size: 16px; line-height: 1.8; }
.vision-panel {
    background: var(--bg-white);
    border: 2px solid var(--accent-crimson);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
}
.vision-panel h2 { font-size: 28px; margin-bottom: 16px; }
.vision-panel p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===========================
   PROGRAMMES LANDING
   =========================== */
.programme-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.programme-category-card .glass-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 48px 32px;
    transition: transform var(--transition-base), border-color var(--transition-base);
}
.programme-category-card .gradient-icon-badge {
    width: 72px;
    height: 72px;
    font-size: 28px;
    border-radius: var(--radius-xl);
}
.programme-category-card h3 { font-size: 20px; font-weight: 700; }
.programme-category-card p { font-size: 14px; color: var(--text-secondary); }

/* ===========================
   BLOG DETAIL
   =========================== */
.blog-detail-header { max-width: 800px; margin: 0 auto; }
.blog-detail-header h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.blog-detail-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
}
.blog-detail-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-secondary);
}
.blog-detail-content p { margin-bottom: 20px; }

/* ===========================
   STUDY ABROAD
   =========================== */
.abroad-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.abroad-card .glass-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    padding: 40px 32px;
}
.abroad-card .abroad-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 8px;
}
.abroad-card-title { font-size: 20px; font-weight: 700; margin: 0; }
.abroad-university {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(173, 15, 45, .05);
    color: rgba(32, 32, 42, .72);
    font-size: 13px;
    text-align: left;
}
.abroad-university i {
    color: var(--accent-crimson);
    font-size: 12px;
}
.abroad-card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 6px;
    color: var(--accent-crimson);
    font-size: 13px;
    font-weight: 700;
}
.abroad-card-link i { font-size: 11px; }

/* Application status badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}
.status-badge i { font-size: 8px; }
.badge-received  { background: rgba(13,116,196,.12); color: #0d74c4; }
.badge-pending   { background: rgba(173,15,45,.12); color: var(--accent-crimson); }
.badge-progress  { background: rgba(240,128,0,.14); color: #c4690a; }
.badge-review    { background: rgba(108,99,255,.14); color: #4f43c9; }
.badge-contacted { background: rgba(16,142,73,.14); color: #108e49; }
.badge-resolved  { background: rgba(16,142,73,.14); color: #108e49; }
.badge-closed    { background: rgba(100,110,130,.16); color: #4a5468; }
.status-app-detail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(32,32,42,.08);
}
.status-app-detail div { display: flex; flex-direction: column; gap: 2px; }
.status-app-detail span { font-size: 12px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: .04em; }
.status-app-detail strong { font-size: 14px; color: var(--text-primary); }

/* ===========================
   UTILITY: PROSE
   =========================== */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-size: 24px; margin: 32px 0 12px; }
.prose h3 { font-size: 20px; margin: 24px 0 10px; }
.prose p { margin-bottom: 16px; line-height: 1.8; }
.prose ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.prose ul li { margin-bottom: 6px; }
.prose a { color: var(--accent-crimson); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { text-decoration: underline; text-underline-offset: 2px; }
.about-intro a { color: var(--accent-crimson); text-decoration: underline; text-underline-offset: 2px; }
.about-intro a:hover { text-decoration: underline; text-underline-offset: 2px; }

/* ===========================
   FOOTER
   =========================== */
.site-footer {
    background: #1A1A1A;
    border-top: none;
    padding: 60px 0 0;
    color: rgba(255,255,255,0.6);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.footer-logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    image-rendering: auto;
    filter: brightness(0) invert(1);
}
.footer-logo .logo-icon { background: var(--gradient-primary); }
.footer-tagline { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.75); }
.footer-heading {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li { font-size: 14px; color: rgba(255,255,255,0.75); }
.footer-links li i { width: 16px; margin-right: 8px; color: var(--accent-crimson-light); }
.footer-links a { transition: color var(--transition-fast); }
.footer-links a:hover { color: #fff; }
.footer-newsletter {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.newsletter-form { max-width: 500px; }
.newsletter-input-wrap { display: flex; gap: 8px; }
.newsletter-input-wrap input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-full);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color var(--transition-fast);
}
.newsletter-input-wrap input:focus { border-color: var(--accent-crimson); }
.newsletter-input-wrap input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-btn { padding: 12px 24px; font-size: 14px; }
.newsletter-message {
    font-size: 13px;
    margin-top: 8px;
    min-height: 20px;
}
.newsletter-message.success { color: var(--green-success); }
.newsletter-message.error { color: #EF5350; }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
}
.site-footer .copyright { font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-legal { display: flex; gap: 20px; }
.site-footer .footer-legal a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color var(--transition-fast); }
.site-footer .footer-legal a:hover { color: #fff; }
.text-center .footer-legal a { color: var(--accent-crimson); text-decoration: underline; text-underline-offset: 2px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-fast), border-color var(--transition-fast);
}
.footer-social a:hover {
    color: #fff;
    border-color: var(--accent-crimson);
}

/* ===========================
   APPLY PAGE
   =========================== */
.apply-form-card {
    max-width: 700px;
    margin: 0 auto;
}
.apply-success {
    text-align: center;
    padding: 60px 20px;
}
.apply-success .success-check {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: #fff;
    animation: successPop 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.apply-success h2 { font-size: 28px; margin-bottom: 12px; }
.apply-success p { color: var(--text-secondary); font-size: 16px; }

/* ===========================
   EVENT DETAIL
   =========================== */
.event-detail-content { max-width: 800px; margin: 0 auto; }
.event-detail-content p { margin-bottom: 16px; line-height: 1.8; }
.event-detail-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.event-detail-content ul li { margin-bottom: 6px; }
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-crimson);
    margin-bottom: 24px;
}
.back-link:hover { text-decoration: underline; }

/* ===========================
   Search suggestions (autocomplete)
   =========================== */
.search-suggest {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .12);
    z-index: 100;
    overflow: hidden;
}
.search-suggest-item {
    display: block;
    padding: 12px 18px;
    font-size: 14px;
    color: #1e293b;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, .04);
}
.search-suggest-item:hover {
    background: #f1f5f9;
    color: var(--accent-crimson);
}
.search-suggest-item:last-child { border-bottom: 0; }
