@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ============================================================
   SMFU — Smart Money Forex University
   Global Brand & Design System
   Author: Antigravity / JeehTech
   ============================================================ */

/* ── 1. CSS Custom Properties ── */
:root {
    --green:          #1f9d55;
    --green-light:    #27c468;
    --green-glow:     rgba(31, 157, 85, 0.25);
    --blue:           #00adef;
    --blue-light:     #33c4ff;
    --blue-glow:      rgba(0, 173, 239, 0.20);
    --yellow:         #fcd116;
    --yellow-glow:    rgba(252, 209, 22, 0.20);

    --bg-base:        #080c14;
    --bg-surface:     #0d1422;
    --bg-elevated:    #111827;
    --bg-card:        rgba(255, 255, 255, 0.04);
    --bg-card-hover:  rgba(255, 255, 255, 0.07);

    --border-subtle:  rgba(255, 255, 255, 0.07);
    --border-card:    rgba(255, 255, 255, 0.10);

    --text-primary:   #f0f4ff;
    --text-secondary: #8b95a8;
    --text-muted:     #556070;

    --font:           'Plus Jakarta Sans', system-ui, sans-serif;
    --radius-sm:      8px;
    --radius-md:      14px;
    --radius-lg:      22px;
    --radius-xl:      32px;

    --transition:     all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card:    0 4px 32px rgba(0,0,0,0.4);
    --shadow-glow-g:  0 0 30px var(--green-glow);
    --shadow-glow-b:  0 0 30px var(--blue-glow);
}

/* ── 2. Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--blue-light); }

img { max-width: 100%; height: auto; display: block; }

/* ── 3. Glassmorphism Card ── */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}
.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255,255,255,0.16);
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

/* ── 4. Navbar ── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 12, 20, 0.85);
    border-bottom: 1px solid var(--border-subtle);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.9rem 0;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.navbar .logo-wrap img { height: 42px; width: auto; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}
.nav-links a {
    color: var(--text-secondary);
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.92rem;
    transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
    background: rgba(255,255,255,0.06);
}
.nav-links a.btn-portal {
    background: var(--green);
    color: #fff;
    padding: 0.45rem 1.2rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}
.nav-links a.btn-portal:hover {
    background: var(--green-light);
    box-shadow: var(--shadow-glow-g);
    transform: translateY(-1px);
}
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    color: var(--text-primary);
    font-size: 1.4rem;
}

/* ── 5. Utility Buttons ── */
.btn-smfu {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}
.btn-green {
    background: var(--green);
    color: #fff;
}
.btn-green:hover {
    background: var(--green-light);
    box-shadow: var(--shadow-glow-g);
    color: #fff;
    transform: translateY(-2px);
}
.btn-blue {
    background: var(--blue);
    color: #fff;
}
.btn-blue:hover {
    background: var(--blue-light);
    box-shadow: var(--shadow-glow-b);
    color: #fff;
    transform: translateY(-2px);
}
.btn-outline-green {
    background: transparent;
    color: var(--green);
    border: 1.5px solid var(--green);
}
.btn-outline-green:hover {
    background: var(--green);
    color: #fff;
    transform: translateY(-2px);
}
.btn-yellow {
    background: var(--yellow);
    color: #111;
    font-weight: 700;
}
.btn-yellow:hover {
    box-shadow: var(--shadow-glow-g);
    transform: translateY(-2px);
}

/* ── 6. Badge / Pills ── */
.badge-green {
    display: inline-block;
    background: rgba(31,157,85,0.18);
    color: var(--green-light);
    border: 1px solid rgba(31,157,85,0.4);
    border-radius: 999px;
    padding: 0.25rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.badge-blue {
    display: inline-block;
    background: rgba(0,173,239,0.15);
    color: var(--blue-light);
    border: 1px solid rgba(0,173,239,0.35);
    border-radius: 999px;
    padding: 0.25rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.badge-yellow {
    display: inline-block;
    background: rgba(252,209,22,0.15);
    color: var(--yellow);
    border: 1px solid rgba(252,209,22,0.35);
    border-radius: 999px;
    padding: 0.25rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.badge-lock {
    background: rgba(252,209,22,0.12);
    color: var(--yellow);
    border: 1px solid rgba(252,209,22,0.3);
    border-radius: 999px;
    padding: 0.2rem 0.7rem;
    font-size: 0.76rem;
    font-weight: 700;
}

/* ── 7. Typography ── */
.gradient-text {
    background: linear-gradient(135deg, var(--green), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green);
}
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; }
.text-muted  { color: var(--text-muted) !important; }
.text-secondary { color: var(--text-secondary) !important; }

/* ── 8. Containers & Layout ── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 5rem 0; }

/* ── 9. Hero Section ── */
.hero-section {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 7rem 0 5rem;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 10% 30%, rgba(31,157,85,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 70%, rgba(0,173,239,0.08) 0%, transparent 60%),
        var(--bg-base);
    z-index: 0;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black, transparent);
    z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-headline {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-top: 1.25rem;
    line-height: 1.75;
}

/* Waitlist Form */
.waitlist-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    box-shadow: 0 8px 48px rgba(0,0,0,0.5);
}
.form-group { margin-bottom: 1rem; }
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-control {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1.5px solid var(--border-card);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    padding: 0.7rem 1rem;
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--green-glow);
    background: rgba(255,255,255,0.07);
}
.form-control::placeholder { color: var(--text-muted); }
.form-control.is-invalid { border-color: #f05252; }
.invalid-feedback { color: #f05252; font-size: 0.82rem; margin-top: 0.3rem; }

/* ── 10. Forex Ticker Strip ── */
.ticker-strip {
    background: rgba(31,157,85,0.06);
    border-top: 1px solid rgba(31,157,85,0.2);
    border-bottom: 1px solid rgba(31,157,85,0.2);
    overflow: hidden;
    padding: 0.6rem 0;
    white-space: nowrap;
}
.ticker-track {
    display: inline-flex;
    gap: 3rem;
    animation: tickerScroll 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}
.ticker-item .pair  { color: var(--text-secondary); font-weight: 500; }
.ticker-item .up    { color: var(--green-light); }
.ticker-item .down  { color: #f05252; }
@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── 11. Feature Cards (Home) ── */
.feature-card {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    transition: var(--transition);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    border-radius: 50%;
    opacity: 0.06;
    transition: var(--transition);
}
.feature-card.fc-green::before { background: var(--green); }
.feature-card.fc-blue::before  { background: var(--blue);  }
.feature-card.fc-yellow::before{ background: var(--yellow);}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.18); }
.feature-card:hover::before { opacity: 0.14; width: 180px; height: 180px; top: -60px; right: -60px; }
.feature-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}
.fi-green  { background: rgba(31,157,85,0.15);  color: var(--green);  }
.fi-blue   { background: rgba(0,173,239,0.15);  color: var(--blue);   }
.fi-yellow { background: rgba(252,209,22,0.15); color: var(--yellow); }

/* ── 12. News Cards ── */
.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.news-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.news-card-body { padding: 1.25rem; }
.news-card-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
    margin-bottom: 0.5rem;
}
.news-card-title {
    font-size: 0.97rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.news-card-meta { font-size: 0.78rem; color: var(--text-muted); }

/* ── 13. Section Grid (3-col) ── */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1024px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* ── 14. Course Card ── */
.course-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.course-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.16); }
.course-card-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--bg-elevated), #1a2535);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    font-size: 2rem;
}
.course-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.course-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.course-card-meta  { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; }
.course-card-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.course-locked { opacity: 0.6; }

/* ── 15. Progress Bar ── */
.smfu-progress-wrap { margin-bottom: 0.5rem; }
.smfu-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}
.smfu-progress {
    width: 100%;
    height: 7px;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    overflow: hidden;
}
.smfu-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--blue));
    border-radius: 999px;
    transition: width 1s ease;
}

/* ── 16. Video Player ── */
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ── 17. Student App Layout (sidebar) ── */
.student-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100svh;
    background: var(--bg-base);
}
.student-sidebar {
    background: var(--bg-surface);
    border-right: 1px solid var(--border-subtle);
    padding: 2rem 1.25rem;
    position: sticky;
    top: 0;
    height: 100svh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.sidebar-logo { margin-bottom: 2rem; }
.sidebar-logo img { height: 36px; }
.sidebar-avatar-wrap { text-align: center; margin-bottom: 1.5rem; }
.sidebar-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--blue));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; font-weight: 800;
    color: #fff;
    margin: 0 auto 0.75rem;
    border: 3px solid rgba(31,157,85,0.4);
    box-shadow: 0 0 16px var(--green-glow);
}
.sidebar-name { font-size: 0.97rem; font-weight: 700; }
.sidebar-email { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.15rem; }
.sidebar-nav { list-style: none; margin-top: 1.5rem; flex: 1; }
.sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.91rem;
    font-weight: 500;
    transition: var(--transition);
    margin-bottom: 0.15rem;
}
.sidebar-nav li a:hover,
.sidebar-nav li.active a {
    color: var(--text-primary);
    background: rgba(31,157,85,0.12);
}
.sidebar-nav li.active a { color: var(--green-light); border-left: 3px solid var(--green); }
.sidebar-nav li a i { width: 18px; text-align: center; }
.student-main { padding: 2.5rem; overflow-x: hidden; }
.student-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
}
.student-page-title { font-size: 1.5rem; font-weight: 800; }

/* ── 18. Tabs ── */
.smfu-tabs {
    display: flex;
    gap: 0.25rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.25rem;
    margin-bottom: 2rem;
    width: fit-content;
}
.smfu-tab {
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    border: none;
    background: transparent;
    transition: var(--transition);
}
.smfu-tab.active {
    background: var(--green);
    color: #fff;
}
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ── 19. Auth Forms ── */
.auth-page {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse 60% 60% at 20% 40%, rgba(31,157,85,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 60%, rgba(0,173,239,0.06) 0%, transparent 60%),
        var(--bg-base);
    padding: 2rem 1rem;
}
.auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.auth-header { text-align: center; margin-bottom: 2rem; }
.auth-header .auth-logo { height: 44px; margin: 0 auto 1.25rem; }
.auth-header h1 { font-size: 1.5rem; }
.auth-header p  { color: var(--text-secondary); font-size: 0.9rem; margin-top: 0.4rem; }
.auth-divider {
    display: flex; align-items: center; gap: 0.75rem;
    color: var(--text-muted); font-size: 0.82rem; margin: 1.25rem 0;
}
.auth-divider::before, .auth-divider::after {
    content: ''; flex: 1;
    height: 1px; background: var(--border-subtle);
}
.auth-footer { text-align: center; margin-top: 1.25rem; font-size: 0.88rem; color: var(--text-secondary); }
.auth-footer a { color: var(--green-light); font-weight: 600; }

/* ── 20. History Table ── */
.smfu-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.smfu-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-subtle);
}
.smfu-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: var(--text-secondary);
    vertical-align: middle;
}
.smfu-table tr:hover td { background: rgba(255,255,255,0.03); }

/* ── 21. Alert/Flash ── */
.alert-success {
    background: rgba(31,157,85,0.12);
    border: 1px solid rgba(31,157,85,0.3);
    color: var(--green-light);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.1rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}
.alert-error {
    background: rgba(240,82,82,0.1);
    border: 1px solid rgba(240,82,82,0.3);
    color: #f87171;
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.1rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

/* ── 22. Stat Cards (Dashboard) ── */
.stat-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.stat-icon {
    width: 48px; height: 48px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
}
.stat-value { font-size: 1.6rem; font-weight: 800; }
.stat-label { font-size: 0.8rem; color: var(--text-secondary); margin-top: 0.15rem; }

/* ── 23. Page Hero (inner pages) ── */
.page-hero {
    padding: 6rem 0 4rem;
    text-align: center;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(31,157,85,0.08) 0%, transparent 70%),
        var(--bg-base);
    border-bottom: 1px solid var(--border-subtle);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
.page-hero p  { color: var(--text-secondary); font-size: 1.05rem; max-width: 560px; margin: 1rem auto 0; }

/* ── 24. eBook Card ── */
.ebook-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: var(--transition);
}
.ebook-card:hover { border-color: rgba(255,255,255,0.16); transform: translateY(-3px); }
.ebook-thumb {
    width: 70px; height: 96px; border-radius: 6px;
    background: linear-gradient(160deg, #1a2535, #0a1020);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--yellow); flex-shrink: 0;
    box-shadow: 3px 3px 12px rgba(0,0,0,0.4);
}
.ebook-body { flex: 1; }
.ebook-title { font-size: 0.97rem; font-weight: 700; margin-bottom: 0.4rem; }
.ebook-desc  { font-size: 0.83rem; color: var(--text-secondary); margin-bottom: 0.75rem; }

/* ── 25. Blog Card ── */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.blog-card-header {
    height: 180px;
    background: linear-gradient(135deg, #0d1422, #1a2535);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
}
.blog-card-body { padding: 1.25rem; }
.blog-tag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue); margin-bottom: 0.5rem; }
.blog-title { font-size: 1rem; font-weight: 700; line-height: 1.45; margin-bottom: 0.6rem; }
.blog-excerpt { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 0.9rem; }
.blog-meta { font-size: 0.78rem; color: var(--text-muted); display: flex; gap: 1rem; align-items: center; }

/* ── 26. Contact Form ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}
.contact-info-item {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.75rem;
}
.contact-info-icon {
    width: 44px; height: 44px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-info-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); }
.contact-info-value { font-size: 0.97rem; font-weight: 600; margin-top: 0.2rem; }

/* ── 27. Footer ── */
.site-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin-top: 0.75rem; max-width: 280px; }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li + li { margin-top: 0.55rem; }
.footer-col ul li a { color: var(--text-secondary); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--green-light); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.82rem;
    color: var(--text-muted);
}
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-subtle);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}
.social-links a:hover { background: var(--green); color: #fff; border-color: var(--green); }

/* ── 28. About Page ── */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.value-card {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    display: flex; gap: 1rem; align-items: flex-start;
}
.value-icon { font-size: 1.5rem; margin-top: 0.1rem; flex-shrink: 0; }

/* ── 29. Empty State ── */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}
.empty-state i { font-size: 3rem; margin-bottom: 1rem; color: var(--text-muted); }
.empty-state p { font-size: 0.95rem; }

/* ── 30. Responsive ── */
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid  { grid-template-columns: 1fr 1fr; }
    .mission-grid { grid-template-columns: 1fr; gap: 2rem; }
    .student-layout { display: block; }
    .student-sidebar {
        transform: translateX(-100%);
        position: fixed;
        z-index: 1000;
        transition: transform 0.3s ease;
        width: 260px;
    }
    .student-sidebar.show-mobile {
        transform: translateX(0);
    }
    .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem;
    }
    .mobile-only { display: block !important; }
    #sidebarToggleBtn { display: block !important; }
}

@media (min-width: 1025px) {
    .mobile-only { display: none !important; }
    #sidebarToggleBtn { display: none !important; }
}
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg-surface); padding: 1rem; border-bottom: 1px solid var(--border-subtle); }
    .nav-links.open { display: flex; }
    .nav-hamburger { display: block; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .hero-section { padding: 5rem 0 3rem; }
}
/* ── 31. Components ── */
.currency-switcher {
    background: #111827 !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 0.85rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill=\"white\" height=\"24\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7 10l5 5 5-5z\"/><path d=\"M0 0h24v24H0z\" fill=\"none\"/></svg>');
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 24px;
}
.currency-switcher option {
    background: #111827;
    color: #fff;
    padding: 10px;
}
.currency-switcher:focus {
    border-color: var(--green);
    outline: none;
}
