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

:root {
  --navy: #2F384E;
  --navy-dark: #1e2535;
  --cyan: #30D5F7;
  --cyan-light: #8EEEFF;
  --cyan-pale: #F1FCFE;
  --white: #ffffff;
  --gray-100: #f4f7f9;
  --gray-200: #e4eef5;
  --gray-400: #aab8c8;
  --gray-600: #667788;
  --text-dark: #2F384E;
  --text-muted: #667788;
  --green: #1b8a5a;
  --green-light: #e0f5ec;
  --amber: #f0a500;
  --amber-light: #fff3e0;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 4px rgba(47,56,78,0.08);
  --shadow-md: 0 4px 16px rgba(47,56,78,0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--gray-100); color: var(--text-dark); font-size: 15px; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── UTILITIES ─────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; }
.section-label { color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.section-title { color: var(--navy); font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; line-height: 1.2; }
.section-sub { color: var(--text-muted); font-size: 15px; line-height: 1.7; max-width: 560px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn { display: inline-block; border-radius: 30px; padding: 11px 28px; font-size: 14px; font-weight: 700; cursor: pointer; transition: transform 0.15s, box-shadow 0.15s; border: none; font-family: 'Nunito', sans-serif; text-align: center; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--cyan); color: var(--navy); }
.btn-primary:hover { background: #22c4e6; }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--cyan-light); }
.btn-outline:hover { background: rgba(142,238,255,0.1); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); }
.btn-ghost { background: transparent; color: var(--text-muted); border: 1px solid var(--gray-200); }
.btn-ghost:hover { background: var(--gray-200); }
.btn-sm { padding: 7px 18px; font-size: 12px; }
.btn-block { width: 100%; display: block; text-align: center; }

/* ─── NAV ─────────────────────────────────────────────────── */
.navbar { background: var(--navy); height: 68px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 12px rgba(0,0,0,0.18); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { height: 42px; width: auto; max-width: 160px; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name { color: var(--white); font-size: 17px; font-weight: 800; line-height: 1; }
.nav-logo-sub { color: var(--cyan-light); font-size: 8px; letter-spacing: 1.5px; }
.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a { color: rgba(241,252,254,0.85); font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: var(--radius-sm); transition: color 0.2s, background 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--cyan); background: rgba(48,213,247,0.08); text-decoration: none; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-portal { background: transparent; color: var(--cyan-light); border: 1px solid rgba(142,238,255,0.5); border-radius: 20px; padding: 6px 16px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: 'Nunito',sans-serif; transition: background 0.2s; }
.nav-portal:hover { background: rgba(142,238,255,0.1); }
.nav-cta { background: var(--cyan); color: var(--navy); border: none; border-radius: 20px; padding: 8px 20px; font-size: 13px; font-weight: 800; cursor: pointer; font-family: 'Nunito',sans-serif; transition: transform 0.15s; }
.nav-cta:hover { transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero { background: var(--navy); padding: 5rem 0 4rem; overflow: hidden; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 3rem; align-items: center; }
.hero-badge { display: inline-block; background: rgba(48,213,247,0.15); color: var(--cyan); border-radius: 20px; padding: 5px 16px; font-size: 11px; font-weight: 800; letter-spacing: 1.5px; margin-bottom: 1.2rem; }
.hero h1 { color: var(--white); font-size: 2.8rem; font-weight: 800; line-height: 1.15; margin-bottom: 1rem; }
.hero h1 span { color: var(--cyan); }
.hero-p { color: var(--cyan-light); font-size: 15px; line-height: 1.75; margin-bottom: 1.8rem; max-width: 480px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-stats { display: flex; gap: 2rem; }
.stat-num { color: var(--cyan); font-size: 1.6rem; font-weight: 800; }
.stat-label { color: var(--cyan-light); font-size: 11px; font-weight: 600; }

.hero-card { background: rgba(48,213,247,0.09); border-radius: var(--radius-lg); border: 1px solid rgba(48,213,247,0.25); padding: 1.6rem; }
.hero-card-title { color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: 1.5px; margin-bottom: 1.2rem; }
.hc-label { color: var(--cyan-pale); font-size: 12px; font-weight: 600; margin-bottom: 5px; display: block; }
.hc-field { margin-bottom: 12px; }
.hc-select { width: 100%; background: rgba(255,255,255,0.1); border: 1px solid rgba(48,213,247,0.35); color: var(--cyan-pale); border-radius: var(--radius-sm); padding: 10px 13px; font-size: 13px; font-family: 'Nunito',sans-serif; -webkit-appearance: none; appearance: none; cursor: pointer; }
.hc-select option { background: var(--navy); color: var(--cyan-pale); }

/* ─── CARDS ────────────────────────────────────────────────── */
.card { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--gray-200); padding: 1.5rem; }
.card-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--cyan-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.card-icon svg { width: 22px; height: 22px; stroke: var(--cyan); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { color: var(--navy); font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.card p { color: var(--text-muted); font-size: 13px; line-height: 1.65; }

/* ─── DESTINATION CARDS ─────────────────────────────────────── */
.dest-card { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--gray-200); padding: 1.2rem 1rem; text-align: center; cursor: pointer; transition: border-color 0.2s, transform 0.2s; }
.dest-card:hover { border-color: var(--cyan); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.dest-flag { margin-bottom: 8px; display: flex; align-items: center; justify-content: center; min-height: 36px; }
.dest-name { color: var(--navy); font-size: 13px; font-weight: 700; }
.dest-tag { color: var(--cyan); font-size: 11px; margin-top: 3px; }

/* ─── BLOG CARDS ────────────────────────────────────────────── */
.blog-card { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--gray-200); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-thumb { height: 160px; background: linear-gradient(135deg, var(--cyan), var(--navy)); display: flex; align-items: center; justify-content: center; }
.blog-cat { background: rgba(255,255,255,0.2); color: var(--white); border-radius: 20px; padding: 4px 12px; font-size: 11px; font-weight: 700; }
.blog-body { padding: 1.2rem; }
.blog-meta { color: var(--gray-400); font-size: 11px; margin-bottom: 6px; }
.blog-title { color: var(--navy); font-size: 14px; font-weight: 700; line-height: 1.5; margin-bottom: 8px; }
.blog-read { color: var(--cyan); font-size: 12px; font-weight: 700; }

/* ─── STEPS ROW ─────────────────────────────────────────────── */
.steps-row { display: flex; align-items: flex-start; justify-content: center; gap: 0; flex-wrap: wrap; }
.step-item { text-align: center; flex: 1; min-width: 120px; position: relative; }
.step-item:not(:last-child)::after { content: ''; position: absolute; top: 21px; left: 60%; width: 80%; height: 2px; background: linear-gradient(to right, var(--cyan), rgba(48,213,247,0.2)); }
.step-circle { width: 44px; height: 44px; border-radius: 50%; background: var(--cyan); margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 14px; font-weight: 800; }
.step-label { color: var(--navy); font-size: 11px; font-weight: 700; line-height: 1.4; }

/* ─── DARK SECTION ──────────────────────────────────────────── */
.section-dark { background: var(--navy); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-sub { color: var(--cyan-light); }
.section-dark .section-label { color: var(--cyan-light); }

/* ─── SCORE BARS ────────────────────────────────────────────── */
.score-bar-bg { background: #d8f2fa; border-radius: 6px; height: 8px; overflow: hidden; }
.score-bar-fill { height: 8px; border-radius: 6px; background: var(--cyan); transition: width 0.6s ease; }

/* ─── MATCH RESULT CARD ─────────────────────────────────────── */
.match-card { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--gray-200); padding: 1rem 1.2rem; display: flex; align-items: center; gap: 14px; margin-bottom: 10px; transition: border-color 0.2s; }
.match-card:hover { border-color: var(--cyan); }
.match-flag { flex-shrink: 0; display: flex; align-items: center; width: 40px; }
.match-info { flex: 1; }
.match-country { color: var(--navy); font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.match-unis { color: var(--text-muted); font-size: 11px; margin-bottom: 6px; }
.match-pct { color: var(--cyan); font-size: 1.2rem; font-weight: 800; text-align: right; }
.match-pct-lbl { color: var(--gray-400); font-size: 10px; text-align: right; }
.badge { display: inline-block; border-radius: 12px; padding: 3px 10px; font-size: 10px; font-weight: 800; }
.badge-strong { background: var(--green-light); color: var(--green); }
.badge-good { background: #e4f0ff; color: #1a4fa0; }
.badge-partial { background: var(--amber-light); color: #8a4f00; }

/* ─── FORM ELEMENTS ─────────────────────────────────────────── */
.form-group { position: relative; margin-bottom: 1rem; }
.form-label { display: block; color: var(--navy); font-size: 13px; font-weight: 700; margin-bottom: 5px; }
.form-input, .form-select, .form-textarea { width: 100%; background: var(--white); border: 1.5px solid var(--gray-200); color: var(--text-dark); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 13px; font-family: 'Nunito',sans-serif; transition: border-color 0.2s, box-shadow 0.2s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(48,213,247,0.12); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-400); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
/* Validation error state */
.field-error { color: #e24b4a; font-size: 11px; font-weight: 700; margin-top: 4px; display: block; min-height: 16px; }

/* ─── QUIZ STYLES ───────────────────────────────────────────── */
.quiz-progress-wrap { background: var(--navy); padding: 1rem 0; }
.quiz-steps-row { display: flex; align-items: center; justify-content: center; gap: 0; }
.quiz-step-col { display: flex; flex-direction: column; align-items: center; }
.quiz-step-dot { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; border: 2px solid rgba(142,238,255,0.3); color: var(--cyan-light); background: transparent; transition: all 0.3s; }
.quiz-step-dot.active { background: var(--cyan); border-color: var(--cyan); color: var(--navy); }
.quiz-step-dot.done { background: rgba(48,213,247,0.2); border-color: var(--cyan); color: var(--cyan); }
.quiz-step-lbl { font-size: 10px; color: var(--cyan-light); margin-top: 5px; opacity: 0.8; }
.quiz-step-connector { width: 60px; height: 2px; background: rgba(142,238,255,0.2); margin: 0 4px; margin-bottom: 18px; transition: background 0.3s; }
.quiz-step-connector.done { background: var(--cyan); }
.quiz-progress-bar-wrap { background: rgba(255,255,255,0.1); border-radius: 4px; height: 4px; margin: 8px 2rem 0; }
.quiz-progress-bar { background: var(--cyan); height: 4px; border-radius: 4px; transition: width 0.4s ease; }

.q-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.q-options-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.q-options-wide { display: grid; grid-template-columns: 1fr; gap: 8px; }
.q-opt { background: var(--cyan-pale); border: 1.5px solid #cce9f5; border-radius: var(--radius-sm); padding: 12px 14px; cursor: pointer; display: flex; align-items: center; gap: 10px; transition: border-color 0.2s, background 0.2s; }
.q-opt:hover { border-color: var(--cyan); }
.q-opt.selected { border-color: var(--cyan); background: #d8f5fc; }
.q-opt-radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #cce9f5; background: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s; }
.q-opt.selected .q-opt-radio { border-color: var(--cyan); background: var(--cyan); }
.q-opt-radio-inner { width: 7px; height: 7px; border-radius: 50%; background: var(--navy); display: none; }
.q-opt.selected .q-opt-radio-inner { display: block; }
.q-opt-text { color: var(--navy); font-size: 13px; font-weight: 700; }
.q-opt-sub { color: var(--text-muted); font-size: 11px; }
.dest-opt { background: var(--cyan-pale); border: 1.5px solid #cce9f5; border-radius: var(--radius-md); padding: 14px 10px; text-align: center; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.dest-opt:hover { border-color: var(--cyan); }
.dest-opt.selected { border-color: var(--cyan); background: #d8f5fc; }
.dest-opt .dest-flag { margin-bottom: 6px; display: flex; align-items: center; justify-content: center; min-height: 32px; }
.dest-opt .dest-lbl { color: var(--navy); font-size: 12px; font-weight: 700; }
.dest-grid-q { display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; }

.quiz-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--gray-200); }
.btn-quiz-back { background: transparent; color: var(--text-muted); border: 1px solid var(--gray-200); border-radius: 30px; padding: 10px 24px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: 'Nunito',sans-serif; transition: background 0.2s; }
.btn-quiz-back:hover { background: var(--gray-100); }
.btn-quiz-next { background: var(--cyan); color: var(--navy); border: none; border-radius: 30px; padding: 11px 30px; font-size: 14px; font-weight: 800; cursor: pointer; font-family: 'Nunito',sans-serif; transition: transform 0.15s, opacity 0.2s; }
.btn-quiz-next:hover { transform: translateY(-1px); }
.btn-quiz-next:disabled { background: var(--gray-200); color: var(--gray-400); cursor: not-allowed; transform: none; }

.score-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.score-lbl { color: var(--navy); font-size: 13px; font-weight: 700; width: 65px; flex-shrink: 0; }
.score-range-wrap { flex: 1; }
.score-range { width: 100%; accent-color: var(--cyan); cursor: pointer; }
.score-val-display { color: var(--cyan); font-size: 14px; font-weight: 800; width: 55px; text-align: right; flex-shrink: 0; }
.score-meta { font-size: 10px; color: var(--gray-400); margin-left: 77px; margin-top: -4px; margin-bottom: 10px; }
.score-na-row { display: flex; align-items: center; gap: 6px; margin-left: 77px; margin-bottom: 14px; }
.score-na-row input[type=checkbox] { accent-color: var(--cyan); width: 14px; height: 14px; cursor: pointer; }
.score-na-row label { color: var(--gray-400); font-size: 11px; cursor: pointer; }

/* ─── LEAD FORM (dark bg) ───────────────────────────────────── */
.lead-input { width: 100%; background: rgba(255,255,255,0.1); border: 1px solid rgba(48,213,247,0.3); color: var(--cyan-pale); border-radius: var(--radius-sm); padding: 11px 14px; font-size: 13px; font-family: 'Nunito',sans-serif; margin-bottom: 10px; }
.lead-input::placeholder { color: rgba(241,252,254,0.45); }
.lead-input:focus { outline: none; border-color: var(--cyan); }
.lead-select { width: 100%; background: rgba(255,255,255,0.1); border: 1px solid rgba(48,213,247,0.3); color: var(--cyan-pale); border-radius: var(--radius-sm); padding: 11px 14px; font-size: 13px; font-family: 'Nunito',sans-serif; margin-bottom: 10px; -webkit-appearance: none; }
.lead-select option { background: var(--navy); color: var(--cyan-pale); }

/* ─── RESULTS PANEL ─────────────────────────────────────────── */
.results-hero { background: var(--navy); padding: 2rem 0; text-align: center; }
.results-hero h2 { color: var(--white); font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; }
.results-hero p { color: var(--cyan-light); font-size: 13px; }
.score-pills { display: flex; gap: 8px; justify-content: center; margin-top: 1rem; flex-wrap: wrap; }
.score-pill { background: rgba(48,213,247,0.15); border: 1px solid rgba(48,213,247,0.3); border-radius: 20px; padding: 5px 14px; color: var(--cyan); font-size: 12px; font-weight: 700; }
.score-pill small { color: var(--cyan-light); font-weight: 400; margin-left: 4px; }

.consult-box { background: var(--navy); border-radius: var(--radius-md); padding: 1.4rem 1.6rem; margin-top: 1.2rem; display: flex; align-items: center; gap: 1.2rem; border: 1px solid rgba(48,213,247,0.2); }
.consult-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(48,213,247,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.consult-icon svg { width: 20px; height: 20px; stroke: var(--cyan); fill: none; stroke-width: 1.8; }
.consult-text h4 { color: var(--white); font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.consult-text p { color: var(--cyan-light); font-size: 11px; }

/* ─── CONTACT PAGE ──────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.contact-info-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--cyan-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 18px; height: 18px; stroke: var(--cyan); fill: none; stroke-width: 2; stroke-linecap: round; }
.contact-info-label { color: var(--text-muted); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.contact-info-val { color: var(--navy); font-size: 14px; font-weight: 700; }

/* ─── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero { background: var(--navy); padding: 3.5rem 0 3rem; }
.page-hero h1 { color: var(--white); font-size: 2.2rem; font-weight: 800; margin-bottom: 0.5rem; }
.page-hero p { color: var(--cyan-light); font-size: 15px; max-width: 500px; }
.breadcrumb { display: flex; gap: 6px; align-items: center; margin-bottom: 1rem; }
.breadcrumb a { color: var(--cyan-light); font-size: 12px; opacity: 0.8; }
.breadcrumb span { color: var(--cyan-light); font-size: 12px; opacity: 0.4; }
.breadcrumb .current { color: var(--cyan); font-size: 12px; opacity: 1; font-weight: 700; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--navy-dark); padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand p { color: var(--cyan-light); font-size: 13px; line-height: 1.7; margin-top: 10px; opacity: 0.85; }
.footer-col h4 { color: var(--cyan); font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--cyan-light); font-size: 13px; margin-bottom: 8px; opacity: 0.8; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.2rem; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { color: var(--cyan-light); font-size: 12px; opacity: 0.5; }

/* ─── GRIDS ──────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.grid-6 { display: grid; grid-template-columns: repeat(6,1fr); gap: 1rem; }

/* ─── NOTIFICATIONS ─────────────────────────────────────────── */
.alert { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; margin-bottom: 1rem; }
.alert-success { background: var(--green-light); color: var(--green); border: 1px solid rgba(27,138,90,0.3); }
.alert-error { background: #fce4e4; color: #a32020; border: 1px solid rgba(163,32,32,0.3); }
.alert-info { background: var(--cyan-pale); color: var(--navy); border: 1px solid rgba(48,213,247,0.3); }

/* ─── SPINNER ─────────────────────────────────────────────────── */
.spinner { display: inline-block; width: 20px; height: 20px; border: 3px solid rgba(47,56,78,0.15); border-top-color: var(--cyan); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── UNIVERSITY FINDER ─────────────────────────────────────── */
.uni-card { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--gray-200); padding: 1.2rem; transition: border-color 0.2s, transform 0.2s; }
.uni-card:hover { border-color: var(--cyan); transform: translateY(-2px); }
.uni-name { color: var(--navy); font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.uni-location { color: var(--text-muted); font-size: 11px; margin-bottom: 8px; }
.uni-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.uni-tag { background: var(--cyan-pale); color: var(--navy); border-radius: 10px; padding: 2px 9px; font-size: 10px; font-weight: 700; }
.uni-tag.match { background: var(--green-light); color: var(--green); }

/* ─── BLOG PAGE ─────────────────────────────────────────────── */
.blog-sidebar-card { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--gray-200); padding: 1.2rem; margin-bottom: 1rem; }
.blog-sidebar-card h4 { color: var(--navy); font-size: 14px; font-weight: 700; margin-bottom: 10px; }

/* ─── ABOUT PAGE ────────────────────────────────────────────── */
.team-card { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--gray-200); padding: 1.5rem; text-align: center; }
.team-avatar { width: 70px; height: 70px; border-radius: 50%; background: var(--cyan); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--navy); font-size: 20px; font-weight: 800; }
.team-name { color: var(--navy); font-size: 14px; font-weight: 700; }
.team-role { color: var(--cyan); font-size: 12px; }

/* ─── LOADING ─────────────────────────────────────────────────── */
.loading-overlay { display: none; position: fixed; inset: 0; background: rgba(47,56,78,0.7); z-index: 9999; align-items: center; justify-content: center; flex-direction: column; gap: 16px; }
.loading-overlay.active { display: flex; }
.loading-text { color: var(--white); font-size: 14px; font-weight: 700; }
.loading-spinner { width: 44px; height: 44px; border: 4px solid rgba(255,255,255,0.2); border-top-color: var(--cyan); border-radius: 50%; animation: spin 0.7s linear infinite; }

/* ─── TOAST ──────────────────────────────────────────────────── */
.toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--navy); color: var(--white); padding: 14px 20px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; border-left: 4px solid var(--cyan); box-shadow: var(--shadow-md); transform: translateY(100px); opacity: 0; transition: all 0.35s ease; z-index: 9999; max-width: 320px; }
.toast.show { transform: translateY(0); opacity: 1; }

/* ─── RESPONSIVE — fully fluid ──────────────────────────────── */

/* Large desktop — cap container, fluid inside */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); width: 100%; }

/* Fluid typography */
.section-title { font-size: clamp(1.4rem, 3vw, 2rem); }
.hero h1       { font-size: clamp(1.6rem, 4vw, 2.8rem); }

/* Fluid grids — collapse gracefully at every size */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.grid-6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }

/* Hero */
.hero-grid { display: grid; grid-template-columns: 1fr minmax(0, 400px); gap: 2rem; align-items: center; }

/* Steps — fluid wrapping */
.steps-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.step-item  { flex: 1 1 120px; max-width: 160px; }
.step-item::after { display: none; }

/* Quiz destinations grid */
.dest-grid-q { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 9px; }

/* Quiz options */
.q-options   { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }
.q-options-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; }

/* Forms */
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }

/* Footer */
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 2rem; }

/* Contact grid */
.contact-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.4fr); gap: 3rem; align-items: start; }

/* Score bars in quiz */
.score-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

/* Blog grid */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }

/* Tablet — 900px */
@media (max-width: 900px) {
  .hero-grid    { grid-template-columns: 1fr; }
  .hero-card    { display: none; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-actions .nav-portal { display: none; }
}

/* Phablet — 700px */
@media (max-width: 700px) {
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .hero-stats   { gap: 1rem; flex-wrap: wrap; }
  .section      { padding: 2.5rem 0; }
  .score-grid   { grid-template-columns: 1fr; }
}

/* Mobile — 560px */
@media (max-width: 560px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--navy); padding: 1rem 1.5rem;
    gap: 0.2rem; box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 999;
  }
  .hamburger   { display: flex; }
  .nav-actions > div { display: none; } /* hide social icons on mobile nav */
  .nav-cta     { padding: 6px 14px; font-size: 12px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }

  /* Quiz */
  .dest-grid-q { grid-template-columns: repeat(3, 1fr); }
  .q-options   { grid-template-columns: 1fr; }
  .q-options-3 { grid-template-columns: 1fr; }

  /* Steps */
  .step-item { flex: 1 1 80px; max-width: 120px; }
  .step-label { font-size: 9px; }
  .step-circle { width: 36px; height: 36px; font-size: 12px; }

  /* Sections */
  .section-title { font-size: 1.4rem; }
  .hero h1       { font-size: 1.6rem; }
  .hero-stats    { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }

  /* Cards & forms */
  .card          { padding: 1rem; }
  .form-row      { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Score quiz footer buttons */
  .quiz-footer   { flex-wrap: wrap; gap: 8px; }
}

/* Very small — 380px */
@media (max-width: 380px) {
  .dest-grid-q   { grid-template-columns: repeat(2, 1fr); }
  .grid-6        { grid-template-columns: repeat(2, 1fr); }
  .hero-stats    { grid-template-columns: 1fr 1fr; }
  .score-row     { flex-wrap: wrap; }
  .score-lbl     { width: 100%; margin-bottom: 2px; }
}
