/*
Theme Name: Global University Explorer
Theme URI: https://eduatlashub.com
Author: EduAtlas Hub
Description: A modern university discovery website theme
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: gue
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --blue: #1a56db;
  --blue-dark: #1447c0;
  --blue-light: #eff6ff;
  --navy: #0d1b3e;
  --text: #374151;
  --muted: #6b7280;
  --bg: #f0f4ff;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(26,86,219,0.10);
  --radius: 14px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Manrope', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: 'Manrope', sans-serif; }

/* ── NAVBAR ── */
.gue-nav {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.gue-logo { display: flex; align-items: center; gap: 10px; }
.gue-logo-icon { width: 42px; height: 42px; background: var(--blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; }
.gue-logo-text .top { font-weight: 800; font-size: 15px; color: var(--navy); display: block; line-height: 1.2; }
.gue-logo-text .bot { font-weight: 700; font-size: 15px; color: var(--blue); display: block; line-height: 1.2; }
.gue-nav-links { display: flex; align-items: center; gap: 2px; }
.gue-nav-links > a { font-size: 14px; font-weight: 500; color: var(--text); padding: 8px 14px; border-radius: 8px; transition: background 0.2s, color 0.2s; display: flex; align-items: center; gap: 4px; text-decoration: none; white-space: nowrap; }
.gue-nav-links > a:hover { background: #f3f4f6; color: var(--blue); }
.gue-nav-links > a.active { color: var(--blue); font-weight: 700; position: relative; }
.gue-nav-links > a.active::after { content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 24px; height: 2px; background: var(--blue); border-radius: 2px; }
.nav-dropdown { position: relative; }
.nav-dropdown > a { font-size: 14px; font-weight: 500; color: var(--text); padding: 8px 14px; border-radius: 8px; transition: background 0.2s, color 0.2s; display: flex; align-items: center; gap: 4px; text-decoration: none; white-space: nowrap; }
.nav-dropdown > a:hover { background: #f3f4f6; color: var(--blue); }
.nav-dropdown .dropdown-menu { display: none; position: absolute; top: 100%; left: 0; margin-top: 4px; background: white; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 8px; min-width: 230px; box-shadow: 0 8px 32px rgba(26,86,219,0.12); z-index: 9999; }
.nav-dropdown .dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; font-size: 13px; font-weight: 500; color: var(--text); text-decoration: none; white-space: nowrap; transition: background 0.2s; }
.nav-dropdown .dropdown-menu a:hover { background: var(--blue-light); color: var(--blue); }
.dm-icon { width: 28px; height: 28px; border-radius: 6px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.dropdown-divider { border: none; border-top: 1px solid #f3f4f6; margin: 6px 0; }
.gue-nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-saved { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: var(--text); background: none; border: none; cursor: pointer; padding: 8px 12px; border-radius: 8px; transition: background 0.2s; }
.btn-saved:hover { background: #f3f4f6; }
.btn-login { display: flex; align-items: center; gap: 8px; background: var(--blue); color: white; border: none; font-size: 14px; font-weight: 600; padding: 10px 20px; border-radius: 10px; transition: background 0.2s, transform 0.15s; }
.btn-login:hover { background: var(--blue-dark); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; padding: 8px; color: var(--navy); }
.mobile-nav { display: none; flex-direction: column; background: white; border-bottom: 1px solid var(--border); padding: 12px 24px 20px; position: sticky; top: 68px; z-index: 998; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 15px; font-weight: 500; color: var(--text); padding: 10px 12px; border-radius: 8px; text-decoration: none; transition: background 0.2s; }
.mobile-nav a:hover { background: #f3f4f6; color: var(--blue); }
.mobile-nav-section { font-size: 11px; font-weight: 700; color: #9ca3af; letter-spacing: 1px; text-transform: uppercase; padding: 10px 12px 4px; }

/* ── HERO ── */
.gue-hero { position: relative; min-height: calc(100vh - 68px); background: linear-gradient(135deg, #eef2ff 0%, #f0f4ff 40%, #dde8ff 100%); overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.hero-bg-img { position: absolute; right: 0; top: 0; width: 58%; height: 100%; object-fit: cover; border-radius: 0 0 0 80px; }
.hero-bg-overlay { position: absolute; right: 0; top: 0; width: 58%; height: 100%; background: linear-gradient(to right, #eef2ff 0%, rgba(238,242,255,0.3) 50%, transparent 100%); border-radius: 0 0 0 80px; }
.hero-content { position: relative; z-index: 2; padding: 80px 48px 40px; max-width: 600px; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--blue); margin-bottom: 22px; letter-spacing: 0.5px; animation: fadeUp 0.6s 0.05s ease both; }
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--blue); border-radius: 2px; }
.hero-title { font-size: clamp(38px, 4.5vw, 58px); font-weight: 800; line-height: 1.1; color: var(--navy); margin-bottom: 20px; animation: fadeUp 0.6s 0.15s ease both; }
.hero-title .highlight { color: var(--blue); }
.hero-desc { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 420px; margin-bottom: 36px; animation: fadeUp 0.6s 0.25s ease both; }
.gue-search { background: white; border-radius: 16px; box-shadow: var(--shadow); display: flex; align-items: center; padding: 10px 10px 10px 16px; gap: 2px; max-width: 640px; flex-wrap: wrap; animation: fadeUp 0.6s 0.35s ease both; }
.search-field { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 160px; padding-right: 8px; }
.search-field input { border: none; outline: none; font-size: 14px; font-family: 'Manrope', sans-serif; color: var(--text); background: transparent; width: 100%; }
.search-field input::placeholder { color: #9ca3af; }
.search-sep { width: 1px; height: 28px; background: var(--border); margin: 0 4px; }
.search-dropdown { display: flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 8px; transition: background 0.2s; font-size: 13px; font-weight: 500; color: var(--text); white-space: nowrap; border: none; background: transparent; }
.search-dropdown:hover { background: #f9fafb; }
.btn-search { background: var(--blue); color: white; border: none; font-size: 14px; font-weight: 700; padding: 12px 24px; border-radius: 10px; display: flex; align-items: center; gap: 8px; transition: background 0.2s, transform 0.15s; white-space: nowrap; }
.btn-search:hover { background: var(--blue-dark); transform: translateY(-1px); }
.gue-stats { position: relative; z-index: 2; display: flex; background: rgba(255,255,255,0.88); backdrop-filter: blur(8px); border-radius: 16px; padding: 20px 28px; max-width: 640px; margin: 28px 48px 60px; box-shadow: 0 2px 16px rgba(26,86,219,0.07); animation: fadeUp 0.6s 0.45s ease both; }
.stat-item { flex: 1; display: flex; align-items: center; gap: 12px; padding: 0 16px; border-right: 1px solid var(--border); }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-icon { width: 40px; height: 40px; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blue); }
.stat-num { font-size: 18px; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-label { font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 2px; }

/* ── TRUSTED ── */
.gue-trusted { background: var(--bg); padding: 52px 48px 60px; text-align: center; }
.trusted-label { font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 36px; }
.trusted-logos { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.trusted-logo { display: flex; align-items: center; gap: 10px; opacity: 0.5; transition: opacity 0.25s; }
.trusted-logo:hover { opacity: 1; }

/* ── FEATURED UNIVERSITIES ── */
.featured-unis { padding: 64px 48px; background: white; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.section-title { font-size: 28px; font-weight: 800; color: var(--navy); }
.section-title span { color: var(--blue); }
.section-link { font-size: 14px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.section-link:hover { gap: 8px; }
.uni-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.uni-feat-card { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.uni-feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #dbeafe; }
.uni-feat-banner { height: 100px; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 900; color: white; position: relative; }
.uni-feat-rank { position: absolute; top: 10px; left: 10px; background: rgba(255,255,255,0.2); backdrop-filter: blur(8px); color: white; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.3); }
.uni-feat-save { position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; }
.uni-feat-body { padding: 16px; }
.uni-feat-name { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.uni-feat-location { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.uni-feat-stats { display: flex; gap: 16px; margin-bottom: 12px; }
.uni-feat-stat label { font-size: 10px; color: #9ca3af; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; display: block; }
.uni-feat-stat span { font-size: 14px; font-weight: 800; color: var(--navy); }
.uni-feat-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 14px; }
.uni-tag { font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 20px; }
.tag-blue { background: #eff6ff; color: #1447c0; }
.tag-green { background: #ecfdf5; color: #065f46; }
.tag-purple { background: #f5f3ff; color: #4c1d95; }
.uni-feat-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid #f3f4f6; }
.uni-feat-fee { font-size: 13px; color: var(--muted); }
.uni-feat-fee strong { color: var(--navy); font-weight: 700; }
.btn-view { background: white; color: var(--blue); border: 1.5px solid var(--blue); padding: 7px 16px; border-radius: 8px; font-size: 13px; font-weight: 700; transition: all 0.2s; text-decoration: none; display: inline-block; }
.btn-view:hover { background: var(--blue); color: white; }

/* ── BUDGET SECTION ── */
.budget-section { padding: 64px 48px; background: var(--bg); }
.budget-inner { background: white; border-radius: 24px; padding: 48px; box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.budget-left { }
.budget-eyebrow { font-size: 12px; font-weight: 700; color: var(--blue); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.budget-title { font-size: 32px; font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.budget-title span { color: var(--blue); }
.budget-desc { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.budget-range-wrap { margin-bottom: 24px; }
.budget-range-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.budget-range-label span { font-size: 13px; color: var(--muted); font-weight: 500; }
.budget-range-val { font-size: 22px; font-weight: 800; color: var(--navy); }
.budget-slider { width: 100%; height: 6px; border-radius: 3px; background: #e5e7eb; outline: none; cursor: pointer; accent-color: var(--blue); margin-bottom: 8px; }
.budget-range-labels { display: flex; justify-content: space-between; font-size: 11px; color: #9ca3af; }
.btn-find-unis { background: var(--blue); color: white; border: none; padding: 14px 28px; border-radius: 12px; font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 8px; transition: background 0.2s, transform 0.15s; text-decoration: none; display: inline-flex; }
.btn-find-unis:hover { background: var(--blue-dark); transform: translateY(-2px); }
.budget-right { display: flex; flex-direction: column; gap: 14px; }
.budget-uni-card { border: 1.5px solid var(--border); border-radius: var(--radius); padding: 14px 16px; display: flex; align-items: center; gap: 14px; transition: border-color 0.2s, box-shadow 0.2s; }
.budget-uni-card:hover { border-color: #dbeafe; box-shadow: 0 2px 12px rgba(26,86,219,0.08); }
.budget-uni-logo { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 13px; color: white; flex-shrink: 0; }
.budget-uni-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.budget-uni-cost { font-size: 12px; color: var(--muted); }
.budget-uni-chance { margin-left: auto; text-align: right; }
.budget-uni-chance .pct { font-size: 15px; font-weight: 800; }
.budget-uni-chance .pct.high { color: #16a34a; }
.budget-uni-chance .pct.med { color: #d97706; }
.budget-uni-chance label { font-size: 10px; color: #9ca3af; display: block; }

/* ── ESSAY SECTION ── */
.essay-section { padding: 64px 48px; background: white; }
.essay-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.essay-card { border-radius: 20px; padding: 32px; position: relative; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.essay-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.essay-card-1 { background: linear-gradient(135deg, #0d1b3e, #1a3a6e); color: white; }
.essay-card-2 { background: linear-gradient(135deg, #1a56db, #2563eb); color: white; }
.essay-card-3 { background: linear-gradient(135deg, #0891b2, #0e7490); color: white; }
.essay-card-icon { width: 56px; height: 56px; background: rgba(255,255,255,0.15); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 24px; }
.essay-card-title { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.essay-card-desc { font-size: 14px; opacity: 0.8; line-height: 1.6; margin-bottom: 20px; }
.essay-card-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.essay-card-features li { font-size: 13px; opacity: 0.85; display: flex; align-items: center; gap: 8px; }
.essay-card-features li::before { content: '✓'; background: rgba(255,255,255,0.2); width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; }
.essay-card-price { font-size: 13px; opacity: 0.7; margin-bottom: 16px; }
.essay-card-price strong { font-size: 20px; opacity: 1; font-weight: 800; }
.btn-essay { background: white; border: none; padding: 10px 20px; border-radius: 10px; font-size: 13px; font-weight: 700; transition: opacity 0.2s, transform 0.15s; display: inline-block; text-decoration: none; }
.essay-card-1 .btn-essay { color: #0d1b3e; }
.essay-card-2 .btn-essay { color: #1a56db; }
.essay-card-3 .btn-essay { color: #0891b2; }
.btn-essay:hover { opacity: 0.9; transform: translateY(-1px); }

/* ESSAY CONTACT FORM */
.essay-form-wrap { background: linear-gradient(135deg, #f0f4ff, #e8eeff); border-radius: 24px; padding: 48px; }
.essay-form-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.essay-form-left { }
.essay-form-title { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.essay-form-title span { color: var(--blue); }
.essay-form-desc { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.essay-form-trust { display: flex; flex-direction: column; gap: 12px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon { width: 40px; height: 40px; background: white; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; box-shadow: 0 2px 8px rgba(26,86,219,0.08); }
.trust-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); }
.trust-text span { font-size: 12px; color: var(--muted); }
.essay-form-right { background: white; border-radius: 20px; padding: 32px; box-shadow: var(--shadow); }
.form-title { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.form-subtitle { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--text); display: block; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 1.5px solid var(--border); border-radius: 10px; padding: 11px 14px; font-size: 14px; font-family: 'Manrope', sans-serif; color: var(--text); outline: none; transition: border-color 0.2s; background: #fafafa; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); background: white; }
.form-group textarea { resize: vertical; min-height: 80px; }
.service-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.service-chip { border: 1.5px solid var(--border); border-radius: 20px; padding: 6px 14px; font-size: 12px; font-weight: 600; color: var(--muted); cursor: pointer; transition: all 0.2s; background: white; }
.service-chip:hover, .service-chip.active { background: var(--blue); color: white; border-color: var(--blue); }
.btn-submit { width: 100%; background: var(--blue); color: white; border: none; padding: 14px; border-radius: 12px; font-size: 15px; font-weight: 700; transition: background 0.2s, transform 0.15s; margin-top: 6px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-submit:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ── UNIVERSITY LIST (archive) ── */
.ulist-page { font-family: 'Manrope', sans-serif; background: #fff; min-height: 100vh; padding: 32px 48px; }
.ulist-breadcrumb { font-size: 13px; color: #6b7280; margin-bottom: 8px; }
.ulist-breadcrumb a { color: #6b7280; text-decoration: none; }
.ulist-title { font-size: 32px; font-weight: 800; color: #0d1b3e; margin-bottom: 24px; }
.ulist-filters { display: flex; align-items: center; gap: 10px; padding: 14px 0; border-top: 1px solid #f3f4f6; border-bottom: 1px solid #f3f4f6; flex-wrap: wrap; margin-bottom: 16px; }
.ulist-search { display: flex; align-items: center; gap: 8px; border: 1.5px solid #e5e7eb; border-radius: 10px; padding: 9px 14px; min-width: 220px; background: #fff; }
.ulist-search input { border: none; outline: none; font-size: 14px; font-family: 'Manrope', sans-serif; color: #374151; background: transparent; width: 100%; }
.ulist-select { border: 1.5px solid #e5e7eb; border-radius: 10px; padding: 9px 14px; font-size: 14px; font-family: 'Manrope', sans-serif; color: #374151; background: #fff; outline: none; }
.ulist-btn-filter { margin-left: auto; display: flex; align-items: center; gap: 8px; border: 1.5px solid #1a56db; border-radius: 10px; padding: 9px 18px; background: #fff; font-size: 14px; font-weight: 600; color: #1a56db; }
.ulist-results-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; font-size: 13px; color: #6b7280; }
.ulist-results-bar strong { color: #1a56db; }
.ulist-layout { display: flex; gap: 24px; }
.ulist-sidebar { width: 220px; flex-shrink: 0; }
.ulist-sidebar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.ulist-sidebar-title { font-size: 15px; font-weight: 800; color: #0d1b3e; }
.ulist-sidebar-clear { font-size: 13px; color: #1a56db; font-weight: 600; background: none; border: none; font-family: 'Manrope', sans-serif; }
.ulist-filter-section { margin-bottom: 20px; }
.ulist-filter-title { font-size: 14px; font-weight: 700; color: #0d1b3e; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid #f3f4f6; }
.ulist-filter-search { display: flex; align-items: center; gap: 8px; border: 1.5px solid #e5e7eb; border-radius: 8px; padding: 7px 12px; margin-bottom: 8px; }
.ulist-filter-search input { border: none; outline: none; font-size: 12px; font-family: 'Manrope', sans-serif; background: transparent; width: 100%; color: #374151; }
.ulist-checkbox { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.ulist-checkbox label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #374151; }
.ulist-checkbox input[type="checkbox"] { accent-color: #1a56db; width: 14px; height: 14px; }
.ulist-checkbox-count { font-size: 12px; color: #9ca3af; }
.ulist-show-more { font-size: 13px; color: #1a56db; font-weight: 600; background: none; border: none; font-family: 'Manrope', sans-serif; }
.ulist-list { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.ulist-card { border: 1.5px solid #f3f4f6; border-radius: 14px; overflow: hidden; background: #fff; transition: box-shadow 0.2s, border-color 0.2s; }
.ulist-card:hover { box-shadow: 0 4px 20px rgba(26,86,219,0.1); border-color: #dbeafe; }
.ulist-card-top { display: flex; align-items: stretch; }
.ulist-card-img { width: 130px; height: 100px; object-fit: cover; flex-shrink: 0; display: block; }
.ulist-card-img-placeholder { width: 130px; height: 100px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 18px; color: white; }
.ulist-card-body { flex: 1; padding: 14px 20px; display: flex; align-items: center; }
.ulist-card-logo { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 900; font-size: 11px; flex-shrink: 0; margin-right: 10px; }
.ulist-card-name { font-size: 16px; font-weight: 800; color: #0d1b3e; }
.ulist-card-country { font-size: 12px; color: #6b7280; margin-top: 2px; }
.ulist-card-stats { display: flex; gap: 32px; padding: 0 20px; align-items: center; flex-shrink: 0; }
.ulist-stat-label { font-size: 11px; color: #9ca3af; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; }
.ulist-stat-val { font-size: 15px; font-weight: 800; color: #0d1b3e; margin-top: 2px; }
.ulist-card-save { background: none; border: none; color: #d1d5db; font-size: 20px; padding: 0 16px; }
.ulist-card-bottom { display: flex; align-items: center; justify-content: space-between; padding: 10px 20px; border-top: 1px solid #f9fafb; background: #fafafa; }
.ulist-course-label { font-size: 12px; color: #6b7280; font-weight: 600; margin-right: 8px; }
.ulist-course-tag { display: inline-block; background: #f3f4f6; color: #374151; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; margin-right: 5px; }
.ulist-btn-view { background: white; color: #1a56db; border: 1.5px solid #1a56db; padding: 7px 18px; border-radius: 8px; font-size: 13px; font-weight: 700; font-family: 'Manrope', sans-serif; text-decoration: none; transition: all 0.2s; display: inline-block; }
.ulist-btn-view:hover { background: #1a56db; color: white; }
.ulist-empty { text-align: center; padding: 80px 40px; color: #6b7280; }
.ulist-empty strong { display: block; font-size: 22px; font-weight: 800; color: #0d1b3e; margin-bottom: 10px; }
.ulist-pagination { text-align: center; padding: 32px 0 16px; }
.ulist-pagination a { display: inline-block; padding: 8px 14px; border: 1.5px solid #e5e7eb; border-radius: 8px; font-size: 13px; font-weight: 600; color: #374151; text-decoration: none; margin: 0 3px; }
.ulist-pagination a:hover, .ulist-pagination a.current { background: #1a56db; color: white; border-color: #1a56db; }

/* ── UNIVERSITY DETAIL ── */
.udet { font-family: 'Manrope', sans-serif; background: #fff; min-height: 100vh; }
.udet-breadcrumb { padding: 14px 48px; font-size: 13px; color: #6b7280; }
.udet-breadcrumb a { color: #6b7280; text-decoration: none; }
.udet-breadcrumb a:hover { color: #1a56db; }
.udet-breadcrumb span { margin: 0 6px; }
.udet-top { display: flex; gap: 24px; padding: 0 48px 32px; align-items: flex-start; }
.udet-img-wrap { width: 340px; flex-shrink: 0; border-radius: 16px; overflow: hidden; height: 220px; display: flex; align-items: center; justify-content: center; color: white; font-size: 48px; font-weight: 900; }
.udet-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.udet-info { flex: 1; }
.udet-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.udet-logo { width: 52px; height: 52px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 16px; color: white; }
.udet-name { font-size: 26px; font-weight: 800; color: #0d1b3e; line-height: 1.2; }
.udet-location { font-size: 13px; color: #6b7280; margin-top: 4px; }
.udet-meta { display: flex; gap: 32px; margin-bottom: 16px; padding: 14px 0; border-top: 1px solid #f3f4f6; border-bottom: 1px solid #f3f4f6; flex-wrap: wrap; }
.udet-meta-label { font-size: 11px; color: #9ca3af; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.udet-meta-val { font-size: 15px; font-weight: 700; color: #0d1b3e; margin-top: 3px; }
.udet-desc { font-size: 14px; color: #6b7280; line-height: 1.7; margin-bottom: 18px; max-width: 500px; }
.udet-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-compare { display: flex; align-items: center; gap: 8px; background: #1a56db; color: white; border: none; padding: 10px 20px; border-radius: 10px; font-size: 14px; font-weight: 700; font-family: 'Manrope', sans-serif; }
.btn-save-uni { display: flex; align-items: center; gap: 8px; background: white; color: #374151; border: 1.5px solid #e5e7eb; padding: 10px 18px; border-radius: 10px; font-size: 14px; font-weight: 600; font-family: 'Manrope', sans-serif; }
.udet-cost-box { width: 220px; flex-shrink: 0; border: 1.5px solid #f3f4f6; border-radius: 16px; padding: 20px; }
.udet-cost-label { font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 8px; }
.udet-cost-total { font-size: 28px; font-weight: 800; color: #1a56db; margin-bottom: 16px; }
.udet-cost-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 10px; }
.udet-cost-row span:first-child { color: #6b7280; }
.udet-cost-row span:last-child { font-weight: 700; color: #0d1b3e; }
.udet-cost-note { background: #f0f4ff; border-radius: 8px; padding: 10px 12px; font-size: 11px; color: #6b7280; line-height: 1.5; margin-top: 12px; }
.udet-tabs { display: flex; border-bottom: 2px solid #f3f4f6; padding: 0 48px; overflow-x: auto; }
.udet-tab { display: flex; align-items: center; gap: 6px; padding: 12px 20px; font-size: 14px; font-weight: 600; color: #6b7280; white-space: nowrap; border-bottom: 2px solid transparent; margin-bottom: -2px; }
.udet-tab.active { color: #1a56db; border-bottom-color: #1a56db; }
.udet-body { display: flex; gap: 28px; padding: 32px 48px; }
.udet-body-main { flex: 1; }
.udet-body-side { width: 220px; flex-shrink: 0; }
.udet-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 32px; }
.udet-stat-card { border: 1.5px solid #f3f4f6; border-radius: 14px; padding: 16px; }
.udet-stat-card-label { font-size: 12px; color: #6b7280; font-weight: 600; margin-bottom: 6px; }
.udet-stat-card-val { font-size: 22px; font-weight: 800; color: #1a56db; }
.udet-stat-card-sub { font-size: 11px; color: #9ca3af; margin-top: 4px; }
.udet-section-title { font-size: 18px; font-weight: 800; color: #0d1b3e; margin-bottom: 16px; }
.udet-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.udet-about-text { font-size: 14px; color: #6b7280; line-height: 1.7; }
.udet-fact-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #374151; margin-bottom: 10px; }
.udet-fact-label { color: #9ca3af; min-width: 160px; }
.udet-fact-val { font-weight: 600; color: #0d1b3e; }
.udet-highlight-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #374151; margin-bottom: 10px; }
.udet-highlight-icon { width: 20px; height: 20px; border-radius: 50%; background: #1a56db; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.udet-courses-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.udet-courses-grid { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.udet-course-tag-lg { background: #eff6ff; color: #1a56db; font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 20px; }
.udet-quick-facts { border: 1.5px solid #f3f4f6; border-radius: 16px; padding: 20px; margin-bottom: 20px; }
.udet-qf-title { font-size: 16px; font-weight: 800; color: #0d1b3e; margin-bottom: 16px; }
.udet-qf-row { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; border-bottom: 1px solid #f9fafb; }
.udet-qf-row:last-child { border-bottom: none; }
.udet-qf-label { color: #9ca3af; }
.udet-qf-val { font-weight: 700; color: #0d1b3e; }
.btn-official { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: white; color: #0d1b3e; border: 1.5px solid #e5e7eb; border-radius: 10px; padding: 11px; font-size: 13px; font-weight: 700; font-family: 'Manrope', sans-serif; margin-bottom: 16px; text-decoration: none; }
.udet-ask-box { border: 1.5px solid #f3f4f6; border-radius: 16px; padding: 20px; }
.udet-ask-title { font-size: 15px; font-weight: 800; color: #0d1b3e; margin-bottom: 6px; }
.udet-ask-desc { font-size: 13px; color: #6b7280; margin-bottom: 14px; line-height: 1.5; }
.btn-ask { width: 100%; background: #1a56db; color: white; border: none; padding: 12px; border-radius: 10px; font-size: 14px; font-weight: 700; font-family: 'Manrope', sans-serif; }

/* ── SCHOLARSHIPS PAGE ── */
.sch-page { font-family: 'Manrope', sans-serif; min-height: 100vh; }
.sch-hero { background: linear-gradient(135deg, #0d1b3e, #1a3a6e); padding: 48px; text-align: center; }
.sch-hero-eyebrow { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.6); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.sch-hero-title { font-size: 36px; font-weight: 800; color: white; margin-bottom: 8px; }
.sch-hero-title span { color: #60a5fa; }
.sch-hero-sub { font-size: 15px; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 28px; line-height: 1.6; }
.sch-search-bar { background: white; border-radius: 14px; padding: 10px 10px 10px 16px; display: flex; gap: 8px; align-items: center; max-width: 560px; margin: 0 auto 24px; box-shadow: 0 4px 24px rgba(0,0,0,0.15); }
.sch-search-bar input { border: none; outline: none; font-size: 14px; font-family: 'Manrope', sans-serif; color: #374151; background: transparent; flex: 1; }
.sch-search-bar select { border: none; outline: none; font-size: 13px; font-family: 'Manrope', sans-serif; color: #6b7280; background: transparent; }
.sch-hero-stats { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.sch-hero-stat { background: rgba(255,255,255,0.1); border-radius: 10px; padding: 10px 18px; }
.sch-hero-stat-num { font-size: 18px; font-weight: 800; color: white; }
.sch-hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.6); }
.sch-body { display: flex; background: white; }
.sch-sidebar { width: 220px; flex-shrink: 0; border-right: 1px solid #f3f4f6; padding: 24px; }
.sch-filter-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.sch-filter-title-main { font-size: 14px; font-weight: 800; color: #0d1b3e; }
.sch-filter-clear { font-size: 12px; color: #1a56db; font-weight: 600; background: none; border: none; font-family: 'Manrope', sans-serif; }
.sch-filter-section { margin-bottom: 20px; }
.sch-filter-label { font-size: 12px; font-weight: 700; color: #374151; margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #f3f4f6; }
.sch-filter-item { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; font-size: 13px; color: #374151; }
.sch-filter-item label { display: flex; align-items: center; gap: 7px; }
.sch-filter-item input[type="checkbox"] { accent-color: #1a56db; width: 14px; height: 14px; }
.sch-filter-count { font-size: 11px; color: #9ca3af; }
.sch-list { flex: 1; padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.sch-card { border: 1.5px solid #f3f4f6; border-radius: 14px; padding: 18px; transition: box-shadow 0.2s, border-color 0.2s; }
.sch-card:hover { box-shadow: 0 4px 20px rgba(26,86,219,0.08); border-color: #dbeafe; }
.sch-card-top { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 12px; }
.sch-card-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.sch-card-name { font-size: 15px; font-weight: 800; color: #0d1b3e; margin-bottom: 3px; }
.sch-card-uni { font-size: 12px; color: #6b7280; }
.sch-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.sch-card-bottom { display: flex; align-items: center; justify-content: space-between; }
.sch-amount { font-size: 15px; font-weight: 800; color: #1a56db; }
.sch-deadline { font-size: 11px; color: #9ca3af; margin-top: 2px; }
.btn-apply { background: #1a56db; color: white; border: none; padding: 9px 20px; border-radius: 8px; font-size: 13px; font-weight: 700; font-family: 'Manrope', sans-serif; transition: background 0.2s; }
.btn-apply:hover { background: #1447c0; }

/* ── EXAMS PAGE ── */
.exam-page { font-family: 'Manrope', sans-serif; background: #fff; min-height: 100vh; padding: 32px 48px; }
.exam-page-header { margin-bottom: 36px; }
.exam-page-title { font-size: 32px; font-weight: 800; color: #0d1b3e; margin-bottom: 6px; }
.exam-page-sub { font-size: 15px; color: #6b7280; }
.exam-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-bottom: 48px; }
.exam-card { border: 1.5px solid #f3f4f6; border-radius: 16px; padding: 24px; background: #fff; transition: box-shadow 0.2s, border-color 0.2s; }
.exam-card:hover { box-shadow: 0 4px 20px rgba(26,86,219,0.1); border-color: #dbeafe; }
.exam-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.exam-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.exam-name { font-size: 18px; font-weight: 800; color: #0d1b3e; }
.exam-fullname { font-size: 12px; color: #6b7280; margin-top: 2px; }
.exam-desc { font-size: 13px; color: #6b7280; line-height: 1.6; margin-bottom: 16px; }
.exam-links { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.exam-link { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #374151; }
.exam-explore { font-size: 13px; font-weight: 700; color: #1a56db; text-decoration: none; }
.exam-banner { background: linear-gradient(135deg, #1a56db, #0d1b3e); border-radius: 16px; padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.exam-banner-text { color: white; }
.exam-banner-title { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.exam-banner-desc { font-size: 14px; opacity: 0.8; }
.exam-banner-btn { background: white; color: #1a56db; border: none; padding: 12px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; font-family: 'Manrope', sans-serif; text-decoration: none; display: inline-block; }

/* ── BLOGS PAGE ── */
.blog-page { font-family: 'Manrope', sans-serif; background: #fff; min-height: 100vh; }
.blog-page-header { padding: 32px 48px 20px; border-bottom: 1px solid #f3f4f6; }
.blog-page-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.blog-page-title { font-size: 28px; font-weight: 800; color: #0d1b3e; }
.blog-view-all { font-size: 14px; color: #1a56db; font-weight: 600; text-decoration: none; }
.blog-page-sub { font-size: 14px; color: #6b7280; }
.blog-cats { display: flex; gap: 8px; padding: 14px 48px; border-bottom: 1px solid #f3f4f6; flex-wrap: wrap; }
.blog-cat { font-size: 13px; padding: 5px 14px; border-radius: 20px; border: 1.5px solid #e5e7eb; color: #6b7280; cursor: pointer; transition: all 0.2s; background: white; font-family: 'Manrope', sans-serif; }
.blog-cat.active, .blog-cat:hover { background: #1a56db; color: white; border-color: #1a56db; }
.blog-featured { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid #f3f4f6; }
.blog-feat-main { border-right: 1px solid #f3f4f6; padding: 24px 48px; }
.blog-feat-img { height: 180px; background: linear-gradient(135deg, #1a56db, #0d1b3e); border-radius: 12px; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-feat-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-feat-cat { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; background: #eff6ff; color: #1a56db; margin-bottom: 10px; letter-spacing: 0.5px; }
.blog-feat-title { font-size: 18px; font-weight: 800; color: #0d1b3e; line-height: 1.3; margin-bottom: 8px; }
.blog-feat-desc { font-size: 13px; color: #6b7280; line-height: 1.6; margin-bottom: 12px; }
.blog-feat-meta { font-size: 12px; color: #9ca3af; display: flex; align-items: center; gap: 8px; }
.blog-side-posts { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.blog-side-post { display: flex; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid #f9fafb; }
.blog-side-post:last-child { border-bottom: none; padding-bottom: 0; }
.blog-side-img { width: 64px; height: 64px; border-radius: 10px; flex-shrink: 0; object-fit: cover; display: block; }
.blog-side-img-placeholder { width: 64px; height: 64px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.blog-side-cat { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px; display: inline-block; margin-bottom: 5px; letter-spacing: 0.4px; }
.blog-side-title { font-size: 13px; font-weight: 700; color: #0d1b3e; line-height: 1.3; margin-bottom: 4px; }
.blog-side-meta { font-size: 11px; color: #9ca3af; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #f3f4f6; }
.blog-grid-item { padding: 20px 24px; border-right: 1px solid #f3f4f6; }
.blog-grid-item:last-child { border-right: none; }
.blog-grid-img { height: 100px; border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.blog-grid-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-grid-img-placeholder { height: 100%; display: flex; align-items: center; justify-content: center; border-radius: 10px; }
.blog-grid-cat { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px; display: inline-block; margin-bottom: 6px; letter-spacing: 0.4px; }
.blog-grid-title { font-size: 13px; font-weight: 700; color: #0d1b3e; line-height: 1.3; margin-bottom: 6px; }
.blog-grid-meta { font-size: 11px; color: #9ca3af; margin-bottom: 8px; }
.blog-grid-author { display: flex; align-items: center; gap: 6px; }
.blog-grid-avatar { width: 20px; height: 20px; border-radius: 50%; background: #e5e7eb; }
.blog-grid-author-name { font-size: 11px; color: #6b7280; font-weight: 500; }

/* ── FOOTER ── */
.gue-footer { background: #0d1b3e; color: white; padding: 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-top: 12px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; text-decoration: none; transition: background 0.2s; }
.footer-social a:hover { background: rgba(255,255,255,0.2); }
.footer-col-title { font-size: 13px; font-weight: 700; color: white; margin-bottom: 14px; letter-spacing: 0.5px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .gue-nav { padding: 0 20px; }
  .gue-nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-bg-img, .hero-bg-overlay { width: 100%; border-radius: 0; opacity: 0.15; }
  .hero-content { padding: 48px 24px 32px; max-width: 100%; }
  .gue-stats { margin: 20px 24px 40px; flex-wrap: wrap; gap: 14px; }
  .stat-item { border-right: none; padding: 0; min-width: 120px; }
  .gue-trusted { padding: 40px 24px; }
  .featured-unis { padding: 40px 24px; }
  .uni-cards-grid { grid-template-columns: 1fr; }
  .budget-section { padding: 40px 24px; }
  .budget-inner { grid-template-columns: 1fr; gap: 28px; }
  .essay-section { padding: 40px 24px; }
  .essay-cards-grid { grid-template-columns: 1fr; }
  .essay-form-inner { grid-template-columns: 1fr; }
  .ulist-page { padding: 24px 16px; }
  .ulist-sidebar { display: none; }
  .udet-top { flex-direction: column; padding: 0 16px 24px; }
  .udet-img-wrap { width: 100%; }
  .udet-cost-box { width: 100%; }
  .udet-body { flex-direction: column; padding: 24px 16px; }
  .udet-body-side { width: 100%; }
  .udet-stats-row { grid-template-columns: repeat(2,1fr); }
  .udet-about-grid { grid-template-columns: 1fr; }
  .sch-hero { padding: 32px 24px; }
  .sch-body { flex-direction: column; }
  .sch-sidebar { width: 100%; border-right: none; border-bottom: 1px solid #f3f4f6; }
  .blog-page-header { padding: 24px; }
  .blog-cats { padding: 12px 24px; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-feat-main { border-right: none; padding: 20px 24px; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .exam-page { padding: 24px 16px; }
}
/* ===== MOBILE NAV FIX ===== */
#mobileNav {
  display: none;
  flex-direction: column;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 12px 24px 20px;
  position: sticky;
  top: 68px;
  z-index: 998;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
#mobileNav.open {
  display: flex !important;
}
#mobileNav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  display: block;
}
#mobileNav a:hover {
  background: #f3f4f6;
  color: var(--blue);
}
#mobileNav .mobile-nav-section {
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 12px 4px;
  border: none;
  background: none;
}
/* ===== FONT WEIGHT FIX ===== */
body {
  font-weight: 500 !important;
  color: #1a1a2e !important;
  -webkit-font-smoothing: antialiased;
}
.gue-nav-links > a,
.nav-dropdown > a {
  font-weight: 600 !important;
  color: #1a1a2e !important;
}
p, span, div, label, li {
  color: #2d2d2d;
}
.ulist-card-name,
.exam-name,
.sch-card-name {
  font-weight: 800 !important;
  color: #0d1b3e !important;
}
.exam-desc,
.sch-card-uni,
.ulist-card-country {
  font-weight: 500 !important;
  color: #374151 !important;
}
.ulist-checkbox label,
.sch-filter-item label {
  font-weight: 600 !important;
  color: #1a1a2e !important;
}
/* ===== EXAM PAGE FONT FIX ===== */
.exam-fullname {
  font-weight: 600 !important;
  color: #374151 !important;
}
.exam-desc {
  font-weight: 500 !important;
  color: #1f2937 !important;
}
.exam-link {
  font-weight: 500 !important;
  color: #374151 !important;
}
.exam-link span,
.exam-link svg {
  color: #374151 !important;
}
/* Score range, mode, format pills */
.archive-exams .text-sm,
.archive-exams span {
  font-weight: 500 !important;
  color: #374151 !important;
}