/* ============================================================
   US Visa Centers — Global Stylesheet
   ============================================================ */

:root {
  --navy-900: #0A2A5E;
  --navy-800: #0F3576;
  --navy-700: #18458F;
  --navy-50:  #EEF2FB;
  --red:      #B31942;
  --red-700:  #8C1335;
  --gold:     #C9A55B;
  --gold-soft:#E7D6AC;
  --ink:      #0E1B33;
  --ink-2:    #2A3656;
  --muted:    #6B7388;
  --line:     rgba(10,42,94,.10);
  --line-soft:rgba(10,42,94,.06);
  --cream:    #FAF7F1;
  --cream-2:  #F2EEE5;
  --bg:       #FFFFFF;
  --shadow-card: 0 1px 2px rgba(10,42,94,.04), 0 8px 24px rgba(10,42,94,.06);
  --shadow-lift: 0 2px 6px rgba(10,42,94,.06), 0 24px 48px rgba(10,42,94,.10);
  --font-serif: "Cormorant Garamond","Source Serif Pro",Georgia,serif;
  --font-sans:  "Manrope",ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
}

/* ── Reset ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
[hidden] { display: none !important; }

/* ── Layout helpers ───────────────────────── */
.wrap      { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.wrap-wide { max-width: 1360px; margin: 0 auto; padding: 0 32px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 12.5px; font-weight: 700;
  color: var(--red);
  letter-spacing: 0.22em; text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1.5px; background: currentColor;
  display: inline-block;
}
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px; border-radius: 999px;
  background: var(--cream); color: var(--ink-2);
  font-size: 12px; font-weight: 600;
  border: 1px solid var(--line-soft);
}
.chip svg { color: var(--red); }

/* ── Buttons ──────────────────────────────── */
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 10px;
  background: var(--navy-900); color: #fff;
  font-weight: 600; font-size: 14.5px; letter-spacing: 0.005em;
  border: 1px solid var(--navy-900);
  transition: transform .15s ease, box-shadow .2s ease, background .2s;
  box-shadow: 0 2px 0 rgba(10,42,94,0.18), 0 10px 22px rgba(10,42,94,0.18);
}
.cta-btn:hover { background: var(--navy-800); transform: translateY(-1px); }
.cta-btn .arrow { display: inline-flex; transition: transform .2s ease; }
.cta-btn:hover .arrow { transform: translateX(3px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 10px;
  background: #fff; color: var(--navy-900);
  font-weight: 600; font-size: 14.5px;
  border: 1px solid var(--navy-900);
  transition: background .2s ease, transform .15s ease;
}
.btn-ghost:hover { background: var(--navy-50); transform: translateY(-1px); }
.btn-red {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 10px;
  background: var(--red); color: #fff;
  font-weight: 600; font-size: 14.5px;
  border: 1px solid var(--red);
  transition: background .2s ease, transform .15s ease;
  box-shadow: 0 2px 0 rgba(179,25,66,0.2), 0 8px 20px rgba(179,25,66,0.18);
}
.btn-red:hover { background: var(--red-700); transform: translateY(-1px); }

/* ── NAV ──────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 104px;
  padding: 0 56px;
}
.nav-right { display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 78px; width: auto; display: block; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  letter-spacing: 0.01em;
}
.nav-links a { position: relative; padding: 6px 0; }
.nav-links a.active { color: var(--navy-900); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--red); border-radius: 2px;
}
.nav-links a:hover { color: var(--navy-900); }

/* Language toggle */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--navy-50); color: var(--navy-900);
  font-weight: 700; font-size: 12px; letter-spacing: 0.1em;
  border: 1px solid var(--line);
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.lang-toggle:hover { background: var(--cream-2); border-color: var(--navy-900); }
.lang-toggle svg { width: 13px; height: 13px; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; background: none; border: none;
  cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy-900); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer — floats over content */
.nav-mobile {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 24px 24px;
  background: #fff;
  border-top: 1px solid var(--line-soft);
  box-shadow: 0 12px 40px rgba(10,42,94,0.14);
  /* Float over page content */
  position: absolute;
  top: 100%; left: 0; right: 0;
  z-index: 200;
}
.nav-mobile a {
  padding: 10px 12px; border-radius: 8px;
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  transition: background .15s, color .15s;
}
.nav-mobile a:hover, .nav-mobile a.active { background: var(--navy-50); color: var(--navy-900); }
.nav-mobile .cta-btn {
  margin-top: 8px;
  justify-content: center;
  background: var(--navy-900) !important;
  color: #fff !important;
  border-color: var(--navy-900) !important;
  width: 100%;
}

/* Desktop Services dropdown */
.nav-has-dropdown { position: relative; }
.nav-has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%; left: -16px; right: -16px;
  height: 20px;
}
.dropdown-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: none; padding: 6px 0;
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  letter-spacing: 0.01em; cursor: pointer;
  font-family: inherit;
}
.dropdown-trigger:hover,
.nav-has-dropdown.open .dropdown-trigger { color: var(--navy-900); }
.dropdown-trigger .chevron { transition: transform .2s ease; }
.nav-has-dropdown:hover .chevron,
.nav-has-dropdown.open .chevron { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  box-shadow: var(--shadow-lift);
  padding: 8px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 100;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown.open .nav-dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block; padding: 9px 14px; border-radius: 8px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-2);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--navy-50); color: var(--navy-900); }
.nav-dropdown a.dd-all {
  border-top: 1px solid var(--line-soft);
  margin-top: 4px; padding-top: 11px;
  color: var(--red); font-weight: 600;
}
.nav-dropdown a.dd-all:hover { background: #FEF0F4; }

/* Mobile sub-nav for Services */
.mobile-has-sub { display: flex; flex-direction: column; }
.mobile-sub-trigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; border-radius: 8px;
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  background: none; border: none; width: 100%;
  font-family: inherit; cursor: pointer;
  transition: background .15s, color .15s;
}
.mobile-sub-trigger:hover,
.mobile-sub-trigger.active { background: var(--navy-50); color: var(--navy-900); }
.mobile-sub-trigger .chevron { transition: transform .2s ease; }
.mobile-sub-trigger[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.mobile-sub {
  display: flex; flex-direction: column; gap: 2px;
  padding: 0 0 4px 14px;
}
.mobile-sub a {
  display: block; padding: 8px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: background .15s, color .15s;
}
.mobile-sub a:hover { background: var(--navy-50); color: var(--navy-900); }

/* ── HERO (homepage) ──────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 0% 0%,   #FAF7F1 0%, rgba(250,247,241,0) 60%),
    radial-gradient(900px  500px at 100% 100%,#F3EFE6 0%, rgba(250,247,241,0) 60%),
    linear-gradient(180deg, #FFFDF8 0%, #FAF7F1 100%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px;
  align-items: center;
  padding: 90px 0 110px;
}
h1.hero-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(56px, 6.3vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--navy-900);
  margin: 22px 0 26px;
}
h1.hero-title .accent {
  color: var(--red); font-style: italic; font-weight: 600; display: block;
}
.hero-sub {
  color: var(--ink-2); font-size: 18px; line-height: 1.6;
  max-width: 520px; margin: 0 0 38px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 44px; margin-top: 52px;
  padding-top: 32px; border-top: 1px solid var(--line);
  max-width: 520px;
}
.trust-item { display: flex; gap: 12px; align-items: flex-start; }
.trust-icon {
  flex: 0 0 36px; height: 36px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--navy-50); color: var(--navy-800);
}
.trust-text { font-size: 13.5px; line-height: 1.3; }
.trust-text strong { display: block; color: var(--navy-900); font-weight: 700; font-size: 14px; }
.trust-text span { color: var(--muted); }
.hero-visual {
  position: relative; aspect-ratio: 5/6;
  border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: linear-gradient(135deg,#d9c9a8 0%,#b08768 100%);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,rgba(255,240,210,.08) 0%,rgba(10,42,94,.04) 60%,rgba(10,42,94,.18) 100%);
  pointer-events: none;
}
.hero-badge {
  position: absolute; bottom: 28px; left: 28px;
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.82); backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.6); border-radius: 14px;
  box-shadow: 0 8px 30px rgba(10,42,94,0.15);
}
.hero-badge .avs { display: flex; }
.hero-badge .avs span {
  width: 30px; height: 30px; border-radius: 50%;
  background-size: cover; background-position: center;
  border: 2px solid #fff; margin-left: -8px;
}
.hero-badge .avs span:first-child { margin-left: 0; }
.hero-badge .copy { font-size: 12.5px; line-height: 1.3; }
.hero-badge .copy strong { display: block; color: var(--navy-900); font-weight: 700; font-size: 13.5px; }
.hero-badge .copy span { color: var(--muted); }
.hero-stamp {
  position: absolute; top: 24px; right: 24px;
  background: rgba(10,42,94,0.92); color: #fff;
  padding: 10px 14px; border-radius: 999px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(8px);
}
.hero-stamp .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 4px rgba(201,165,91,0.22);
}

/* ── INNER PAGE HERO ──────────────────────── */
.page-hero {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  position: relative; overflow: hidden;
  padding: 72px 0 80px;
  text-align: center; color: #fff;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(700px 400px at 90% 110%, rgba(179,25,66,.20) 0%, transparent 60%),
    radial-gradient(900px 500px at 10% -10%, rgba(201,165,91,.10) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 32px; }
.page-hero .eyebrow { color: #FF8DA7; justify-content: center; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 500; font-size: clamp(40px,5vw,64px);
  line-height: 1.08; letter-spacing: -0.01em;
  color: #fff; margin: 16px 0 18px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-soft); }
.page-hero p {
  font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,0.78); margin: 0 auto; max-width: 600px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.72); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: 0.45; }

/* ── SERVICES BAND ────────────────────────── */
.services {
  position: relative;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #fff; overflow: hidden;
}
.services::before, .services::after { content: ""; position: absolute; pointer-events: none; }
.services::before {
  inset: 0;
  background:
    radial-gradient(700px 400px at 90% 110%, rgba(179,25,66,.20) 0%, transparent 60%),
    radial-gradient(900px 500px at 10% -10%, rgba(201,165,91,.10) 0%, transparent 60%);
}
.services::after {
  top: 0; left: -8%; width: 60%; height: 100%;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600' fill='none'><circle cx='300' cy='300' r='260' stroke='white' stroke-opacity='0.05'/><circle cx='300' cy='300' r='200' stroke='white' stroke-opacity='0.04'/><circle cx='300' cy='300' r='140' stroke='white' stroke-opacity='0.04'/></svg>") center/contain no-repeat;
  opacity: 0.6;
}
.services-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: center;
  padding: 96px 0 100px;
}
.services h2 {
  font-family: var(--font-serif); font-weight: 500; font-size: 56px;
  line-height: 1.05; letter-spacing: -0.01em; color: #fff; margin: 16px 0 22px;
}
.services .lede { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.78); max-width: 360px; margin: 0 0 30px; }
.services .rule { display: flex; gap: 12px; margin-top: 28px; }
.services .rule span { height: 3px; width: 36px; background: var(--red); border-radius: 2px; }
.services .rule span:nth-child(2) { background: rgba(255,255,255,0.25); width: 18px; }
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.svc-card {
  background: #fff; color: var(--navy-900); border-radius: 16px;
  padding: 30px 22px 26px; text-align: left; min-height: 240px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
  border: 1px solid rgba(255,255,255,0.4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.18); }
.svc-card .ic {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(180deg,#F3F6FC 0%,#E6ECF8 100%);
  display: grid; place-items: center; color: var(--navy-900); margin-bottom: 6px;
}
.svc-card h3 {
  font-family: var(--font-sans); font-size: 17px; font-weight: 700; margin: 0;
  color: var(--navy-900); letter-spacing: -0.005em;
}
.svc-card p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.55; }
.svc-card .more {
  margin-top: auto; font-size: 13px; font-weight: 600; color: var(--red);
  display: inline-flex; align-items: center; gap: 6px;
}

/* ── VISA CATEGORIES ──────────────────────── */
.cats {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF7F1 100%);
  padding: 110px 0 100px; position: relative;
}
.cats-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.cats-head h2 {
  font-family: var(--font-serif); font-weight: 500; font-size: 56px;
  line-height: 1.05; letter-spacing: -0.01em; color: var(--navy-900); margin: 16px 0;
}
.cats-head h2 em { font-style: italic; color: var(--red); font-weight: 500; }
.cats-head p { color: var(--muted); font-size: 17px; margin: 0; }
.cats-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 22px; }
.cat-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer; display: flex; flex-direction: column;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.cat-img {
  aspect-ratio: 1/1; background-size: cover; background-position: center;
  background-color: #d8d3c7; position: relative;
}
.cat-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,42,94,.18) 100%);
}
.cat-tag {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(6px);
  color: var(--navy-900); font-weight: 700; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; z-index: 1;
}
.cat-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 6px; }
.cat-body h3 {
  margin: 0; font-family: var(--font-sans); font-size: 17px; font-weight: 700;
  color: var(--navy-900); letter-spacing: -0.005em;
}
.cat-body p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.cat-foot { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.cat-foot .types { color: var(--ink-2); font-weight: 600; font-size: 12px; letter-spacing: 0.06em; }
.cat-foot .arrow {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  color: var(--navy-900); transition: background .2s, color .2s, transform .2s;
}
.cat-card:hover .arrow { background: var(--navy-900); color: #fff; transform: translateX(2px); }

/* ── TESTIMONIAL ──────────────────────────── */
.testi { padding: 100px 0 120px; background: #fff; }
.testi-card {
  position: relative; border-radius: 28px; overflow: hidden; min-height: 460px;
  background-color: #1d3a6e;
  background-size: cover; background-position: center 30%;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0;
  border: 1px solid var(--line);
}
.testi-quote {
  padding: 56px 56px 48px; color: #fff;
  display: flex; flex-direction: column; justify-content: space-between;
}
.testi-quote .qmark {
  font-family: var(--font-serif); font-size: 96px; line-height: 1; font-weight: 600;
  color: var(--gold-soft); margin: 0 0 -10px;
}
.testi-quote blockquote {
  margin: 0; font-family: var(--font-serif); font-weight: 500; font-size: 34px;
  line-height: 1.25; letter-spacing: -0.005em; color: #fff; max-width: 520px;
}
.testi-meta { display: flex; align-items: center; gap: 14px; margin-top: 36px; }
.testi-meta .ava {
  width: 56px; height: 56px; border-radius: 50%;
  background-size: cover; background-position: center;
  border: 2px solid rgba(255,255,255,0.6);
}
.testi-meta .nm { font-family: var(--font-sans); font-weight: 700; font-size: 16px; color: #fff; }
.testi-meta .role { color: rgba(255,255,255,0.75); font-size: 13px; }
.testi-dots { display: flex; gap: 8px; margin-top: 28px; }
.testi-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35); transition: background .2s, width .2s;
}
.testi-dots span.on { background: #fff; width: 24px; border-radius: 4px; }
.testi-side {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.8); border-radius: 20px;
  padding: 36px 32px 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  position: relative; align-self: center; margin: 0 40px 0 0;
}
.testi-side h3 {
  font-family: var(--font-serif); font-weight: 600; font-size: 32px; line-height: 1.1;
  color: var(--navy-900); margin: 0 0 12px; letter-spacing: -0.005em;
}
.testi-side h3 em { color: var(--red); font-style: italic; }
.testi-side p { color: var(--ink-2); font-size: 14.5px; margin: 0 0 22px; line-height: 1.55; }
.testi-side .plane {
  position: absolute; top: 18px; right: 22px; width: 70px; height: 70px; opacity: 0.10; color: var(--navy-900);
}
.testi-side .row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }

/* ── STATS BAND ───────────────────────────── */
.stats-band {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 72px 0; position: relative; overflow: hidden;
}
.stats-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 100% 50%, rgba(179,25,66,.18) 0%, transparent 60%);
}
.stats-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center;
}
.stat-item {}
.stat-item .num {
  font-family: var(--font-serif); font-size: clamp(40px,4vw,56px);
  font-weight: 600; color: var(--gold-soft);
  line-height: 1; letter-spacing: -0.02em;
}
.stat-item .label {
  font-size: 14px; color: rgba(255,255,255,0.72); margin-top: 8px; line-height: 1.4;
}

/* ── CTA BAND ─────────────────────────────── */
.cta-band {
  background: var(--cream); padding: 96px 0;
  border-top: 1px solid var(--cream-2); border-bottom: 1px solid var(--cream-2);
}
.cta-band-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
.cta-band h2 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(32px,3.5vw,48px); line-height: 1.1;
  letter-spacing: -0.01em; color: var(--navy-900); margin: 0 0 12px;
}
.cta-band h2 em { font-style: italic; color: var(--red); }
.cta-band p { color: var(--muted); font-size: 17px; margin: 0; max-width: 540px; }
.cta-band-btns { display: flex; gap: 12px; flex-shrink: 0; }

/* ── ACCORDION ────────────────────────────── */
.accordion { display: flex; flex-direction: column; gap: 10px; }
.accordion-item {
  background: #fff; border-radius: 12px;
  border: 1px solid var(--line-soft); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.accordion-trigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 15.5px;
  font-weight: 600; color: var(--navy-900); gap: 16px;
  transition: background .15s;
}
.accordion-trigger:hover { background: var(--navy-50); }
.accordion-trigger .icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--line); display: grid; place-items: center;
  color: var(--navy-900); transition: transform .3s, background .2s, border-color .2s;
}
.accordion-trigger[aria-expanded="true"] .icon { transform: rotate(45deg); background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion-body-inner {
  padding: 0 24px 22px; color: var(--muted); font-size: 15px; line-height: 1.65;
  border-top: 1px solid var(--line-soft);
}
.accordion-body-inner p { margin: 14px 0 0; }
.accordion-body-inner ul { margin: 10px 0 0; padding-left: 20px; display: flex; flex-direction: column; gap: 6px; list-style: disc; }

/* ── PROCESS STEPS ────────────────────────── */
.steps-section { padding: 96px 0; background: #fff; }
.steps-section h2 {
  font-family: var(--font-serif); font-weight: 500; font-size: clamp(36px,4vw,52px);
  line-height: 1.1; letter-spacing: -0.01em; color: var(--navy-900);
  text-align: center; margin: 0 auto 56px; max-width: 680px;
}
.steps-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; position: relative; }
.steps-grid::before {
  content: ""; position: absolute;
  top: 32px; left: calc(10% + 32px); right: calc(10% + 32px);
  height: 2px; background: var(--line); z-index: 0;
}
.step-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy-900); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-serif); font-size: 24px; font-weight: 600;
  box-shadow: 0 0 0 8px var(--navy-50);
  margin-bottom: 20px; flex-shrink: 0;
}
.step-item h3 { font-size: 15px; font-weight: 700; color: var(--navy-900); margin: 0 0 8px; }
.step-item p { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin: 0; }

/* ── SERVICE DETAIL CARDS ─────────────────── */
.svc-detail { padding: 96px 0; }
.svc-detail:nth-child(even) { background: var(--cream); }
.svc-detail-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.svc-detail-inner.flip { direction: rtl; }
.svc-detail-inner.flip > * { direction: ltr; }
.svc-detail-visual {
  border-radius: 20px; overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--shadow-lift);
}
.svc-detail-visual img { width: 100%; height: 100%; object-fit: cover; }
.svc-detail-copy h2 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(30px,3vw,42px); line-height: 1.12;
  letter-spacing: -0.01em; color: var(--navy-900); margin: 16px 0 18px;
}
.svc-detail-copy p { color: var(--ink-2); font-size: 16px; line-height: 1.65; margin: 0 0 20px; }
.svc-checklist { display: flex; flex-direction: column; gap: 10px; margin: 0 0 28px; }
.svc-checklist li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; color: var(--ink-2);
}
.svc-checklist li::before {
  content: ""; flex-shrink: 0; margin-top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--navy-50); display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%230A2A5E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
}

/* ── PRICING ──────────────────────────────── */
.pricing-section { padding: 96px 0; background: var(--cream); }
.pricing-section h2 {
  font-family: var(--font-serif); font-weight: 500; font-size: clamp(36px,4vw,52px);
  line-height: 1.1; letter-spacing: -0.01em; color: var(--navy-900);
  text-align: center; margin: 0 auto 16px; max-width: 680px;
}
.pricing-section .sub-head { text-align: center; color: var(--muted); font-size: 17px; margin: 0 0 56px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pricing-card {
  background: #fff; border-radius: 20px; padding: 36px 32px;
  border: 1.5px solid var(--line-soft);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 6px;
  position: relative; transition: transform .25s, box-shadow .25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.pricing-card.featured {
  border-color: var(--navy-700); background: var(--navy-900); color: #fff;
}
.pricing-card .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
}
.pricing-card .tier {
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted);
}
.pricing-card.featured .tier { color: rgba(255,255,255,0.6); }
.pricing-card .price {
  font-family: var(--font-serif); font-size: 48px; font-weight: 600;
  color: var(--navy-900); line-height: 1; margin: 8px 0 4px;
  letter-spacing: -0.02em;
}
.pricing-card.featured .price { color: #fff; }
.pricing-card .price sup { font-size: 22px; vertical-align: top; margin-top: 10px; }
.pricing-card .price-note { font-size: 13px; color: var(--muted); margin: 0 0 20px; }
.pricing-card.featured .price-note { color: rgba(255,255,255,0.6); }
.pricing-card hr { border: none; border-top: 1px solid var(--line-soft); margin: 16px 0; }
.pricing-card.featured hr { border-color: rgba(255,255,255,0.15); }
.pricing-card ul { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing-card ul li {
  display: flex; gap: 10px; font-size: 14px; color: var(--ink-2); align-items: flex-start;
}
.pricing-card.featured ul li { color: rgba(255,255,255,0.85); }
.pricing-card ul li svg { flex-shrink: 0; margin-top: 2px; color: var(--red); }
.pricing-card.featured ul li svg { color: var(--gold-soft); }
.pricing-card .plan-cta { margin-top: 28px; }

/* ── TABS ─────────────────────────────────── */
.tabs-wrap { margin-bottom: 40px; }
.tabs-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  border-bottom: 2px solid var(--line-soft); padding-bottom: 0;
}
.tab-btn {
  padding: 10px 20px; border: none; background: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  color: var(--muted); border-bottom: 2px solid transparent;
  margin-bottom: -2px; border-radius: 6px 6px 0 0;
  transition: color .2s, border-color .2s, background .15s;
}
.tab-btn:hover { color: var(--navy-900); background: var(--navy-50); }
.tab-btn.active { color: var(--navy-900); border-bottom-color: var(--red); }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* ── VISA TYPE CARDS ──────────────────────── */
.visa-card {
  background: #fff; border-radius: 16px; padding: 28px;
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .25s, box-shadow .25s;
}
.visa-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.visa-card .code {
  display: inline-block; padding: 4px 10px; border-radius: 6px;
  background: var(--navy-50); color: var(--navy-900);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  align-self: flex-start;
}
.visa-card h3 { font-size: 17px; font-weight: 700; color: var(--navy-900); margin: 0; }
.visa-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 0; flex: 1; }
.visa-card .meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--muted); padding-top: 10px;
  border-top: 1px solid var(--line-soft);
}
.visa-card .meta span { display: flex; gap: 4px; align-items: center; }
.visa-card .meta strong { color: var(--navy-900); }
.visa-card .learn { margin-top: 4px; font-size: 13px; font-weight: 600; color: var(--red); display: inline-flex; align-items: center; gap: 5px; }

/* ── ARTICLE CARDS ────────────────────────── */
.articles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.article-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.article-img {
  aspect-ratio: 16/9; background-size: cover; background-position: center;
  background-color: var(--navy-50);
}
.article-body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.article-tag {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  background: var(--cream); color: var(--red);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  align-self: flex-start;
}
.article-card h3 {
  margin: 0; font-size: 17px; font-weight: 700; color: var(--navy-900);
  line-height: 1.35; letter-spacing: -0.005em;
}
.article-card p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.55; flex: 1; }
.article-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--line-soft); margin-top: 8px;
  font-size: 12.5px; color: var(--muted);
}
.article-foot a { font-weight: 600; color: var(--red); display: inline-flex; align-items: center; gap: 4px; }

/* ── TEAM CARDS ───────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card { text-align: center; }
.team-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  margin: 0 auto 18px;
  background-size: cover; background-position: center;
  background-color: var(--navy-50);
  border: 4px solid var(--cream-2);
  box-shadow: var(--shadow-card);
}
.team-card h3 { font-size: 17px; font-weight: 700; color: var(--navy-900); margin: 0 0 4px; }
.team-card .role { font-size: 13.5px; color: var(--red); font-weight: 600; margin: 0 0 10px; }
.team-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 0; }

/* ── CONTACT FORM ─────────────────────────── */
.contact-section { padding: 80px 0 96px; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: start; }
.form-card {
  background: #fff; border-radius: 20px; padding: 44px 40px;
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-lift);
}
.form-card h2 {
  font-family: var(--font-serif); font-weight: 500; font-size: 36px;
  line-height: 1.1; color: var(--navy-900); margin: 0 0 8px;
}
.form-card .sub { color: var(--muted); font-size: 15px; margin: 0 0 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.form-group label .req { color: var(--red); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid var(--line); background: var(--cream);
  font-family: var(--font-sans); font-size: 14.5px; color: var(--ink);
  outline: none; transition: border-color .2s, background .2s;
  appearance: none; -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--navy-700); background: #fff;
  box-shadow: 0 0 0 3px rgba(10,42,94,0.08);
}
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: ""; position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-top-color: var(--ink-2);
  pointer-events: none;
}
.form-submit {
  width: 100%; padding: 16px; border-radius: 10px;
  background: var(--navy-900); color: #fff;
  font-family: var(--font-sans); font-size: 15.5px; font-weight: 700;
  border: none; cursor: pointer;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 14px rgba(10,42,94,0.25);
  margin-top: 8px;
}
.form-submit:hover { background: var(--navy-800); transform: translateY(-1px); }
.form-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 10px; }
.contact-info-card { display: flex; flex-direction: column; gap: 28px; padding-top: 8px; }
.contact-info-card h2 {
  font-family: var(--font-serif); font-weight: 500; font-size: 36px;
  line-height: 1.1; color: var(--navy-900); margin: 0 0 8px;
}
.contact-info-card > p { color: var(--muted); font-size: 15.5px; margin: 0 0 8px; line-height: 1.6; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  background: var(--navy-50); display: grid; place-items: center;
  color: var(--navy-900);
}
.info-item h4 { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 4px; }
.info-item p { font-size: 15px; color: var(--navy-900); margin: 0; font-weight: 500; }

/* ── FOOTER ───────────────────────────────── */
footer.footer {
  background: linear-gradient(180deg, var(--navy-900) 0%, #061B3F 100%);
  color: #fff; padding: 80px 0 28px;
  position: relative; overflow: hidden;
}
footer.footer::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 100% 0%, rgba(179,25,66,.18) 0%, transparent 60%);
  pointer-events: none;
}
.footer-grid {
  position: relative;
  display: grid; grid-template-columns: 1.3fr repeat(4,1fr) 1.3fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-brand img { height: 52px; width: auto; filter: brightness(0) invert(1); margin-bottom: 22px; opacity: .95; }
.footer-brand p { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.6; max-width: 280px; }
.footer h4 {
  font-family: var(--font-sans); font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin: 0 0 20px;
}
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer ul a { color: rgba(255,255,255,.72); font-size: 14px; transition: color .2s; }
.footer ul a:hover { color: #fff; }
.footer .newsletter h4 { margin-bottom: 8px; }
.footer .newsletter p { color: rgba(255,255,255,.7); font-size: 13.5px; margin: 0 0 16px; line-height: 1.55; }
.news-input {
  display: flex; gap: 0;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px; overflow: hidden; padding: 4px;
}
.news-input input {
  flex: 1; background: transparent; border: 0; outline: none;
  color: #fff; font-family: var(--font-sans); font-size: 14px; padding: 10px 14px;
}
.news-input input::placeholder { color: rgba(255,255,255,.45); }
.news-input button {
  background: var(--red); border: 0; color: #fff;
  width: 42px; height: 42px; border-radius: 8px;
  display: grid; place-items: center; transition: background .2s;
}
.news-input button:hover { background: var(--red-700); }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center;
  color: rgba(255,255,255,.85);
  transition: background .2s, border-color .2s, transform .15s;
}
.social a:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.35); transform: translateY(-1px); }
.footer-bot {
  padding-top: 28px; display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: rgba(255,255,255,.55);
}
.footer-bot .disclaimer { font-style: italic; }

/* ── LOGO MARK ────────────────────────────── */
.logo-mark {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-serif); font-weight: 700; line-height: 1; letter-spacing: 0.01em;
}
.logo-mark .text { display: flex; flex-direction: column; gap: 2px; font-size: 22px; }
.logo-mark .text .top { display: flex; gap: 6px; color: var(--navy-900); }
.logo-mark .text .top .red { color: var(--red); }
.logo-mark .text .sub {
  font-family: var(--font-sans); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.42em; color: var(--navy-900);
  border-top: 1.5px solid var(--navy-900); border-bottom: 1.5px solid var(--navy-900);
  padding: 3px 0; width: 100%; text-align: center;
}
.logo-mark.on-dark .text .top { color: #fff; }
.logo-mark.on-dark .text .top .red { color: #FF6181; }
.logo-mark.on-dark .text .sub { color: #fff; border-color: rgba(255,255,255,.7); }

/* ── GENERIC SECTION STYLES ───────────────── */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head h2 {
  font-family: var(--font-serif); font-weight: 500; font-size: clamp(36px,4vw,52px);
  line-height: 1.1; letter-spacing: -0.01em; color: var(--navy-900); margin: 12px 0 16px;
}
.section-head h2 em { font-style: italic; color: var(--red); font-weight: 500; }
.section-head p { color: var(--muted); font-size: 17px; margin: 0; line-height: 1.6; }
.section-light { padding: 96px 0; background: #fff; }
.section-cream  { padding: 96px 0; background: var(--cream); }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1100px) {
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .cats-grid { grid-template-columns: repeat(3,1fr); }
  .steps-grid { grid-template-columns: repeat(3,1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .nav-inner { padding: 0 24px; height: 80px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .brand img { height: 58px; }
  /* Hide CTA button from the header bar on mobile */
  .nav-right > .cta-btn { display: none !important; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; padding-bottom: 64px; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  h1.hero-title { font-size: clamp(40px, 8vw, 64px); }

  /* Services band */
  .services-inner { grid-template-columns: 1fr; padding-top: 72px; padding-bottom: 80px; }
  .services h2 { font-size: clamp(34px, 5vw, 48px); }
  .services .lede { max-width: 100%; }

  /* Visa categories */
  .cats { padding: 72px 0 68px; }
  .cats-head h2 { font-size: clamp(34px, 5vw, 48px); }
  .cats-grid { grid-template-columns: repeat(2,1fr); }

  /* Testimonial */
  .testi { padding: 72px 0 88px; }
  .testi-card { grid-template-columns: 1fr; }
  .testi-side { margin: 0 24px 24px; }
  .testi-side h3 { font-size: 26px; }

  /* Other layouts */
  .svc-detail-inner { grid-template-columns: 1fr; gap: 40px; }
  .svc-detail-inner.flip { direction: ltr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .articles-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 72px 0; }
  .cta-band-inner { grid-template-columns: 1fr; }
  .cta-band-btns { flex-wrap: wrap; }
  .tab-panel.active { grid-template-columns: repeat(2,1fr); }

  /* Page hero */
  .page-hero { padding: 52px 0 60px; }
  .page-hero h1 { font-size: clamp(32px, 6vw, 52px); }

  /* Steps */
  .steps-section { padding: 72px 0; }

  /* Stats */
  .stats-band { padding: 56px 0; }
}

@media (max-width: 600px) {
  .wrap, .wrap-wide { padding: 0 18px; }

  /* Section separation — ensure breathing room between every major section */
  .hero       { padding-bottom: 56px; }
  .services   { padding-top: 56px; padding-bottom: 64px; }
  .cats       { padding-top: 60px; padding-bottom: 60px; }
  .testi      { padding-top: 60px; padding-bottom: 72px; }
  .stats-band { padding-top: 52px; padding-bottom: 52px; }
  .cta-band   { padding-top: 64px; padding-bottom: 64px; }

  /* Hero */
  .hero-inner { padding-top: 40px; padding-bottom: 48px; gap: 32px; }
  h1.hero-title { font-size: clamp(36px, 9vw, 52px); margin: 16px 0 18px; }
  .hero-sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; }
  .cta-btn, .btn-ghost { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 16px; margin-top: 32px; padding-top: 24px; }
  .hero-badge { bottom: 16px; left: 16px; right: 16px; padding: 12px 14px; }
  .hero-stamp { top: 14px; right: 14px; font-size: 10px; padding: 8px 11px; }

  /* Services band */
  .services-inner { padding-top: 56px; padding-bottom: 64px; }
  .services h2 { font-size: 32px; }
  .service-grid { grid-template-columns: 1fr; }

  /* Visa categories */
  .cats { padding: 56px 0 52px; }
  .cats-head { margin-bottom: 32px; }
  .cats-head h2 { font-size: 32px; }
  .cats-head p { font-size: 15px; }
  .cats-grid { grid-template-columns: 1fr; }

  /* Testimonial */
  .testi { padding: 52px 0 64px; }
  .testi-quote blockquote { font-size: 22px; }
  .testi-quote { padding: 32px 22px 28px; }
  .testi-side { margin: 0 16px 16px; padding: 28px 22px; }
  .testi-side h3 { font-size: 22px; }

  /* Stats */
  .stats-band { padding: 44px 0; }
  .stats-grid { gap: 20px; }

  /* CTA band */
  .cta-band { padding: 56px 0; }
  .cta-band h2 { font-size: clamp(26px, 6vw, 36px); }

  /* Steps */
  .steps-section { padding: 56px 0; }
  .steps-grid { grid-template-columns: 1fr; }

  /* Section generics */
  .section-light { padding: 64px 0; }
  .section-cream  { padding: 64px 0; }

  /* Page hero */
  .page-hero { padding: 40px 0 48px; }
  .page-hero h1 { font-size: clamp(28px, 8vw, 42px); }
  .page-hero p { font-size: 15px; }

  /* Forms */
  .form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-section { padding: 48px 0 56px; }

  /* Articles / Team */
  .articles-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }

  /* Tabs */
  .tab-panel.active { grid-template-columns: 1fr; }
  .tab-btn { padding: 8px 14px; font-size: 13px; }

  /* Pricing */
  .pricing-section { padding: 56px 0; }
  .pricing-grid { max-width: 100%; }

  /* Service detail */
  .svc-detail { padding: 64px 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bot { flex-direction: column; gap: 10px; text-align: center; }
  footer.footer { padding: 56px 0 24px; }
}
