/*
 * The Holidave — visa.css
 */


/* ─── VSP = Visa Services Page — all prefixed ─── */
.vsp-wrap,
.vsp-wrap *,
.vsp-wrap *::before,
.vsp-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* Inter on everything except FA icons */
.vsp-wrap *:not(i):not(.fa):not(.fas):not(.far):not(.fab):not(.fal) {
  font-family: 'Inter', sans-serif;
}

/* Restore FA font */
.vsp-wrap i,
.vsp-wrap .fa,
.vsp-wrap .fas,
.vsp-wrap .far,
.vsp-wrap .fab {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "FontAwesome" !important;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

/* ─── Tokens — exact same as package-detail ─── */
.vsp-wrap {
  --wo: #FB5B32;
  --wo-lt: #FFF0EB;
  --wo-dk: #D94520;
  --wt: #0a5b66;
  --wt-lt: #E3F2F4;
  --wt-dk: #074650;
  --wblk: #111111;
  --wgd: #444444;
  --wg: #767676;
  --wg-lt: #F4F4F2;
  --wbd: #E2E2DE;
  --ww: #FFFFFF;
  --wgbl: #4285F4;
  --wgye: #FBBC05;
  --wgre: #EA4335;
  --wggr: #34A853;
  --wwa: #25D366;
  --wwa-dk: #1da851;
  --wr: 8px;
  --wrl: 12px;
  --wrxl: 18px;

  font-size: 16px;
  line-height: 1.55;
  color: var(--wblk);
  background: #F2F2F0;
}

/* ─── PAGE WRAPPER ─── */
.vsp-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.25rem 2rem 4rem;
}

/* ─── BREADCRUMB ─── */
.vsp-bc {
  margin-bottom: 1.25rem;
}
.vsp-bc-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.vsp-bc-item {
  font-size: 13px;
  color: var(--wg);
  display: flex;
  align-items: center;
}
.vsp-bc-link {
  color: var(--wg);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .15s;
  font-weight: 500;
}
.vsp-bc-link i { font-size: 12px; }
.vsp-bc-link:hover { color: var(--wt); }
.vsp-bc-sep {
  color: var(--wbd);
  font-size: 9px;
  display: flex;
  align-items: center;
  padding: 0 2px;
}
.vsp-bc-current {
  color: var(--wo);
  font-weight: 600;
}

/* ─── HERO ─── */
.vsp-hero {
  background: linear-gradient(135deg, var(--wt-dk) 0%, var(--wt) 60%, #1a8a9a 100%);
  border-radius: var(--wrxl);
  padding: 3.5rem 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.vsp-hero::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.vsp-hero::after {
  content: '';
  position: absolute;
  left: -40px; bottom: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.vsp-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.vsp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 99px;
  margin-bottom: 1.1rem;
}
.vsp-hero h1 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.vsp-hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 440px;
}
.vsp-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.vsp-btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--wo);
  color: #fff;
  border: none;
  border-radius: var(--wr);
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, transform .1s;
  white-space: nowrap;
}
.vsp-btn-orange:hover { background: var(--wo-dk); transform: scale(1.02); }
.vsp-btn-wa-hero {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--wwa);
  color: #fff;
  border: none;
  border-radius: var(--wr);
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}
.vsp-btn-wa-hero:hover { background: var(--wwa-dk); }
.vsp-btn-wa-hero svg { width: 16px; height: 16px; fill: #fff; flex-shrink: 0; }
.vsp-hero-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.vsp-ht {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.78);
}
.vsp-ht i { font-size: 13px; color: rgba(255,255,255,.6); }

/* Hero form card — same card style as package-detail form */
.vsp-hero-form {
  background: var(--ww);
  border: 1px solid var(--wbd);
  border-radius: var(--wrl);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}
.vsp-hf-head {
  background: linear-gradient(135deg, var(--wt-dk), var(--wt));
  padding: 1.1rem 1.35rem;
}
.vsp-hf-head h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.vsp-hf-head p { font-size: 12px; color: rgba(255,255,255,.72); }
.vsp-hf-body { padding: 1.1rem 1.35rem; }
.vsp-fg { margin-bottom: 10px; }
.vsp-fl { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--wblk); margin-bottom: 4px; }
.vsp-fi {
  width: 100%;
  border: 1.5px solid var(--wbd);
  border-radius: var(--wr);
  padding: 9px 11px;
  font-size: 13px;
  color: var(--wblk);
  background: var(--ww);
  outline: none;
  transition: border-color .15s;
  -webkit-appearance: none;
}
.vsp-fi:focus { border-color: var(--wt); box-shadow: 0 0 0 3px rgba(10,91,102,.08); }
.vsp-fi::placeholder { color: #bbb; }
.vsp-f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vsp-btn-submit {
  width: 100%;
  background: var(--wo);
  color: #fff;
  border: none;
  border-radius: var(--wr);
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background .15s, transform .1s;
}
.vsp-btn-submit:hover { background: var(--wo-dk); transform: scale(1.01); }

/* ─── STATS — matches package hl-card style exactly ─── */
.vsp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 1.5rem;
}
.vsp-stat-card {
  background: var(--ww);
  border: 1px solid var(--wbd);
  border-radius: var(--wrl);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-align: center;
  box-shadow: 0 1px 6px rgba(0,0,0,.05);
  transition: box-shadow .18s, transform .18s;
}
.vsp-stat-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.09); transform: translateY(-2px); }
.vsp-stat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.vsp-stat-num { font-size: 24px; font-weight: 700; color: var(--wblk); line-height: 1.1; }
.vsp-stat-lbl { font-size: 12px; color: var(--wg); font-weight: 500; }

/* ─── SECTION HEAD ─── */
.vsp-sec-head { margin-bottom: 1.25rem; }
.vsp-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--wo); margin-bottom: 6px; }
.vsp-sec-head h2 { font-size: 20px; font-weight: 700; color: var(--wblk); margin-bottom: 5px; }
.vsp-sec-head p { font-size: 14px; color: var(--wg); }

/* ─── HOW IT WORKS ─── */
.vsp-how-wrap {
  background: var(--ww);
  border: 1px solid var(--wbd);
  border-radius: var(--wrl);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 6px rgba(0,0,0,.05);
}
.vsp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 1.25rem;
}
.vsp-steps::before {
  content: '';
  position: absolute;
  top: 19px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--wt-lt) 0, var(--wt-lt) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}
.vsp-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 1rem;
  position: relative; z-index: 1;
}
.vsp-step-dot {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  margin-bottom: 12px;
  border: 2px solid var(--ww);
}
.vsp-step:nth-child(1) .vsp-step-dot { background: var(--wo); color: #fff; box-shadow: 0 0 0 4px var(--wo-lt); }
.vsp-step:nth-child(2) .vsp-step-dot { background: var(--wt); color: #fff; box-shadow: 0 0 0 4px var(--wt-lt); }
.vsp-step:nth-child(3) .vsp-step-dot { background: #6a1b9a; color: #fff; box-shadow: 0 0 0 4px #f3e5f5; }
.vsp-step:nth-child(4) .vsp-step-dot { background: #2e7d32; color: #fff; box-shadow: 0 0 0 4px #e8f5e9; }
.vsp-step h4 { font-size: 14px; font-weight: 700; color: var(--wblk); margin-bottom: 5px; }
.vsp-step p { font-size: 13px; color: var(--wg); line-height: 1.6; }

/* ─── COUNTRY CARDS — 4 per row ─── */
.vsp-countries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 1.5rem;
}
.vsp-country-card {
  background: var(--ww);
  border: 1px solid var(--wbd);
  border-radius: var(--wrl);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: var(--wblk);
  display: block;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  box-shadow: 0 1px 6px rgba(0,0,0,.05);
}
.vsp-country-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  border-color: rgba(10,91,102,.3);
}
/* Flag image area — white bg, full emoji flag, no gradient */
.vsp-cc-img {
  height: 150px;
  background: #f8f8f6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--wbd);
}
.vsp-cc-flag {
  font-size: 90px;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.12));
}
.vsp-cc-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 3px 9px;
  border-radius: 99px;
}
.vsp-badge-hot { background: var(--wo); color: #fff; }
.vsp-badge-new { background: var(--wt); color: #fff; }
.vsp-cc-body { padding: 14px 15px; }
.vsp-cc-name { font-size: 16px; font-weight: 700; color: var(--wblk); margin-bottom: 5px; }
.vsp-cc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--wg);
}
.vsp-cc-time { display: flex; align-items: center; gap: 4px; }
.vsp-cc-time i { font-size: 12px; color: var(--wt); }
.vsp-cc-arrow { color: var(--wo); font-size: 13px; transition: transform .2s; }
.vsp-country-card:hover .vsp-cc-arrow { transform: translateX(3px); }

/* ─── VISA TYPES ─── */
.vsp-types-wrap {
  background: var(--ww);
  border: 1px solid var(--wbd);
  border-radius: var(--wrl);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 6px rgba(0,0,0,.05);
}
.vsp-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 1.25rem; }
.vsp-type-card {
  background: var(--wg-lt);
  border: 1.5px solid var(--wbd);
  border-radius: var(--wrl);
  padding: 1.35rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.vsp-type-card:hover { border-color: var(--wt); box-shadow: 0 2px 12px rgba(0,0,0,.08); background: var(--ww); }
.vsp-type-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; margin-bottom: 10px;
}
.vti-tourist { background: var(--wo-lt); color: var(--wo); }
.vti-business { background: var(--wt-lt); color: var(--wt); }
.vti-student { background: #e8f0fe; color: #1967d2; }
.vti-family { background: #fce4ec; color: #c62828; }
.vti-transit { background: #fff8e1; color: #e65100; }
.vti-work { background: #e8f5e9; color: #2e7d32; }
.vsp-type-card h3 { font-size: 15px; font-weight: 700; color: var(--wblk); margin-bottom: 6px; }
.vsp-type-card p { font-size: 13px; color: var(--wg); line-height: 1.65; margin-bottom: 10px; }
.vsp-type-link {
  font-size: 12px; font-weight: 600; color: var(--wt);
  text-decoration: none; display: flex; align-items: center; gap: 4px;
  transition: color .15s;
}
.vsp-type-link:hover { color: var(--wo); }
.vsp-type-link i { font-size: 10px; transition: transform .2s; }
.vsp-type-card:hover .vsp-type-link i { transform: translateX(3px); }

/* ─── WHY CHOOSE US ─── */
.vsp-why-wrap {
  border-radius: var(--wrl);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 6px rgba(0,0,0,.05);
}
.vsp-why-top {
  background: linear-gradient(135deg, var(--wt-dk), var(--wt));
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.vsp-why-left h2 { font-size: 20px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 8px; }
.vsp-why-left p { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.75; }
.vsp-why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: var(--wg-lt);
  padding: 1.25rem;
}
.vsp-why-card {
  background: var(--ww);
  border: 1px solid var(--wbd);
  border-radius: var(--wrl);
  padding: 1.1rem;
  transition: box-shadow .18s;
}
.vsp-why-card:hover { box-shadow: 0 2px 10px rgba(0,0,0,.08); }
.vsp-why-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; margin-bottom: 8px;
}
.vsp-why-card h4 { font-size: 14px; font-weight: 700; color: var(--wblk); margin-bottom: 4px; }
.vsp-why-card p { font-size: 13px; color: var(--wg); line-height: 1.6; }

/* ─── GOOGLE REVIEWS ─── */
.vsp-reviews-wrap {
  background: var(--ww);
  border: 1px solid var(--wbd);
  border-radius: var(--wrl);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 6px rgba(0,0,0,.05);
}
.vsp-google-bar {
  background: var(--wg-lt);
  border: 1px solid var(--wbd);
  border-radius: var(--wrl);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.vsp-gb-logo { display: flex; align-items: center; gap: 10px; }
.vsp-gb-logo svg { width: 36px; height: 36px; flex-shrink: 0; }
.vsp-gb-score { font-size: 40px; font-weight: 700; color: var(--wblk); line-height: 1; }
.vsp-gb-stars { color: var(--wgye); font-size: 16px; margin-bottom: 3px; }
.vsp-gb-count { font-size: 12px; color: var(--wg); }
.vsp-gb-powered { font-size: 10px; color: var(--wg); display: flex; align-items: center; gap: 4px; margin-top: 4px; }
.vsp-gb-powered svg { width: 12px; height: 12px; }
.vsp-gb-trust { display: flex; flex-direction: column; gap: 5px; margin-left: auto; }
.vsp-gb-trust span { font-size: 12px; color: var(--wgd); display: flex; align-items: center; gap: 6px; }
.vsp-gb-trust i { color: var(--wt); font-size: 12px; }
.vsp-rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.vsp-rev-card {
  background: var(--wg-lt);
  border: 1px solid var(--wbd);
  border-radius: var(--wrl);
  padding: 1.1rem;
  transition: box-shadow .2s;
}
.vsp-rev-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.08); }
.vsp-rc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px; gap: 8px; flex-wrap: wrap; }
.vsp-rc-user { display: flex; align-items: center; gap: 9px; }
.vsp-rc-av { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.vsp-rc-name { font-size: 14px; font-weight: 700; color: var(--wblk); }
.vsp-rc-date { font-size: 12px; color: var(--wg); }
.vsp-rc-stars { color: var(--wgye); font-size: 13px; margin-bottom: 8px; }
.vsp-rc-text { font-size: 14px; color: var(--wgd); line-height: 1.65; }
.vsp-rc-visa { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--wt); background: var(--wt-lt); padding: 2px 9px; border-radius: 99px; margin-top: 10px; }

/* ─── ASSESSMENT FORM ─── */
.vsp-assess-wrap {
  background: var(--ww);
  border: 1px solid var(--wbd);
  border-radius: var(--wrl);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 6px rgba(0,0,0,.05);
}
.vsp-assess-head-bar {
  background: linear-gradient(135deg, var(--wt-dk), var(--wt));
  padding: 1.1rem 1.5rem;
}
.vsp-assess-head-bar h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.vsp-assess-head-bar p { font-size: 12px; color: rgba(255,255,255,.72); }
.vsp-assess-body { padding: 1.5rem; }
/* progress */
.vsp-progress { display: flex; gap: 6px; margin-bottom: 1.5rem; }
.vsp-pb { flex: 1; height: 4px; background: var(--wbd); border-radius: 99px; transition: background .3s; }
.vsp-pb.done { background: var(--wt); }
.vsp-pb.active { background: var(--wo); }
/* steps */
.vsp-sf { display: none; }
.vsp-sf.active { display: block; }
.vsp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vsp-fg2 { margin-bottom: 12px; }
.vsp-fg2 label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--wblk); margin-bottom: 4px; }
.vsp-fi2 {
  width: 100%;
  border: 1.5px solid var(--wbd);
  border-radius: var(--wr);
  padding: 10px 12px;
  font-size: 13px;
  color: var(--wblk);
  background: var(--ww);
  outline: none;
  transition: border-color .15s;
  -webkit-appearance: none;
}
.vsp-fi2:focus { border-color: var(--wt); box-shadow: 0 0 0 3px rgba(10,91,102,.08); }
.vsp-fi2::placeholder { color: #bbb; }
.vsp-ta { resize: vertical; min-height: 72px; }
.vsp-step-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 1.25rem; flex-wrap: wrap; gap: 8px; }
.vsp-step-lbl { font-size: 12px; color: var(--wg); }
.vsp-btn-next {
  background: var(--wt); color: #fff; border: none;
  border-radius: var(--wr); padding: 10px 22px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; gap: 6px; transition: background .15s;
}
.vsp-btn-next:hover { background: var(--wt-dk); }
.vsp-btn-prev {
  background: none; color: var(--wg);
  border: 1px solid var(--wbd); border-radius: var(--wr);
  padding: 10px 18px; font-size: 13px; cursor: pointer; transition: all .15s;
}
.vsp-btn-prev:hover { border-color: var(--wt); color: var(--wt); }
.vsp-btn-final {
  background: var(--wo); color: #fff; border: none;
  border-radius: var(--wr); padding: 11px 26px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; gap: 7px; transition: background .15s;
}
.vsp-btn-final:hover { background: var(--wo-dk); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .vsp-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .vsp-hero-form { max-width: 560px; }
  .vsp-why-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .vsp-countries { grid-template-columns: repeat(2, 1fr); }
  .vsp-types-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .vsp-page { padding: 1.25rem 1rem 3rem; }
  .vsp-hero { padding: 2.5rem 1.5rem; }
  .vsp-stats { grid-template-columns: repeat(2, 1fr); }
  .vsp-steps { grid-template-columns: 1fr 1fr; }
  .vsp-steps::before { display: none; }
  .vsp-rev-grid { grid-template-columns: 1fr; }
  .vsp-why-cards { grid-template-columns: 1fr; }
  .vsp-f2 { grid-template-columns: 1fr; }
  .vsp-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .vsp-countries { grid-template-columns: 1fr 1fr; }
  .vsp-types-grid { grid-template-columns: 1fr; }
  .vsp-steps { grid-template-columns: 1fr; }
  .vsp-rev-grid { grid-template-columns: 1fr; }
}

/* ══ VISA PAGE — Dynamic additions ══ */
.vsp-wrap { font-family: 'Inter', sans-serif; background: #F2F2F0; }
.vsp-page { max-width: 1320px; margin: 0 auto; padding: 2rem 2rem 4rem; }
.vsp-bc { margin-bottom: 1.5rem; }
.vsp-bc-list { list-style: none; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.vsp-bc-item { font-size: 12px; }
.vsp-bc-link { color: #767676; text-decoration: none; display: flex; align-items: center; gap: 4px; } .vsp-bc-link:hover { color: #0a5b66; }
.vsp-bc-link i { font-size: 11px; }
.vsp-bc-sep { color: #ccc; font-size: 10px; }
.vsp-bc-cur { color: #333; font-weight: 600; font-size: 12px; }
/* ─── HERO ─── */
.vsp-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2.5rem;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg,#074650,#0a5b66,#1a8a9a);
  padding: 3.5rem 3rem;
}
/* Full-width background image */
.vsp-hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
}
.vsp-hero-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.vsp-hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,70,80,.88) 0%, rgba(10,91,102,.80) 60%, rgba(7,70,80,.70) 100%);
}
/* All hero children above overlay */
.vsp-hero-left,
.vsp-hero-right { position: relative; z-index: 2; }

.vsp-hero-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #FB5B32; margin-bottom: .75rem; display: flex; align-items: center; gap: 6px; }
.vsp-hero-h1 { font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 800; color: #fff !important; line-height: 1.1; margin-bottom: 1rem; letter-spacing: -.02em; }
.vsp-hero-h1 span { color: #ffd89b !important; }
.vsp-hero-sub { font-size: 15px; color: rgba(255,255,255,.85) !important; line-height: 1.7; margin-bottom: 1.5rem; max-width: 520px; }
.vsp-hero-acts { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.vsp-btn-wa { display: flex; align-items: center; gap: 8px; background: #25D366; color: #fff; padding: 13px 22px; border-radius: 10px; font-size: 14px; font-weight: 700; text-decoration: none; }
.vsp-btn-wa:hover { background: #1da851; color: #fff; }
.vsp-btn-call { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); color: #fff; border: 2px solid rgba(255,255,255,.4); padding: 12px 20px; border-radius: 10px; font-size: 14px; font-weight: 700; text-decoration: none; }
.vsp-btn-call:hover { background: rgba(255,255,255,.22); color: #fff; }
.vsp-hero-trust { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.vsp-ht { font-size: 13px; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 5px; }
.vsp-ht i { color: #4cdd80; }
.vsp-hero-card { background: #fff; border: 1px solid #E2E2DE; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.15); }
.vsp-hc-head { background: linear-gradient(135deg,#074650,#0a5b66); padding: 1.25rem 1.5rem; color: #fff; font-size: 16px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.vsp-hc-form { padding: 1.25rem 1.5rem; }
.vsp-fg { margin-bottom: .875rem; }
.vsp-fl { display: block; font-size: 11px; font-weight: 700; color: #333; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .04em; }
.vsp-fi { width: 100%; padding: 9px 11px; border: 1.5px solid #E2E2DE; border-radius: 8px; font-size: 13px; color: #111; outline: none; background: #fff; transition: border-color .15s; font-family: 'Inter', sans-serif; }
.vsp-fi:focus { border-color: #0a5b66; }
.vsp-hc-btn { width: 100%; background: #FB5B32; color: #fff; border: none; border-radius: 10px; padding: 13px; font-size: 14px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 7px; transition: background .15s; }
.vsp-hc-btn:hover { background: #D94520; }
.vsp-hc-note { text-align: center; font-size: 11px; color: #767676; padding: .75rem 1.5rem 1.25rem; }
.vsp-stats { display: flex; align-items: center; background: #0a5b66; border-radius: 14px; padding: 1.5rem 2rem; margin-bottom: 3rem; }
.vsp-stat { flex: 1; text-align: center; }
.vsp-stat-num { font-size: 28px; font-weight: 800; color: #fff; }
.vsp-stat-lbl { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 2px; }
.vsp-stat-div { width: 1px; height: 40px; background: rgba(255,255,255,.2); flex-shrink: 0; }
.vsp-section { margin-bottom: 3rem; }
.vsp-how-section { background: #fff; border-radius: 16px; padding: 2.5rem; }
.vsp-sec-hdr { text-align: center; margin-bottom: 2rem; }
.vsp-sec-eye { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #FB5B32; margin-bottom: .5rem; }
.vsp-sec-h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #111; letter-spacing: -.02em; margin-bottom: .5rem; }
.vsp-sec-sub { font-size: 14px; color: #767676; }
.vsp-visa-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.vsp-visa-card { background: #fff; border: 1px solid #E2E2DE; border-radius: 16px; overflow: hidden; transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.vsp-visa-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.vsp-vc-flag { height: 176px; display: flex; align-items: center; justify-content: center; font-size: 60px; flex-shrink: 0; position: relative; overflow: hidden; }
.vsp-vc-flag img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.vsp-vc-popular { position: absolute; top: 8px; right: 8px; background: #FB5B32; color: #fff; font-size: 9px; font-weight: 700; text-transform: uppercase; padding: 2px 8px; border-radius: 99px; z-index: 2; }
.vsp-vc-body { padding: 1rem 1.1rem; flex: 1; }
.vsp-vc-country { font-size: 16px; font-weight: 800; color: #111; margin-bottom: 4px; }
.vsp-vc-type { font-size: 12px; color: #555; margin-bottom: 6px; }
.vsp-vc-time { font-size: 11px; color: #767676; display: flex; align-items: center; gap: 4px; }
.vsp-vc-time i { color: #0a5b66; }
/* dual buttons */
.vsp-vc-btns { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #E2E2DE; }
.vsp-vc-btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  padding: .7rem .5rem; font-size: 12px; font-weight: 700;
  color: #fff; background: #25D366; text-decoration: none;
  transition: background .15s;
}
.vsp-vc-btn-wa:hover { background: #1da851; color: #fff; }
.vsp-vc-btn-form {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  padding: .7rem .5rem; font-size: 12px; font-weight: 700;
  color: #fff; background: #0a5b66; text-decoration: none;
  transition: background .15s; border-left: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
}
.vsp-vc-btn-form:hover { background: #074650; color: #fff; }
/* remove old single cta */
.vsp-vc-cta { display: none; }
.vsp-steps { display: flex; align-items: center; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.vsp-step { background: #F4F4F2; border: 1px solid #E2E2DE; border-radius: 16px; padding: 2rem 1.5rem; flex: 1; min-width: 200px; max-width: 260px; text-align: center; position: relative; transition: box-shadow .2s; }
.vsp-step:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.vsp-step-num { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: #FB5B32; color: #fff; font-size: 11px; font-weight: 800; padding: 3px 12px; border-radius: 99px; letter-spacing: .06em; }
.vsp-step-icon { width: 54px; height: 54px; border-radius: 12px; background: #E3F2F4; color: #0a5b66; display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 1rem; }
.vsp-step-t { font-size: 15px; font-weight: 700; margin-bottom: .5rem; }
.vsp-step-p { font-size: 13px; color: #555; line-height: 1.7; }
.vsp-step-arr { font-size: 20px; color: #E2E2DE; flex-shrink: 0; }
.vsp-cta { background: linear-gradient(135deg,#074650,#0a5b66,#0e8a9e); border-radius: 16px; padding: 2.5rem; }
.vsp-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.vsp-cta-h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 800; color: #fff; margin-bottom: .5rem; }
.vsp-cta-p { font-size: 14px; color: rgba(255,255,255,.7); }
/*.vsp-cta-acts { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; flex-shrink: 0; }*/
.vsp-cta-acts {display: flex;gap: .75rem;align-items: center;flex-wrap: wrap;flex-shrink: 0;align-content: center;justify-content: space-around;}

@media (max-width: 960px) {
  .vsp-hero { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 2rem; }
  .vsp-hero-card { max-width: 480px; }
  .vsp-visa-grid { grid-template-columns: repeat(2, 1fr); }
  .vsp-stats { flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .vsp-page { padding: 1.25rem 1rem 3rem; }
  .vsp-hero { padding: 2rem 1.25rem; border-radius: 12px; }
  .vsp-hero-h1 { font-size: clamp(1.4rem, 6vw, 2rem); }
  .vsp-hero-sub { font-size: 13px; }
  .vsp-btn-wa, .vsp-btn-call { font-size: 13px; padding: 11px 16px; }
  .vsp-ht { font-size: 12px; }
  .vsp-stats { display: grid; grid-template-columns: 1fr 1fr; row-gap: 1.25rem; column-gap: 0; }
  .vsp-stat-div { display: none; }
  .vsp-stat-num { font-size: 22px; }
  .vsp-stat-lbl { font-size: 11px; }
  .vsp-steps { grid-template-columns: 1fr 1fr; }
  .vsp-steps::before { display: none; }
  .vsp-rev-grid { grid-template-columns: 1fr; }
  .vsp-why-cards { grid-template-columns: 1fr; }
  .vsp-f2 { grid-template-columns: 1fr; }
  .vsp-form-grid { grid-template-columns: 1fr; }
  .vsp-sec-h2 { font-size: clamp(1.2rem, 5vw, 1.6rem); }
  .vsp-cta { padding: 1.75rem 1.25rem; }
  .vsp-cta-h2 { font-size: 1.2rem; }
}
@media (max-width: 560px) {
  .vsp-hero { padding: 1.75rem 1rem; }
  .vsp-hero-h1 { font-size: clamp(1.25rem, 7vw, 1.75rem); }
  .vsp-hero-sub { font-size: 12px; margin-bottom: 1rem; }
  .vsp-hero-acts { gap: .5rem; }
  .vsp-btn-wa, .vsp-btn-call { font-size: 12px; padding: 10px 14px; }
  .vsp-hero-trust { gap: .75rem; }
  .vsp-ht { font-size: 11px; }
  .vsp-visa-grid { grid-template-columns: 1fr; }
  /*.vsp-vc-flag { height: 90px; font-size: 44px; }*/
  .vsp-vc-flag { font-size: 44px; }
  .vsp-vc-country { font-size: 14px; }
  .vsp-vc-btn-wa, .vsp-vc-btn-form { font-size: 11px; padding: .6rem .35rem; gap: 3px; }
  .vsp-types-grid { grid-template-columns: 1fr; }
  .vsp-steps { flex-direction: column; align-items: stretch; }
  .vsp-step { max-width: none; }
  .vsp-step-arr { display: none; }
  .vsp-cta-inner { flex-direction: column; text-align: center; }
  .vsp-stats { display: grid; grid-template-columns: 1fr 1fr; row-gap: 1rem; }
  .vsp-stat-num { font-size: 20px; }
}