/*
Theme Name: VISAFORTrip
Theme URI: https://visafortrip.com
Author: VISAFORTrip
Author URI: https://visafortrip.com
Description: Professional visa services website theme with SEO-optimised pages, user login/logout, visa search, blog, and application funnel.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: visafortrip
Tags: visa, travel, professional, seo, white-background
*/

/* ===== CSS VARIABLES ===== */
:root {
  --navy:    #0F2B5B;
  --navy2:   #1A4A8A;
  --orange:  #F97316;
  --orange2: #EA6A0A;
  --white:   #FFFFFF;
  --gray50:  #F8FAFC;
  --gray100: #F1F5F9;
  --gray200: #E2E8F0;
  --gray400: #94A3B8;
  --gray600: #475569;
  --gray800: #1E293B;
  --green:   #16A34A;
  --red:     #DC2626;
  --shadow:  0 4px 24px rgba(15,43,91,.10);
  --shadow2: 0 8px 40px rgba(15,43,91,.15);
  --radius:  14px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ===== UTILITY ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-gray { background: var(--gray50); }
.section-head { text-align: center; margin-bottom: 44px; }
.section-head .section-sub { margin: 0 auto 40px; }
.section-label {
  display: inline-block;
  background: rgba(249,115,22,.10);
  color: var(--orange);
  padding: 5px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title { font-size: 32px; font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.section-sub { color: var(--gray600); font-size: 16px; max-width: 560px; margin-bottom: 40px; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-weight: 700; font-size: 15px; border: none;
  cursor: pointer; transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 18px rgba(249,115,22,.35);
}
.btn-primary:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,.45); color: white; }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: white; }
.btn-white {
  background: white; color: var(--navy);
  box-shadow: 0 4px 14px rgba(0,0,0,.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn-sm { padding: 9px 20px; font-size: 13.5px; }
.btn-full { width: 100%; justify-content: center; border-radius: 12px; }

/* ===== TOPBAR ===== */
#topbar {
  background: var(--navy);
  color: rgba(255,255,255,.80);
  font-size: 12.5px; padding: 7px 0;
  text-align: center; letter-spacing: .3px;
}
#topbar a { color: var(--orange); font-weight: 600; }
#topbar a:hover { text-decoration: underline; }

/* ===== HEADER / NAV ===== */
#masthead {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray200);
  box-shadow: 0 2px 16px rgba(15,43,91,.08);
}
.site-nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }

/* Logo */
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo img { height: 44px; width: auto; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-size: 22px; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--orange) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-tagline { font-size: 9px; font-weight: 600; color: var(--gray400); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > a {
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--gray600);
  transition: all 0.2s;
}
.nav-links > a:hover, .nav-links > a:focus { color: var(--navy); background: var(--gray100); }
.nav-links > a.current { color: var(--navy); font-weight: 700; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: '⌄'; font-size: 12px; color: var(--gray400); margin-top: 1px; }
.nav-dropdown:hover .dropdown-panel { display: block; }
.dropdown-panel {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 220px; background: white; border-radius: 12px;
  box-shadow: var(--shadow2); border: 1px solid var(--gray200);
  padding: 8px; z-index: 500;
  animation: dropFade .15s ease;
}
@keyframes dropFade { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }
.dropdown-panel a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; border-radius: 8px;
  font-size: 13.5px; color: var(--gray600);
  transition: all .15s;
}
.dropdown-panel a:hover { background: var(--gray50); color: var(--navy); }
.dropdown-panel .dp-icon { font-size: 18px; }
.dropdown-divider { height: 1px; background: var(--gray100); margin: 6px 0; }
.dropdown-panel .view-all { color: var(--orange); font-weight: 700; }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-login {
  padding: 9px 20px; border-radius: 50px; font-size: 13.5px; font-weight: 600;
  border: 1.5px solid var(--navy2); color: var(--navy); background: transparent;
  cursor: pointer; transition: all .2s;
}
.btn-login:hover { background: var(--navy); color: white; }
.btn-apply {
  padding: 9px 20px; border-radius: 50px; font-size: 13.5px; font-weight: 700;
  background: var(--orange); color: white; border: none;
  box-shadow: 0 3px 14px rgba(249,115,22,.30); cursor: pointer; transition: all .2s;
}
.btn-apply:hover { background: var(--orange2); transform: translateY(-1px); }

/* User Menu (logged in) */
.nav-user-menu { position: relative; }
.user-trigger {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 50px;
  border: 1.5px solid var(--gray200); background: white;
  cursor: pointer; transition: all .2s; font-size: 13.5px; font-weight: 600; color: var(--navy);
}
.user-trigger:hover { border-color: var(--navy2); background: var(--gray50); }
.user-avatar-circle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--orange); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px; flex-shrink: 0;
}
.user-trigger-name { max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-user-menu:hover .user-dropdown { display: block; }
.user-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  width: 200px; background: white; border-radius: 12px;
  box-shadow: var(--shadow2); border: 1px solid var(--gray200);
  padding: 8px; z-index: 500;
  animation: dropFade .15s ease;
}
.user-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; border-radius: 8px;
  font-size: 13.5px; color: var(--gray600);
}
.user-dropdown a:hover { background: var(--gray50); color: var(--navy); }
.user-dropdown .ud-icon { font-size: 15px; }
.ud-logout {
  border-top: 1px solid var(--gray100);
  margin-top: 4px; padding-top: 4px;
}
.ud-logout a { color: var(--red) !important; }
.ud-logout a:hover { background: rgba(220,38,38,.05) !important; }

/* ===== HERO ===== */
.hero-section {
  background: linear-gradient(135deg, #0F2B5B 0%, #1A4A8A 55%, #1E5FAD 100%);
  min-height: 560px; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg-text {
  position: absolute; right: -40px; top: 50%;
  transform: translateY(-50%);
  font-size: 320px; opacity: .05; color: white;
  user-select: none; pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; padding: 60px 24px; max-width: 1160px; margin: 0 auto; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(249,115,22,.18); border: 1px solid rgba(249,115,22,.35);
  color: #FED7AA; padding: 6px 16px; border-radius: 20px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .8px; margin-bottom: 20px;
}
.hero-h1 {
  font-size: 50px; font-weight: 900; color: white;
  line-height: 1.12; margin-bottom: 14px; max-width: 620px;
}
.hero-h1 .accent { color: var(--orange); }
.hero-sub { color: rgba(255,255,255,.75); font-size: 17px; margin-bottom: 36px; max-width: 500px; }

/* Search Card */
.search-card {
  background: white; border-radius: 20px; padding: 28px 28px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.22); max-width: 700px;
}
.search-card-title {
  font-size: 16px; font-weight: 700; color: var(--navy);
  margin-bottom: 18px; display: flex; align-items: center; gap: 8px;
}
.search-grid { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; align-items: end; }
.sf-label {
  font-size: 11.5px; font-weight: 700; color: var(--gray600);
  text-transform: uppercase; letter-spacing: .8px; display: block; margin-bottom: 6px;
}
.sf-input, .sf-select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--gray200); border-radius: 10px;
  font-size: 14px; color: var(--gray800); background: var(--gray50);
  appearance: none; transition: border-color .2s;
}
.sf-input:focus, .sf-select:focus { outline: none; border-color: var(--navy2); background: white; }
.search-submit {
  background: var(--orange); color: white; border: none;
  padding: 12px 22px; border-radius: 10px;
  font-weight: 700; font-size: 14px; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(249,115,22,.35);
  cursor: pointer; transition: all .2s;
  display: flex; align-items: center; gap: 7px;
}
.search-submit:hover { background: var(--orange2); transform: translateY(-1px); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--gray200);
  padding: 18px 0;
  box-shadow: 0 -2px 16px rgba(15,43,91,.06);
}
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon-wrap {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(249,115,22,.10);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.trust-text strong { display: block; font-size: 16px; font-weight: 800; color: var(--navy); line-height: 1; }
.trust-text small { font-size: 11.5px; color: var(--gray600); }
.trust-sep { width: 1px; height: 36px; background: var(--gray200); }

/* ===== DESTINATIONS ===== */
.destinations-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.dest-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; height: 210px; cursor: pointer;
  transition: transform .3s, box-shadow .3s; box-shadow: var(--shadow);
  display: block;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow2); }
.dest-bg-layer { position: absolute; inset: 0; background-size: cover; background-position: center; }
.dest-overlay-layer { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,43,91,.85) 0%, rgba(15,43,91,.15) 60%, transparent 100%); }
.dest-badge-pill {
  position: absolute; top: 14px; right: 14px;
  background: var(--orange); color: white;
  font-size: 10.5px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
}
.dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px; }
.dest-flag-em { font-size: 22px; margin-bottom: 4px; }
.dest-title { font-size: 19px; font-weight: 800; color: white; margin-bottom: 2px; }
.dest-stats { display: flex; align-items: center; gap: 12px; font-size: 12px; color: rgba(255,255,255,.78); }

/* ===== VISA TYPES GRID ===== */
.visa-types-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.vt-card {
  background: white; border: 1.5px solid var(--gray200);
  border-radius: var(--radius); padding: 24px 18px;
  text-align: center; cursor: pointer; transition: all .25s;
  box-shadow: 0 2px 10px rgba(15,43,91,.05);
  display: block; color: inherit;
}
.vt-card:hover { border-color: var(--orange); box-shadow: 0 8px 30px rgba(249,115,22,.12); transform: translateY(-4px); }
.vt-icon-wrap { width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; }
.vt-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.vt-card p { font-size: 12px; color: var(--gray600); }

/* ===== HOW IT WORKS ===== */
.steps-wrap { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.steps-wrap::before { content: ''; position: absolute; top: 32px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--orange), var(--navy2)); z-index: 0; }
.step-item { text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 900; color: white;
  margin: 0 auto 18px; border: 4px solid white; box-shadow: var(--shadow);
}
.step-item:nth-child(1) .step-circle { background: var(--navy); }
.step-item:nth-child(2) .step-circle { background: var(--navy2); }
.step-item:nth-child(3) .step-circle { background: var(--orange); }
.step-item:nth-child(4) .step-circle { background: var(--green); }
.step-item h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-item p { font-size: 13px; color: var(--gray600); }

/* ===== TOOLS SECTION ===== */
.tools-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.tool-card {
  background: white; border-radius: var(--radius); padding: 32px;
  border: 1.5px solid var(--gray200); box-shadow: var(--shadow);
  display: flex; gap: 20px; align-items: flex-start;
  transition: all .25s; cursor: pointer; color: inherit; display: block;
}
.tool-card:hover { border-color: var(--orange); box-shadow: var(--shadow2); transform: translateY(-4px); }
.tool-card-inner { display: flex; gap: 20px; align-items: flex-start; }
.tool-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.tool-text h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.tool-text p { font-size: 13.5px; color: var(--gray600); margin-bottom: 14px; }
.tool-cta { color: var(--orange); font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 6px; }

/* ===== BLOG GRID ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  border: 1.5px solid var(--gray200); box-shadow: var(--shadow);
  transition: all .25s; display: block; color: inherit;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow2); }
.blog-thumb { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 52px; }
.blog-body { padding: 22px; }
.blog-cat { display: inline-block; background: rgba(249,115,22,.10); color: var(--orange); padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 10px; }
.blog-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 13px; color: var(--gray600); margin-bottom: 14px; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--gray400); border-top: 1px solid var(--gray100); padding-top: 14px; }
.blog-read-btn { color: var(--orange); font-weight: 700; margin-left: auto; font-size: 12.5px; }

/* ===== VISA-FREE SECTION ===== */
.vf-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.vf-card {
  background: white; border-radius: var(--radius); padding: 28px;
  border: 1.5px solid var(--gray200); display: flex; align-items: center; gap: 16px;
  cursor: pointer; box-shadow: 0 2px 12px rgba(15,43,91,.06);
  transition: all .25s; color: inherit; display: block;
}
.vf-card:hover { border-color: var(--navy2); box-shadow: var(--shadow2); transform: translateY(-3px); }
.vf-inner { display: flex; align-items: center; gap: 16px; }
.vf-flag { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; background: var(--gray100); flex-shrink: 0; }
.vf-info { flex: 1; }
.vf-title { font-weight: 700; color: var(--navy); font-size: 15px; margin-bottom: 3px; }
.vf-sub { font-size: 12.5px; color: var(--gray600); }
.vf-count { text-align: right; }
.vf-num { font-size: 28px; font-weight: 900; color: var(--orange); display: block; line-height: 1; }
.vf-label { font-size: 11px; color: var(--gray400); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #0F2B5B 0%, #1E5FAD 100%);
  padding: 72px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before { content: '✈'; position: absolute; font-size: 280px; opacity: .04; top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(-20deg); }
.cta-section h2 { font-size: 38px; font-weight: 900; color: white; margin-bottom: 14px; position: relative; }
.cta-section h2 .accent { color: var(--orange); }
.cta-section p { color: rgba(255,255,255,.75); font-size: 17px; margin-bottom: 32px; position: relative; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar { background: var(--gray50); padding: 12px 0; border-bottom: 1px solid var(--gray200); }
.breadcrumb-list { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray600); flex-wrap: wrap; }
.breadcrumb-list a { color: var(--navy2); font-weight: 500; }
.breadcrumb-list a:hover { color: var(--orange); }
.bc-arrow { color: var(--gray400); font-size: 10px; }

/* ===== PAGE CONTENT LAYOUT ===== */
.page-2col { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.content-main { min-width: 0; }
.content-sidebar { position: sticky; top: 88px; }

/* ===== VISA SUMMARY CARD ===== */
.visa-summary-card {
  background: var(--gray50); border-radius: 16px; padding: 24px;
  border: 1.5px solid var(--gray200); margin-bottom: 28px;
}
.vsc-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.vsc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.vsc-item { display: flex; align-items: center; gap: 10px; }
.vsc-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.vsc-item .vsc-label { font-size: 11px; color: var(--gray400); display: block; }
.vsc-item strong { color: var(--navy); font-size: 15px; }

.vft-country-section-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.vft-country-section-link {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--gray200);
    border-radius: 999px;
    padding: 9px 14px;
    background: #fff;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s ease;
}

.vft-country-section-link:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.vft-country-section-link.is-active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.vft-country-section-target {
    scroll-margin-top: 104px;
    transition: box-shadow .25s ease, background-color .25s ease;
}

.vft-country-section-target.is-focused {
    box-shadow: inset 0 0 0 2px rgba(249,115,22,.28);
}

/* Route Hero Block */
.route-hero-block {
  background: linear-gradient(135deg, #0F2B5B, #1A4A8A);
  border-radius: 16px; padding: 28px; color: white; margin-bottom: 36px;
}
.rhb-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; opacity: .85; }
.rhb-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.rhb-stat small { font-size: 11px; opacity: .65; display: block; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .8px; }
.rhb-stat strong { font-size: 20px; font-weight: 800; }

/* Visa Type Items */
.vt-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.vt-list-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px; border: 1.5px solid var(--gray200); border-radius: 12px;
  cursor: pointer; transition: all .2s; text-decoration: none; color: inherit;
}
.vt-list-item:hover { border-color: var(--orange); box-shadow: 0 4px 16px rgba(249,115,22,.10); }
.vtli-left { display: flex; align-items: center; gap: 12px; }
.vtli-emoji { font-size: 22px; }
.vtli-name { font-weight: 700; color: var(--navy); }
.vtli-desc { font-size: 12.5px; color: var(--gray600); }
.vtli-right { text-align: right; }
.vtli-price { color: var(--orange); font-weight: 700; font-size: 17px; }
.vtli-days { font-size: 11px; color: var(--gray400); }

/* Documents Checklist */
.doc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.doc-row { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray800); }
.doc-check { color: var(--green); font-size: 16px; }

/* Section divider */
.section-divider { height: 1px; background: var(--gray200); margin: 32px 0; }

/* FAQ */
.faq-accordion { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1.5px solid var(--gray200); border-radius: 12px; overflow: hidden; }
.faq-question {
  padding: 16px 20px; font-weight: 600; color: var(--navy);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: background .2s; user-select: none; background: white;
  border: none; width: 100%; text-align: left; font-size: 15px; font-family: inherit;
}
.faq-question:hover { background: var(--gray50); }
.faq-icon { color: var(--orange); font-size: 22px; font-weight: 300; transition: transform .25s; flex-shrink: 0; }
.faq-answer {
  padding: 0 20px; max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: 14.5px; color: var(--gray600); line-height: 1.75; background: white;
}
.faq-item.faq-open .faq-answer { max-height: 400px; padding: 6px 20px 20px; }
.faq-item.faq-open .faq-icon { transform: rotate(45deg); }

/* Sidebar CTA */
.sidebar-cta-card {
  background: white; border: 2px solid var(--orange); border-radius: 16px;
  padding: 24px; box-shadow: 0 8px 30px rgba(249,115,22,.15);
}
.scc-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.scc-price { font-size: 13px; color: var(--gray600); margin-bottom: 20px; }
.scc-price strong { color: var(--orange); font-size: 17px; }
.scc-chip {
  display: flex; align-items: center; gap: 8px;
  border-radius: 8px; padding: 10px 12px; margin-bottom: 12px; font-size: 13px;
}
.scc-chip.green { background: rgba(22,163,74,.08); }
.scc-chip.blue { background: rgba(43,108,176,.08); }
.scc-security { font-size: 11.5px; color: var(--gray400); text-align: center; margin-top: 12px; }

/* ===== BLOG SINGLE ===== */
.post-hero { padding: 48px 0 40px; background: var(--gray50); border-bottom: 1px solid var(--gray200); }
.post-meta-row { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.post-cat-badge { background: rgba(249,115,22,.10); color: var(--orange); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; }
.post-date-meta { font-size: 13px; color: var(--gray400); }
.post-title { font-size: 36px; font-weight: 900; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.post-excerpt { font-size: 17px; color: var(--gray600); line-height: 1.6; }
.post-thumb-hero { width: 100%; height: 340px; border-radius: 16px; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 90px; margin: 36px 0; }
.post-content-body { font-size: 16px; line-height: 1.85; color: var(--gray800); }
.post-content-body h2 { font-size: 24px; font-weight: 700; color: var(--navy); margin: 32px 0 14px; }
.post-content-body h3 { font-size: 19px; font-weight: 600; color: var(--navy); margin: 24px 0 10px; }
.post-content-body p { margin-bottom: 18px; }
.post-content-body ul, .post-content-body ol { padding-left: 26px; margin-bottom: 18px; }
.post-content-body li { margin-bottom: 8px; }
.post-content-body strong { color: var(--navy); }
.post-content-body ul { list-style: disc; }
.post-content-body ol { list-style: decimal; }
.post-cta-mid { background: rgba(249,115,22,.07); border: 1.5px solid rgba(249,115,22,.25); border-radius: 14px; padding: 24px; margin: 32px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.post-cta-mid p { font-size: 16px; font-weight: 600; color: var(--navy); margin: 0; }
.post-2col { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; padding: 48px 0; }
.post-sidebar { position: sticky; top: 88px; }
.related-posts h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.related-mini { display: flex; gap: 16px; margin-bottom: 16px; padding: 14px; border: 1px solid var(--gray200); border-radius: 10px; cursor: pointer; transition: all .2s; text-decoration: none; color: inherit; }
.related-mini:hover { border-color: var(--orange); }
.related-mini-img { width: 64px; height: 64px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 30px; flex-shrink: 0; }
.related-mini h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; line-height: 1.3; }
.related-mini small { font-size: 12px; color: var(--gray400); }

/* ===== APPLY FUNNEL ===== */
.funnel-progress { display: flex; align-items: center; margin-bottom: 40px; background: var(--gray50); border-radius: 16px; padding: 20px; }
.fp-step { display: flex; flex-direction: column; align-items: center; flex: 1; }
.fp-num {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.fp-num.fp-active { background: var(--orange); color: white; }
.fp-num.fp-done { background: var(--green); color: white; }
.fp-num.fp-todo { background: var(--gray200); color: var(--gray600); }
.fp-label { font-size: 11px; font-weight: 600; margin-top: 6px; text-align: center; }
.fp-label.fp-active { color: var(--orange); }
.fp-label.fp-done { color: var(--green); }
.fp-label.fp-todo { color: var(--gray400); }
.fp-connector { flex: 1; height: 2px; background: var(--gray200); }
.form-card { background: white; border: 1.5px solid var(--gray200); border-radius: 20px; padding: 36px; box-shadow: var(--shadow); }
.form-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--gray600); text-transform: uppercase; letter-spacing: .8px; display: block; margin-bottom: 6px; }
.form-group input, .form-group select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--gray200); border-radius: 10px;
  font-size: 14px; color: var(--gray800);
  transition: border-color .2s; background: var(--gray50);
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--navy2); background: white; }
.form-submit {
  width: 100%; padding: 15px; border: none; border-radius: 12px;
  background: var(--orange); color: white; font-weight: 700; font-size: 15px;
  box-shadow: 0 4px 18px rgba(249,115,22,.35); cursor: pointer; transition: all .2s;
}
.form-submit:hover { background: var(--orange2); }
.form-security { font-size: 12px; color: var(--gray400); text-align: center; margin-top: 12px; }

/* ===== DASHBOARD ===== */
.dash-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start; }
.dash-sidebar-card { background: white; border-radius: var(--radius); border: 1.5px solid var(--gray200); overflow: hidden; box-shadow: var(--shadow); }
.ds-user-header { padding: 24px; background: linear-gradient(135deg, var(--navy), var(--navy2)); color: white; }
.ds-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.ds-user-header h3 { font-size: 16px; font-weight: 700; }
.ds-user-header small { font-size: 12.5px; opacity: .75; display: block; }
.ds-nav { list-style: none; }
.ds-nav li a {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 20px; font-size: 14px; color: var(--gray600);
  border-bottom: 1px solid var(--gray100); transition: all .2s;
}
.ds-nav li:last-child a { border-bottom: none; }
.ds-nav li a:hover { background: var(--gray50); color: var(--navy); }
.ds-nav li a.ds-active { color: var(--orange); font-weight: 600; background: rgba(249,115,22,.06); }
.ds-nav-icon { font-size: 15px; }
.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 28px; }
.stat-box { background: white; border-radius: 12px; padding: 20px; border: 1.5px solid var(--gray200); box-shadow: var(--shadow); }
.stat-box .sb-num { font-size: 28px; font-weight: 900; color: var(--navy); }
.stat-box .sb-label { font-size: 12.5px; color: var(--gray600); margin-top: 2px; }
.app-table-card { background: white; border-radius: var(--radius); border: 1.5px solid var(--gray200); overflow: hidden; box-shadow: var(--shadow); }
.atc-header { padding: 18px 24px; border-bottom: 1px solid var(--gray200); font-size: 16px; font-weight: 700; color: var(--navy); display: flex; align-items: center; justify-content: space-between; }
.atc-header a { font-size: 13px; color: var(--orange); font-weight: 600; }
.app-table-row { padding: 18px 24px; border-bottom: 1px solid var(--gray100); display: grid; grid-template-columns: 1fr 1fr 130px auto; gap: 16px; align-items: center; }
.app-table-row:last-child { border-bottom: none; }
.app-table-row:hover { background: var(--gray50); }
.atr-dest { font-weight: 600; color: var(--navy); font-size: 14px; }
.atr-type { font-size: 12.5px; color: var(--gray600); }
.status-pill { padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; text-align: center; }
.sp-submitted { background: rgba(43,108,176,.10); color: var(--navy2); }
.sp-processing { background: rgba(249,115,22,.10); color: var(--orange); }
.sp-approved { background: rgba(22,163,74,.10); color: var(--green); }
.sp-rejected { background: rgba(220,38,38,.10); color: var(--red); }
.atr-track { color: var(--orange); font-size: 13px; font-weight: 700; }
.empty-dash { text-align: center; padding: 60px 24px; }
.empty-dash .ed-icon { font-size: 52px; margin-bottom: 16px; }
.empty-dash h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.empty-dash p { font-size: 14px; color: var(--gray600); margin-bottom: 24px; max-width: 320px; margin-left: auto; margin-right: auto; }

/* ===== LOGIN PAGE ===== */
.login-page-wrap { min-height: calc(100vh - 140px); display: flex; align-items: center; justify-content: center; background: var(--gray50); padding: 40px 24px; }
.login-card { background: white; border-radius: 20px; padding: 40px; max-width: 420px; width: 100%; box-shadow: var(--shadow2); border: 1px solid var(--gray200); }
.lc-logo { text-align: center; margin-bottom: 8px; font-size: 44px; }
.lc-title { font-size: 24px; font-weight: 800; color: var(--navy); text-align: center; margin-bottom: 6px; }
.lc-sub { font-size: 13.5px; color: var(--gray600); text-align: center; margin-bottom: 24px; }
.auth-tabs { display: flex; background: var(--gray100); border-radius: 12px; padding: 4px; margin-bottom: 24px; }
.at-tab {
  flex: 1; padding: 9px; text-align: center; border-radius: 9px;
  font-size: 14px; font-weight: 600; color: var(--gray600);
  cursor: pointer; transition: all .2s; border: none; background: transparent; font-family: inherit;
}
.at-tab.at-active { background: white; color: var(--navy); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.tab-panel { display: none; }
.tab-panel.tp-active { display: block; }
.form-error-msg { background: rgba(220,38,38,.08); color: var(--red); border: 1px solid rgba(220,38,38,.20); padding: 12px 16px; border-radius: 10px; margin-bottom: 16px; font-size: 14px; font-weight: 500; }
.form-success-msg { background: rgba(22,163,74,.08); color: var(--green); border: 1px solid rgba(22,163,74,.20); padding: 12px 16px; border-radius: 10px; margin-bottom: 16px; font-size: 14px; font-weight: 500; }
.or-divider { display: flex; align-items: center; gap: 12px; margin: 18px 0; }
.or-divider span { font-size: 12px; color: var(--gray400); white-space: nowrap; }
.or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray200); }
.social-login-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.slb { padding: 10px; border-radius: 10px; border: 1.5px solid var(--gray200); background: white; font-size: 13px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; font-family: inherit; transition: all .2s; }
.slb:hover { background: var(--gray50); }
.lc-footer { text-align: center; margin-top: 20px; font-size: 13px; color: var(--gray600); }
.lc-footer a { color: var(--orange); font-weight: 600; }
.wp-login-err { color: var(--red); margin: 0; background: rgba(220,38,38,.08); border: 1px solid rgba(220,38,38,.20); padding: 12px 16px; border-radius: 10px; font-size: 14px; }
.wp-login-err a { color: var(--red); }

/* ===== INFORMATIONAL PAGES ===== */
.info-table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; }
.data-table thead th { background: var(--navy); color: white; padding: 14px 18px; text-align: left; font-size: 13px; font-weight: 600; }
.data-table tbody td { padding: 12px 18px; border-bottom: 1px solid var(--gray100); font-size: 14px; color: var(--gray800); }
.data-table tbody tr:nth-child(even) td { background: var(--gray50); }
.data-table tbody tr:hover td { background: rgba(249,115,22,.04); }

/* ===== TOOLS PAGE ===== */
.tool-hero { background: linear-gradient(135deg, #0F2B5B, #1A4A8A); border-radius: 20px; padding: 40px; color: white; text-align: center; margin-bottom: 40px; }
.tool-hero h1 { font-size: 32px; font-weight: 800; margin-bottom: 10px; }
.tool-hero p { font-size: 16px; opacity: .8; }
.tool-form-card { background: white; border: 1.5px solid var(--gray200); border-radius: 20px; padding: 36px; box-shadow: var(--shadow); max-width: 640px; margin: 0 auto; }
.result-box { background: rgba(22,163,74,.07); border: 1.5px solid rgba(22,163,74,.25); border-radius: 16px; padding: 24px; margin-top: 24px; max-width: 640px; margin-left: auto; margin-right: auto; display: none; }
.rb-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.rb-head h3 { font-size: 19px; font-weight: 700; color: var(--navy); }
.rb-check { font-size: 28px; }
.rb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.rb-item { background: white; padding: 14px; border-radius: 10px; box-shadow: 0 1px 6px rgba(0,0,0,.06); }
.rb-item .rbi-label { font-size: 11px; color: var(--gray400); display: block; margin-bottom: 3px; }
.rb-item strong { color: var(--navy); font-size: 16px; }

/* ===== FLASH MESSAGES ===== */
.flash-container { padding: 0; }
.vft-flash { padding: 13px 20px; font-size: 14px; font-weight: 500; margin: 0; }
.vft-flash-success { background: rgba(22,163,74,.10); color: var(--green); border-bottom: 1px solid rgba(22,163,74,.20); }
.vft-flash-error { background: rgba(220,38,38,.10); color: var(--red); border-bottom: 1px solid rgba(220,38,38,.20); }

/* ===== FOOTER ===== */
#colophon { background: var(--navy); color: rgba(255,255,255,.75); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .fb-tagline { font-size: 14px; line-height: 1.7; margin: 16px 0 24px; max-width: 280px; }
.footer-social-row { display: flex; gap: 10px; }
.fs-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.10); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.70); font-size: 14px; transition: all .2s; }
.fs-icon:hover { background: var(--orange); color: white; }
.footer-col h5 { font-size: 13px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; color: rgba(255,255,255,.45); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--orange); }
.fb-links { display: flex; gap: 20px; }
.footer-logo-text { font-size: 24px; font-weight: 900; color: white; margin-bottom: 4px; }
.footer-logo-text .orange { color: var(--orange); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-h1 { font-size: 38px; }
  .search-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-2col { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .dash-layout { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: 1fr 1fr; }
  .rhb-stats { grid-template-columns: repeat(2,1fr); }
  .post-2col { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-h1 { font-size: 30px; }
  .search-grid { grid-template-columns: 1fr; }
  .destinations-grid, .blog-grid { grid-template-columns: repeat(2,1fr); }
  .visa-types-grid { grid-template-columns: repeat(3,1fr); }
  .vf-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .steps-wrap { grid-template-columns: repeat(2,1fr); }
  .steps-wrap::before { display: none; }
  .doc-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 26px; }
  .nav-links { display: none; }
  .trust-sep { display: none; }
  .trust-inner { gap: 16px; }
  .app-table-row { grid-template-columns: 1fr 120px; }
  .vsc-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .destinations-grid, .blog-grid, .visa-types-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .social-login-btns { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: 1fr; }
  .rb-grid { grid-template-columns: 1fr; }
}

/* ========================================
   ADDITIONAL COMPONENTS
   ======================================== */

/* Topbar */
.topbar {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    padding: 7px 0;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-left, .topbar-right {
    display: flex;
    gap: 16px;
    align-items: center;
}
.topbar-right a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 2px 8px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 4px;
    transition: all 0.2s;
}
.topbar-right a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
}

/* Header */
.site-header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(15,43,91,0.08);
    transition: box-shadow 0.3s;
}
.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(15,43,91,0.15);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 68px;
}
.site-logo {
    flex-shrink: 0;
    display: flex;
    text-decoration: none;
}
.main-nav { flex: 1; }
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
    align-items: center;
}
.nav-item > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}
.nav-item > a:hover, .nav-item.active > a {
    color: var(--navy);
    background: rgba(15,43,91,0.06);
}
.nav-item .arrow { font-size: 0.7rem; opacity: 0.6; }

/* Dropdowns */
.nav-item.has-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    min-width: 200px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s;
    z-index: 200;
}
.dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 9px 14px;
    color: var(--text);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.88rem;
    transition: background 0.15s;
}
.dropdown-menu a:hover {
    background: rgba(15,43,91,0.06);
    color: var(--navy);
}
.mega-menu {
    display: flex;
    gap: 0;
    min-width: 560px;
    padding: 16px;
}
.mega-col {
    flex: 1;
    padding: 0 12px;
    border-right: 1px solid #f0f0f0;
}
.mega-col:last-child { border-right: none; }
.mega-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #999;
    padding: 4px 14px 8px;
    margin: 0;
}
.mega-col a { font-size: 0.87rem; }

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.btn-login {
    padding: 8px 16px;
    border: 2px solid var(--navy);
    border-radius: 8px;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-login:hover {
    background: var(--navy);
    color: white;
}
.btn-apply {
    padding: 8px 18px;
    background: var(--orange);
    border-radius: 8px;
    color: white;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-apply:hover { background: #ea6a0a; }

/* User Menu */
.user-menu-wrap { position: relative; }
.user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(15,43,91,0.06);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--navy);
}
.user-avatar {
    width: 28px;
    height: 28px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
}
.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    min-width: 190px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s;
}
.user-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.user-dropdown a {
    display: block;
    padding: 9px 14px;
    color: var(--text);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.88rem;
}
.user-dropdown a:hover { background: rgba(15,43,91,0.06); }
.dropdown-divider { height: 1px; background: #f0f0f0; margin: 4px 8px; }
.logout-link { color: #e53e3e !important; }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ==============================
   HOMEPAGE SECTIONS
   ============================== */

/* Hero */
.hero-section {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3d7c 60%, #0d2550 100%);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-bottom: 40px;
}
.hero-badge {
    display: inline-block;
    background: rgba(249,115,22,0.2);
    color: #fbbf24;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(249,115,22,0.3);
}
.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero-content h1 .highlight { color: var(--orange); }
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Card */
.search-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    max-width: 760px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.search-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0;
}
.search-tab {
    padding: 8px 18px;
    background: none;
    border: none;
    font-weight: 600;
    color: #999;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    font-size: 0.9rem;
}
.search-tab.active {
    color: var(--navy);
    border-bottom-color: var(--orange);
}
.search-row {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap;
}
.search-field {
    flex: 1;
    min-width: 140px;
}
.search-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.search-field select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 0.9rem;
    background: white;
    color: var(--text);
}
.btn-search {
    padding: 11px 24px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.btn-search:hover { background: #ea6a0a; }

/* Trust Bar */
.trust-bar {
    background: rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}
.trust-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 30px;
}
.trust-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
}
.trust-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
    margin-top: 2px;
}
.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Sections */
.section {
    padding: 80px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}
.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 480px;
    margin: 0 auto;
}
.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* Destination Cards */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.destination-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}
.destination-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(249,115,22,0.12);
    transform: translateY(-2px);
}
.destination-card .dest-info {
    min-width: 0;
    flex: 1;
    position: static;
    padding: 0;
}
.destination-card .dest-name-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 4px;
}
.destination-card .dest-flag {
    font-size: 1.35rem;
    line-height: 1;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}
.destination-card .dest-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    line-height: 1.2;
}
.dest-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.dest-fee { color: var(--orange); font-weight: 700; font-size: 0.82rem; }
.dest-time { color: var(--text-light); font-size: 0.8rem; }
.dest-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--orange);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}
.dest-arrow { margin-left: auto; color: var(--orange); font-size: 1.1rem; }

/* How It Works */
.how-it-works-section { background: #f8f9fc; }
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.step-number {
    display: inline-flex;
    width: 36px;
    height: 36px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 12px;
}
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step-item h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-item p { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; }
.step-connector {
    font-size: 1.5rem;
    color: var(--orange);
    font-weight: 700;
    padding: 0 16px;
    flex-shrink: 0;
}

/* Visa Type Cards */
.visa-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}
.visa-type-card {
    padding: 24px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.25s;
}
.visa-type-card:hover {
    border-color: var(--navy);
    box-shadow: 0 8px 24px rgba(15,43,91,0.08);
    transform: translateY(-2px);
}
.vt-icon { font-size: 2.2rem; margin-bottom: 12px; }
.visa-type-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.visa-type-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; margin-bottom: 12px; }
.visa-type-card a { color: var(--orange); font-weight: 600; text-decoration: none; font-size: 0.88rem; }

/* Tools Grid */
.tools-section { background: #f8f9fc; }
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}
.tool-card {
    padding: 28px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.25s;
}
.tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
.tool-icon { font-size: 2.2rem; margin-bottom: 14px; }
.tool-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.tool-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; margin-bottom: 16px; }
.btn-tool {
    display: inline-block;
    color: var(--orange);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.blog-card {
    background: white;
    border-radius: 16px;
    border: 2px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.25s;
    text-decoration: none;
    color: var(--text);
}
.blog-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 32px rgba(249,115,22,0.1);
    transform: translateY(-2px);
}
.blog-card-img {
    display: block;
    height: 180px;
    overflow: hidden;
    background: #f0f4ff;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f0fe, #f0f4ff);
}
.blog-placeholder-icon { font-size: 3rem; }
.blog-card-body { padding: 20px; }
.blog-card-meta { font-size: 0.78rem; color: var(--text-light); margin-bottom: 10px; }
.blog-card-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-excerpt { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.blog-read-more { color: var(--orange); font-weight: 600; font-size: 0.88rem; text-decoration: none; }

/* Visa Free Section */
.visa-free-section { background: #f8f9fc; }
.visa-free-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.visa-free-text h2 { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.visa-free-text p { font-size: 1rem; color: var(--text-light); margin-bottom: 24px; }
.vf-list { margin-bottom: 24px; }
.vf-category { margin-bottom: 14px; }
.vf-category h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.vf-category p { font-size: 0.85rem; color: var(--text-light); }
.visa-free-map {
    background: linear-gradient(135deg, #e8f0fe, #f0f4ff);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
}
.map-globe { font-size: 5rem; margin-bottom: 16px; }
.map-stat-num { font-size: 3rem; font-weight: 800; color: var(--navy); }
.map-stat-label { color: var(--text-light); font-size: 0.95rem; }

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.testimonial-card {
    padding: 28px;
    background: white;
    border-radius: 16px;
    border: 2px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.testimonial-stars { font-size: 0.9rem; margin-bottom: 12px; }
.testimonial-text { font-size: 0.92rem; color: var(--text); line-height: 1.6; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 40px; height: 40px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.author-info strong { display: block; font-size: 0.9rem; color: var(--navy); }
.author-info span { font-size: 0.78rem; color: var(--text-light); }

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--navy), #1a3d7c);
    padding: 64px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-text h2 { font-size: 1.8rem; font-weight: 800; color: white; margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.75); font-size: 1rem; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-cta-primary {
    padding: 14px 28px;
    background: var(--orange);
    color: white;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: background 0.2s;
}
.btn-cta-primary:hover { background: #ea6a0a; }
.btn-cta-secondary {
    padding: 14px 28px;
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: all 0.2s;
}
.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

/* ==============================
   FOOTER
   ============================== */
.site-footer { background: #0a1f45; }
.footer-top { padding: 60px 0 40px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-tagline { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.6; margin: 14px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.2s;
}
.social-link:hover { background: var(--orange); color: white; }
.footer-heading {
    color: white;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a:hover { color: var(--orange); }
.footer-trust-badges { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.trust-badge {
    padding: 4px 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}
.footer-payment { margin-top: 16px; }
.footer-payment span { font-size: 0.78rem; color: rgba(255,255,255,0.4); display: block; margin-bottom: 6px; }
.payment-methods { display: flex; gap: 8px; flex-wrap: wrap; }
.payment-icon { font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}
.footer-bottom-inner { text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin: 4px 0; }
.footer-disclaimer { font-size: 0.75rem !important; }

/* ==============================
   BLOG LAYOUT
   ============================== */
.page-container { padding: 40px var(--container-padding); }
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}
.page-title-bar { margin-bottom: 32px; }
.page-title-bar h1 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.page-title-bar p { color: var(--text-light); }
.blog-list { display: flex; flex-direction: column; gap: 24px; }
.blog-card-horizontal {
    display: flex !important;
    flex-direction: row !important;
}
.blog-card-horizontal .blog-card-img {
    width: 220px;
    height: 160px;
    flex-shrink: 0;
    border-radius: 12px 0 0 12px;
}
.blog-card-horizontal .blog-card-body { padding: 20px 24px; }
.blog-read-time { margin-left: 8px; }
.btn-read-more {
    display: inline-block;
    padding: 8px 18px;
    background: var(--orange);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    margin-top: 4px;
}
.blog-pagination { margin-top: 40px; display: flex; justify-content: center; gap: 8px; }
.blog-pagination .page-numbers {
    padding: 8px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}
.blog-pagination .page-numbers.current {
    background: var(--navy);
    border-color: var(--navy);
    color: white;
}

/* Sidebar */
.blog-sidebar { position: sticky; top: 88px; }
.sidebar-widget {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}
.widget-title { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.popular-posts { list-style: none; padding: 0; margin: 0; }
.popular-posts li { display: flex; flex-direction: column; padding: 8px 0; border-bottom: 1px solid #f0f0f0; }
.popular-posts a { font-size: 0.85rem; color: var(--navy); text-decoration: none; font-weight: 600; line-height: 1.4; }
.popular-posts span { font-size: 0.75rem; color: var(--text-light); margin-top: 2px; }
.sidebar-cta-card { background: linear-gradient(135deg, var(--navy), #1a3d7c); border-color: var(--navy); color: white; }
.sidebar-cta-card h3 { color: white; }
.sidebar-cta-card p { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin-bottom: 14px; }
.btn-full { display: block; text-align: center; }
.sidebar-visa-list { list-style: none; padding: 0; margin: 0; }
.sidebar-visa-list li { border-bottom: 1px solid #f0f0f0; }
.sidebar-visa-list a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 4px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}
.sidebar-visa-list a:hover { color: var(--orange); }

/* No Posts */
.no-posts { text-align: center; padding: 60px 20px; }
.no-posts-icon { font-size: 3rem; margin-bottom: 16px; }

/* ==============================
   SINGLE POST
   ============================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--orange); text-decoration: none; }
.single-post-header { margin-bottom: 28px; }
.single-post-meta { font-size: 0.82rem; color: var(--text-light); margin-bottom: 12px; display: flex; gap: 14px; }
.single-post-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy); margin-bottom: 16px; line-height: 1.25; }
.single-post-author { display: flex; align-items: center; gap: 10px; }
.author-avatar-sm {
    width: 36px; height: 36px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.single-post-author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.single-post-author span { font-size: 0.78rem; color: var(--text-light); }
.single-post-featured { border-radius: 16px; overflow: hidden; margin-bottom: 32px; }
.single-post-featured img { width: 100%; max-height: 420px; object-fit: cover; }
.single-post-content { line-height: 1.8; color: var(--text); font-size: 1rem; }
.single-post-content h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin: 32px 0 14px; }
.single-post-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.single-post-content ul, .single-post-content ol { padding-left: 24px; margin-bottom: 20px; }
.single-post-content li { margin-bottom: 6px; }
.post-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid #f0f0f0;
    flex-wrap: wrap;
}
.share-btn {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
}
.share-twitter { background: #000; }
.share-facebook { background: #1877f2; }
.share-whatsapp { background: #25d366; }
.author-box {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #f8f9fc;
    border-radius: 12px;
    margin-top: 32px;
}
.author-box .author-avatar { width: 56px; height: 56px; background: var(--navy); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.3rem; flex-shrink: 0; }
.author-box-content h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.author-box-content p { font-size: 0.87rem; color: var(--text-light); line-height: 1.6; }
.related-posts { margin-top: 40px; }
.related-posts h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: #f8f9fc;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}
.related-card:hover { background: #e8f0fe; }
.related-icon { font-size: 1.5rem; }
.related-card h4 { font-size: 0.85rem; font-weight: 600; color: var(--navy); line-height: 1.4; }
.related-card span { font-size: 0.75rem; color: var(--text-light); }
.post-navigation {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 2px solid #f0f0f0;
}
.post-nav-link {
    flex: 1;
    padding: 16px;
    background: #f8f9fc;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.post-nav-link:hover { background: #e8f0fe; }
.post-nav-link span { font-size: 0.8rem; color: var(--text-light); }
.post-nav-link strong { font-size: 0.9rem; color: var(--navy); }
.post-nav-link.next { text-align: right; }

/* ==============================
   PAGE LAYOUT
   ============================== */
.page-content-wrap {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    align-items: start;
}
.page-title { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.page-content { line-height: 1.8; color: var(--text); }
.page-content h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin: 28px 0 12px; }

/* ==============================
   LOGIN PAGE
   ============================== */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4ff, #e8f0fe);
    padding: 40px 20px;
}
.login-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 60px rgba(15,43,91,0.12);
}
.login-logo { text-align: center; margin-bottom: 28px; }
.auth-tabs {
    display: flex;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 28px;
}
.auth-tab {
    flex: 1;
    padding: 12px;
    border: none;
    background: none;
    font-weight: 700;
    font-size: 0.95rem;
    color: #999;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}
.auth-tab.active { color: var(--navy); border-bottom-color: var(--orange); }
.auth-panel { display: none; }
.auth-panel.active { display: block; }
.auth-panel h2 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.auth-subtitle { color: var(--text-light); font-size: 0.88rem; margin-bottom: 24px; }
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select {
    padding: 11px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 0.92rem;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--navy);
}
.password-wrap { position: relative; }
.password-wrap input { padding-right: 44px; }
.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}
.checkbox-label { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; cursor: pointer; }
.forgot-link { color: var(--orange); text-decoration: none; font-weight: 600; }
.form-hint { font-size: 0.78rem; color: var(--text-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-auth {
    width: 100%;
    padding: 13px;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-auth:hover { background: #1a3d7c; }
.auth-divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
}
.auth-divider::before, .auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e8e8e8;
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }
.auth-divider span { background: white; padding: 0 12px; font-size: 0.8rem; color: #999; }
.social-login { display: flex; flex-direction: column; gap: 10px; }
.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    background: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-social:hover { border-color: var(--navy); }
.auth-error {
    padding: 10px 14px;
    background: #fff0f0;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    color: #c62828;
    font-size: 0.88rem;
    margin-bottom: 8px;
}
.auth-success {
    padding: 10px 14px;
    background: #f0fff4;
    border: 1px solid #86efac;
    border-radius: 8px;
    color: #166534;
    font-size: 0.88rem;
    margin-bottom: 8px;
}
.password-strength { margin-top: 6px; }
.login-benefits {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}
.login-benefits h4 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.login-benefits ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.login-benefits li { font-size: 0.82rem; color: var(--text-light); }

/* ==============================
   DASHBOARD
   ============================== */
.dashboard-page { padding: 40px 0; background: #f8f9fc; min-height: 100vh; }
.dashboard-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 28px;
    align-items: start;
}
.dashboard-sidebar {
    position: sticky;
    top: 88px;
}
.user-profile-card {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.profile-avatar {
    width: 46px; height: 46px;
    background: var(--orange);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.profile-info h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.profile-info span { font-size: 0.75rem; color: var(--text-light); }
.dashboard-nav {
    background: white;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.dash-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}
.dash-nav-item:hover, .dash-nav-item.active {
    background: rgba(15,43,91,0.07);
    color: var(--navy);
}
.dash-nav-icon { font-size: 1rem; }
.dash-logout { color: #e53e3e; margin-top: 8px; border-top: 1px solid #f0f0f0; padding-top: 12px; }
.dash-logout:hover { background: #fff0f0 !important; color: #c62828 !important; }
.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.dashboard-header h1 { font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.dash-stat-card {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.stat-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.stat-number { font-size: 1.6rem; font-weight: 800; color: var(--navy); }
.stat-label { font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }
.dash-section {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.dash-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dash-section h2 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 0; }
.btn-link { color: var(--orange); font-size: 0.85rem; font-weight: 600; text-decoration: none; }
.applications-empty { text-align: center; padding: 40px 20px; }
.empty-icon { font-size: 3rem; margin-bottom: 12px; }
.applications-empty h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.applications-empty p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 20px; }
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.quick-action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: #f8f9fc;
    border-radius: 12px;
    text-decoration: none;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.2s;
    text-align: center;
}
.quick-action-card:hover { background: #e8f0fe; }
.qa-icon { font-size: 1.6rem; }
.dash-blog-grid { display: flex; flex-direction: column; gap: 12px; }
.dash-blog-card {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: #f8f9fc;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    transition: background 0.2s;
}
.dash-blog-card:hover { background: #e8f0fe; }
.dash-blog-icon { font-size: 1.4rem; flex-shrink: 0; }
.dash-blog-card h4 { font-size: 0.87rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.dash-blog-card span { font-size: 0.75rem; color: var(--text-light); }

/* ==============================
   VISA DIRECTORY
   ============================== */
.visa-dir-hero {
    background: linear-gradient(135deg, var(--navy), #1a3d7c);
    padding: 56px 0 40px;
    text-align: center;
    color: white;
}
.visa-dir-hero h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 12px; }
.visa-dir-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 28px; }
.visa-filter-bar { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.filter-btn {
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
}
.visa-dir-container { padding: 40px var(--container-padding); }
.visa-dir-section { margin-bottom: 48px; }
.visa-dir-section h2 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.visa-dir-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.visa-dir-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text);
    position: relative;
    transition: all 0.25s;
}
.visa-dir-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(249,115,22,0.1);
    transform: translateY(-2px);
}
.vdc-flag { font-size: 2.4rem; flex-shrink: 0; }
.vdc-content h3 { font-size: 0.97rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.vdc-details { display: flex; gap: 10px; margin-bottom: 6px; }
.vdc-fee { color: var(--orange); font-weight: 700; font-size: 0.82rem; }
.vdc-time { color: var(--text-light); font-size: 0.8rem; }
.vdc-types { display: flex; gap: 4px; flex-wrap: wrap; }
.vdc-type-tag {
    padding: 2px 8px;
    background: #f0f4ff;
    color: var(--navy);
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
}
.vdc-arrow { margin-left: auto; color: var(--orange); font-size: 1.2rem; }
.vdc-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--orange);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
}
.visa-region-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 8px; }
.region-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.region-item:hover { border-color: var(--orange); color: var(--navy); }
.region-item span { font-size: 0.78rem; color: var(--text-light); font-weight: 400; }
.visa-dir-cta {
    background: linear-gradient(135deg, #f0f4ff, #e8f0fe);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    margin-top: 48px;
}
.vdc-cta-inner h2 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.vdc-cta-inner p { color: var(--text-light); margin-bottom: 24px; }
.btn-lg { padding: 15px 32px; font-size: 1rem; }

/* ==============================
   TOOL PAGES
   ============================== */
.tool-page { max-width: 800px; margin: 0 auto; padding: 40px 0; }
.tool-hero { text-align: center; margin-bottom: 36px; }
.tool-icon-lg { font-size: 3.5rem; margin-bottom: 14px; }
.tool-hero h1 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.tool-hero p { font-size: 1rem; color: var(--text-light); max-width: 500px; margin: 0 auto; }
.tool-card-wrap {
    background: white;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    margin-bottom: 48px;
}
.tool-form { display: flex; flex-direction: column; gap: 20px; }
.tool-steps { margin-bottom: 48px; }
.tool-steps h2 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 24px; text-align: center; }
.tool-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tool-step { text-align: center; padding: 24px; background: #f8f9fc; border-radius: 14px; }
.ts-num {
    display: inline-flex;
    width: 40px; height: 40px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 12px;
}
.tool-step h3 { font-size: 0.97rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.tool-step p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }

/* Track Result States */
.track-loading, .track-error, .track-not-found {
    padding: 24px;
    border-radius: 12px;
    margin-top: 20px;
    text-align: center;
}
.track-loading { background: #f0f4ff; color: var(--navy); }
.track-error { background: #fff0f0; color: #c62828; }
.track-not-found { background: #f8f9fc; }
.tnf-icon { font-size: 2.5rem; margin-bottom: 12px; }
.track-not-found h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.track-not-found p { font-size: 0.88rem; color: var(--text-light); }
.track-not-found a { color: var(--orange); }

/* Track Info Grid */
.track-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.track-info-card { text-align: center; padding: 24px; background: #f8f9fc; border-radius: 14px; }
.tic-icon { font-size: 2rem; margin-bottom: 12px; }
.track-info-card h3 { font-size: 0.97rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.track-info-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }
.status-guide h2 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.status-steps { display: flex; flex-direction: column; gap: 14px; }
.status-step { display: flex; gap: 16px; align-items: flex-start; padding: 16px; background: white; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.ss-icon { font-size: 1.4rem; flex-shrink: 0; }
.ss-content strong { display: block; font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.ss-content p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* Eligibility Result */
.elig-loading { padding: 24px; background: #f0f4ff; border-radius: 12px; text-align: center; margin-top: 20px; color: var(--navy); }
.elig-result { padding: 28px; border-radius: 12px; margin-top: 20px; }
.elig-approved { background: #f0fff4; border: 2px solid #86efac; }
.elig-status { font-size: 1.1rem; font-weight: 700; color: #166534; margin-bottom: 10px; }
.elig-result h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.elig-result p { font-size: 0.88rem; color: var(--text); margin-bottom: 12px; }
.elig-result ul { padding-left: 20px; margin-bottom: 20px; }
.elig-result li { font-size: 0.88rem; margin-bottom: 4px; }

/* Popular Checks */
.popular-checks h2 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.popular-checks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pc-card {
    padding: 14px 16px;
    background: #f0f4ff;
    border-radius: 10px;
    text-decoration: none;
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    border: 2px solid transparent;
}
.pc-card:hover { border-color: var(--navy); background: white; }

/* Fee Table */
.fee-breakdown { padding: 24px; background: #f0fff4; border: 2px solid #86efac; border-radius: 12px; margin-top: 20px; }
.fee-breakdown h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.fee-table { width: 100%; border-collapse: collapse; margin-bottom: 14px; }
.fee-table td { padding: 10px 14px; border-bottom: 1px solid #d1fae5; font-size: 0.92rem; }
.fee-table td:last-child { text-align: right; color: var(--navy); font-weight: 600; }
.fee-total td { font-size: 1.05rem; color: var(--orange) !important; border-bottom: none; }
.fee-note { font-size: 0.78rem; color: #999; margin-bottom: 16px; }

/* Scroll to Top */
.scroll-top-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 500;
    box-shadow: 0 4px 16px rgba(15,43,91,0.3);
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; }
.scroll-top-btn:hover { background: var(--orange); }

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: var(--orange);
    color: white;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-primary:hover { background: #ea6a0a; }
.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid var(--navy);
    color: var(--navy);
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
}
.btn-secondary:hover { background: var(--navy); color: white; }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .visa-free-inner { grid-template-columns: 1fr; }
    .mega-menu { min-width: 400px; }
    .dash-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .topbar { display: none; }
    .main-nav { display: none; }
    .main-nav.mobile-open {
        display: block;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        overflow-y: auto;
        padding: 16px;
        z-index: 999;
        box-shadow: 0 8px 40px rgba(0,0,0,0.2);
    }
    .main-nav.mobile-open .nav-menu { flex-direction: column; }
    .main-nav.mobile-open .nav-item > a { padding: 14px; border-bottom: 1px solid #f0f0f0; }
    .main-nav.mobile-open .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 8px;
        background: #f8f9fc;
        margin: 4px 12px;
    }
    .mobile-menu-btn { display: flex; }
    .btn-apply { display: none; }
    .blog-layout, .page-content-wrap { grid-template-columns: 1fr; }
    .blog-sidebar, .page-sidebar { display: none; }
    .blog-card-horizontal { flex-direction: column !important; }
    .blog-card-horizontal .blog-card-img { width: 100% !important; }
    .steps-grid { flex-direction: column; align-items: center; }
    .step-connector { transform: rotate(90deg); padding: 4px 0; }
    .cta-inner { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .dashboard-layout { grid-template-columns: 1fr; }
    .dash-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .quick-actions-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .search-row { flex-direction: column; }
    .trust-bar-inner { gap: 0; }
    .trust-item { padding: 6px 16px; }
    .trust-divider { display: none; }
    .related-grid { grid-template-columns: 1fr; }
    .tool-steps-grid { grid-template-columns: 1fr; }
    .track-info-grid { grid-template-columns: 1fr; }
    .popular-checks-grid { grid-template-columns: repeat(2, 1fr); }
    .login-card { padding: 24px; }
}

@media (max-width: 480px) {
    .destinations-grid { grid-template-columns: 1fr; }
    .visa-types-grid { grid-template-columns: repeat(2, 1fr); }
    .tools-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .dash-stats-grid { grid-template-columns: 1fr; }
    .quick-actions-grid { grid-template-columns: repeat(2, 1fr); }
    .popular-checks-grid { grid-template-columns: 1fr; }
}

/* ==============================
   HOMEPAGE V2 (ISOLATED)
   ============================== */
.vft-home2 {
    background:
        radial-gradient(1200px 500px at -10% -10%, rgba(255, 150, 43, 0.18), transparent 60%),
        radial-gradient(900px 380px at 105% 10%, rgba(15, 43, 91, 0.16), transparent 65%),
        #f7f9fc;
    color: #11284f;
}

.vft-home2-hero {
    padding: 64px 0 44px;
}

.vft-home2-hero-wrap {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: stretch;
}

.vft-home2-badge {
    display: inline-block;
    background: #0f2b5b;
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 7px 12px;
    margin-bottom: 14px;
}

.vft-home2-copy h1 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.05;
    color: #0f2b5b;
    max-width: 14ch;
}

.vft-home2-sub {
    margin-top: 16px;
    max-width: 58ch;
    color: #48556b;
    font-size: 1.03rem;
    line-height: 1.65;
}

.vft-home2-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.vft-home2-btn {
    border: none;
    border-radius: 10px;
    padding: 12px 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.vft-home2-btn-primary {
    background: #ff8b2c;
    color: #fff;
}

.vft-home2-btn-primary:hover {
    background: #eb7718;
}

.vft-home2-btn-ghost {
    background: #fff;
    color: #0f2b5b;
    border: 1px solid #d5ddea;
}

.vft-home2-btn-full {
    width: 100%;
    margin-top: 12px;
}

.vft-home2-metrics {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.vft-home2-metrics li {
    background: #fff;
    border: 1px solid #e3e8f1;
    border-radius: 12px;
    padding: 12px;
}

.vft-home2-metrics strong {
    display: block;
    color: #0f2b5b;
    font-size: 1.05rem;
}

.vft-home2-metrics span {
    color: #5f6c82;
    font-size: 0.8rem;
}

.vft-home2-panel {
    background: #fff;
    border: 1px solid #dce4f0;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 16px 38px rgba(10, 27, 58, 0.12);
}

.vft-home2-panel h2 {
    margin: 0;
    font-size: 1.2rem;
    color: #0f2b5b;
}

.vft-home2-panel p {
    margin: 8px 0 16px;
    color: #5b6880;
}

.vft-home2-form-row label {
    display: block;
    font-size: 0.82rem;
    color: #41506a;
    margin-bottom: 6px;
}

.vft-home2-form-row select {
    width: 100%;
    min-height: 44px;
    border-radius: 10px;
    border: 1px solid #cfd9e8;
    padding: 0 12px;
    background: #fff;
}

.vft-home2-section {
    padding: 24px 0 52px;
}

.vft-home2-section-alt {
    background: #ffffff;
    border-top: 1px solid #eef1f6;
    border-bottom: 1px solid #eef1f6;
}

.vft-home2-head h2 {
    margin: 0;
    color: #0f2b5b;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.vft-home2-head p {
    margin-top: 8px;
    color: #5e6c82;
}

.vft-home2-destination-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.vft-home2-destination-card {
    background: #fff;
    border: 1px solid #e4e9f1;
    border-radius: 14px;
    padding: 14px;
    text-decoration: none;
    display: flex;
    gap: 12px;
    align-items: center;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vft-home2-destination-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(13, 33, 68, 0.12);
}

.vft-home2-flag {
    font-size: 1.55rem;
    line-height: 1;
}

.vft-home2-destination-card h3 {
    margin: 0;
    color: #0f2b5b;
    font-size: 1rem;
}

.vft-home2-destination-card p {
    margin: 3px 0 0;
    color: #607089;
    font-size: 0.84rem;
}

.vft-home2-arrow {
    margin-left: auto;
    color: #8a98ae;
    font-weight: 700;
}

.vft-home2-steps {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.vft-home2-steps article {
    background: linear-gradient(180deg, #ffffff, #fbfdff);
    border: 1px solid #e4ebf5;
    border-radius: 14px;
    padding: 16px;
}

.vft-home2-steps span {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0f2b5b;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.vft-home2-steps h3 {
    margin: 0;
    color: #0f2b5b;
    font-size: 1rem;
}

.vft-home2-steps p {
    margin: 8px 0 0;
    color: #5f6d84;
    font-size: 0.9rem;
    line-height: 1.5;
}

.vft-home2-blog-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.vft-home2-blog-card {
    background: #fff;
    border: 1px solid #e4ebf5;
    border-radius: 14px;
    padding: 16px;
}

.vft-home2-blog-card h3 {
    margin: 0;
    font-size: 1.03rem;
    line-height: 1.35;
}

.vft-home2-blog-card h3 a {
    color: #0f2b5b;
    text-decoration: none;
}

.vft-home2-blog-card p {
    margin: 9px 0 0;
    color: #5f6d84;
    font-size: 0.9rem;
    line-height: 1.55;
}

.vft-home2-read {
    margin-top: 12px;
    display: inline-block;
    color: #e56f0a;
    text-decoration: none;
    font-weight: 700;
}

.vft-home2-cta {
    padding: 18px 0 56px;
}

.vft-home2-cta-wrap {
    border-radius: 18px;
    background: linear-gradient(135deg, #0f2b5b, #1f4f95);
    padding: 28px;
    color: #fff;
    text-align: center;
}

.vft-home2-cta h2 {
    margin: 0;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.vft-home2-cta p {
    margin: 10px auto 16px;
    max-width: 52ch;
    color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 1024px) {
    .vft-home2-hero-wrap {
        grid-template-columns: 1fr;
    }

    .vft-home2-destination-grid,
    .vft-home2-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vft-home2-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .vft-home2 {
        font-size: 14px;
    }

    .vft-home2-hero {
        padding-top: 36px;
    }

    .vft-home2-hero-wrap {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vft-home2-copy h1 {
        font-size: clamp(1.5rem, 4vw, 2.4rem);
    }

    .vft-home2-sub {
        font-size: 0.95rem;
    }

    .vft-home2-actions {
        flex-direction: column;
    }

    .vft-home2-btn {
        width: 100%;
    }

    .vft-home2-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .vft-home2-metrics li {
        padding: 12px;
        font-size: 0.85rem;
    }

    .vft-home2-panel {
        padding: 18px;
    }

    .vft-home2-destination-grid,
    .vft-home2-blog-grid,
    .vft-home2-steps {
        grid-template-columns: 1fr;
    }

    .vft-home2-head h2 {
        font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    }

    .vft-home2-destination-card {
        padding: 12px;
    }

    .vft-home2-flag {
        font-size: 1.3rem;
    }

    .vft-home2-cta-wrap {
        padding: 20px;
    }

    .vft-home2-cta h2 {
        font-size: clamp(1.2rem, 2.4vw, 1.6rem);
    }
}

@media (max-width: 480px) {
    .vft-home2-hero {
        padding-top: 24px;
        padding-bottom: 20px;
    }

    .vft-home2-copy h1 {
        font-size: 1.3rem;
        max-width: 100%;
    }

    .vft-home2-sub {
        font-size: 0.9rem;
    }

    .vft-home2-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .vft-home2-actions {
        gap: 8px;
    }

    .vft-home2-metrics {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .vft-home2-metrics strong {
        font-size: 0.95rem;
    }

    .vft-home2-metrics span {
        font-size: 0.75rem;
    }

    .vft-home2-section {
        padding: 20px 0 32px;
    }

    .vft-home2-destination-grid,
    .vft-home2-blog-grid,
    .vft-home2-steps {
        gap: 10px;
    }

    .vft-home2-head h2 {
        font-size: 1.3rem;
    }

    .vft-home2-head p {
        font-size: 0.85rem;
    }

    .vft-home2-destination-card h3 {
        font-size: 0.9rem;
    }

    .vft-home2-destination-card p {
        font-size: 0.75rem;
    }

    .vft-home2-steps span {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .vft-home2-steps h3 {
        font-size: 0.9rem;
    }

    .vft-home2-steps p {
        font-size: 0.8rem;
    }

    .vft-home2-blog-card {
        padding: 12px;
    }

    .vft-home2-blog-card h3 {
        font-size: 0.95rem;
    }

    .vft-home2-blog-card p {
        font-size: 0.8rem;
    }

    .vft-home2-cta {
        padding: 16px 0 32px;
    }

    .vft-home2-cta-wrap {
        padding: 16px;
    }

    .vft-home2-cta h2 {
        font-size: 1.2rem;
    }

    .vft-home2-cta p {
        font-size: 0.85rem;
    }
}

/* ==============================
   ELIGIBILITY CHECKER V2 (ISOLATED)
   ============================== */

.vft-elig {
    background: #f7f9fc;
    color: #11284f;
}

.vft-elig-hero {
    background: linear-gradient(135deg, #0f2b5b 0%, #1a4a8a 60%, #0d2045 100%);
    padding: 56px 0 44px;
    color: #fff;
    text-align: center;
}

.vft-elig-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 12px 0 0;
}

.vft-elig-hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 54ch;
    margin: 12px auto 0;
    line-height: 1.65;
}

.vft-elig-metrics {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 28px;
    flex-wrap: wrap;
}

.vft-elig-metric {
    padding: 12px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.vft-elig-metric:last-child { border-right: none; }

.vft-elig-metric strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.vft-elig-metric span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
}

.vft-elig-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 16px 48px rgba(10, 27, 58, 0.12);
    max-width: 780px;
    margin: 0 auto;
}

.vft-elig-form-head {
    text-align: center;
    margin-bottom: 28px;
}

.vft-elig-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.vft-elig-form-head h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f2b5b;
    margin: 0 0 6px;
}

.vft-elig-form-head p {
    color: #5e6c82;
    font-size: 0.95rem;
    margin: 0;
}

.vft-elig-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 24px;
}

.vft-elig-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #41506a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.vft-elig-field select {
    width: 100%;
    min-height: 44px;
    border-radius: 10px;
    border: 1.5px solid #cfd9e8;
    padding: 0 12px;
    background: #f8fafc;
    font-size: 0.92rem;
    color: #1e293b;
    transition: border-color 0.2s;
    font-family: inherit;
}

.vft-elig-field select:focus {
    outline: none;
    border-color: #0f2b5b;
    background: #fff;
}

.vft-elig-popular-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

@media (max-width: 1024px) {
    .vft-elig-popular-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vft-elig-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vft-elig {
        font-size: 14px;
    }

    .vft-elig-hero {
        padding: 36px 0 28px;
    }

    .vft-elig-form-card {
        padding: 22px;
    }

    .vft-elig-popular-grid {
        grid-template-columns: 1fr;
    }

    .vft-elig-metric {
        border-right: none;
        padding: 8px 20px;
    }
}

@media (max-width: 480px) {
    .vft-elig-form-card {
        padding: 14px;
    }

    .vft-elig-form-grid {
        gap: 12px;
    }
}

/* ==============================
   VISAS DIRECTORY V2 (ISOLATED)
   ============================== */

.vft-visa {
    background: #f7f9fc;
    color: #11284f;
}

.vft-visa-hero {
    background: linear-gradient(135deg, #0f2b5b 0%, #1a4a8a 60%, #0d2045 100%);
    padding: 56px 0 0;
    color: #fff;
}

.vft-visa-hero-copy {
    text-align: center;
    padding-bottom: 36px;
}

.vft-visa-hero-copy h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 12px 0 0;
}

.vft-visa-hero-copy p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 54ch;
    margin: 12px auto 0;
    line-height: 1.65;
}

.vft-visa-filter-bar {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
}

.vft-visa-filter-inner {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.vft-visa-filter-btn {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.vft-visa-filter-btn.active,
.vft-visa-filter-btn:hover {
    background: #ff8b2c;
    border-color: #ff8b2c;
    color: #fff;
}

.vft-visa-region-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.vft-visa-region-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #fff;
    border: 1.5px solid #e4e9f1;
    border-radius: 12px;
    text-decoration: none;
    color: #0f2b5b;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.vft-visa-region-item:hover {
    border-color: #ff8b2c;
    box-shadow: 0 4px 14px rgba(255, 139, 44, 0.15);
    transform: translateY(-1px);
}

.vft-visa-region-item span {
    font-size: 0.78rem;
    color: #5e6c82;
    font-weight: 400;
    text-align: right;
}

.vft-visa-popular-badge {
    display: inline-block;
    background: #ff8b2c;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    margin-left: auto;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .vft-visa-region-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .vft-visa {
        font-size: 14px;
    }

    .vft-visa-hero {
        padding-top: 36px;
    }

    .vft-visa-filter-btn {
        font-size: 0.82rem;
        padding: 7px 14px;
    }

    .vft-visa-region-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .vft-visa-region-grid {
        gap: 8px;
    }
}
