/* ===================================================
   IRIS IMMIGRATIONS — STYLESHEET
   =================================================== */

/* ---------- TOKENS ---------- */
:root {
  --orange:        #E8721A;
  --orange-dark:   #C85F12;
  --orange-light:  #F5A623;
  --orange-faint:  rgba(232,114,26,.07);
  --charcoal:      #1A1A1A;
  --ink:           #2A2A2A;
  --muted:         #636363;
  --muted-light:   #8A8A8A;
  --border:        #E2DFDB;
  --border-light:  #EDEBE8;
  --surface:       #F8F6F3;
  --surface-warm:  #FAF8F5;
  --white:         #FFFFFF;
  --dark-bg:       #181818;
  --dark-surface:  #212121;
  --green:         #25D366;

  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:     3px;
  --radius:        6px;
  --radius-lg:     10px;

  --max-w:         1160px;
  --section-gap:   104px;
  --transition:    .2s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ---------- UTILITY ---------- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 32px;
}

.section {
  padding-block: var(--section-gap);
}

/* Section rule separator */
.section + .section::before,
.section-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--border);
}

.section__header {
  text-align: center;
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 72px;
}

.section__header--left {
  text-align: left;
  margin-inline: 0;
}

.section__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--orange);
  flex-shrink: 0;
}

.section__eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--orange);
  flex-shrink: 0;
}

.section__header--left .section__eyebrow {
  justify-content: flex-start;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.2vw, 2.65rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.18;
  margin-bottom: 18px;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
}

/* Dark section variant */
.section--dark .section__eyebrow { color: rgba(245,166,35,.85); }
.section--dark .section__eyebrow::before,
.section--dark .section__eyebrow::after { background: rgba(245,166,35,.6); }
.section--dark .section__title { color: rgba(255,255,255,.95); }
.section--dark .section__subtitle { color: rgba(255,255,255,.55); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), opacity var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border: 1.5px solid var(--orange);
  transition: background .28s ease, border-color .28s ease, transform .18s ease;
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: #C05A0E; /* deeper burnt orange */
  border-color: #C05A0E;
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid rgba(26,26,26,.2);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  border-color: var(--charcoal);
}

.btn--ghost-light {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn--ghost-light:hover {
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}

.btn--whatsapp {
  background: var(--green);
  color: var(--white);
  border: 1.5px solid var(--green);
  padding: 11px 20px;
  font-size: .875rem;
}
.btn--whatsapp:hover { opacity: .88; }

.btn--full { width: 100%; justify-content: center; }

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
  transition: border-color var(--transition);
}
.header.scrolled { border-color: var(--border); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header__logo-img { height: 42px; width: auto; }

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header__logo-name {
  font-family: var(--font-serif);
  font-size: .975rem;
  font-weight: 600;
  color: var(--charcoal);
}

.header__logo-sub {
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--orange);
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-left: 0;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__link {
  display: block;
  padding: 7px 11px;
  font-size: .84rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: .01em;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--orange); }

/* Header CTA — ghost/outline style */
.header__cta {
  flex-shrink: 0;
  padding: 8px 20px;
  font-size: .84rem;
}

/* Outline button variant for header */
.btn--outline {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--orange);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  background: var(--surface);
  overflow: visible;
  padding-bottom: 80px; /* breathing room so trust card overlaps only bottom edge */
}

.hero__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;   /* equal halves — square image matches text height */
  gap: 32px;
  align-items: center;
}

/* ── LEFT COLUMN ── */
.hero__content {
  padding: 72px 24px 88px 0;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  gap: 0;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--orange);
  flex-shrink: 0;
  margin-right: 14px; /* extra right margin so line doesn't crowd the "E" */
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 3.6vw, 3.75rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 24px;
}

/* Regular italic parts of headline */
.hero__headline em {
  font-style: italic;
  color: var(--orange);
}

/* Elegant oversized ampersand — Baskerville/Georgia for editorial weight */
.hero__amp {
  font-family: 'Baskerville', 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
  font-style: italic;
  font-size: 1.18em; /* slightly larger than surrounding text */
  font-weight: 400;  /* lighter weight for elegance */
  color: var(--orange);
  letter-spacing: -.02em;
}

/* Short orange rule + improved body readability */
.hero__body {
  position: relative;
  font-size: 1rem;
  color: var(--ink); /* darkened from --muted for 4.5:1 contrast */
  line-height: 1.8;
  max-width: 430px;
  margin-bottom: 36px;
  padding-top: 28px;
}

.hero__body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 3px;
  background: var(--orange);
}

/* CTA row — two equal-width buttons */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* Both buttons share one min-width that comfortably exceeds the longer
   label, so they render at identical widths and the text never clips. */
.hero__actions .btn {
  flex: 0 0 auto;
  min-width: 215px;
  height: 48px;
  padding: 0 20px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
}

/* Phone button — borderless link style */
.hero__actions .btn--ghost {
  border: 1.5px solid rgba(26,26,26,.18);
  color: var(--ink);
  background: transparent;
}
.hero__actions .btn--ghost:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

/* ── RIGHT COLUMN — large square image, centred against the text ── */
.hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.hero__photo {
  display: block;
  width: 100%;
  height: auto;          /* square renders at full column width — large & prominent */
  object-fit: contain;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: transparent;
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 48px;
  margin-top: -58px;
}

.trust-bar__inner {
  position: relative;
  display: flex;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg) 0 var(--radius-lg) 0;
  /* overflow:hidden removed — it was clipping the box-shadow */
  /* Corner clipping handled per-item below instead */
  box-shadow:
    0 8px 24px rgba(0,0,0,.13),
    0 2px 6px rgba(0,0,0,.07);
}

/* Top-left orange corner */
.trust-bar__inner::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 36px;
  height: 36px;
  border-top: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-lg) 0 0 0;
  pointer-events: none;
  z-index: 2;
}

/* Bottom-right orange corner */
.trust-bar__inner::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 36px;
  height: 36px;
  border-bottom: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
  border-radius: 0 0 var(--radius-lg) 0;
  pointer-events: none;
  z-index: 2;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  flex: 1;
  border-right: 1px solid var(--border-light);
  transition: background var(--transition);
}
.trust-bar__item:hover { background: var(--surface); }
.trust-bar__item:last-child { border-right: none; }
/* Clip hover background to match card corners */
.trust-bar__item:first-child { border-radius: var(--radius-lg) 0 0 0; }
.trust-bar__item:last-child  { border-radius: 0 0 var(--radius-lg) 0; }

.trust-bar__icon {
  color: var(--orange);
  flex-shrink: 0;
}

.trust-bar__text { display: flex; flex-direction: column; gap: 2px; }

.trust-bar__value {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  white-space: nowrap;
}

.trust-bar__label {
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .03em;
  color: var(--muted);
  line-height: 1.35;
}

/* ---------- SERVICES ---------- */
.services {
  background: var(--white);
  padding-top: calc(var(--section-gap) + 52px);
}

.services__container {
  max-width: 1420px;
  margin-inline: auto;
  padding-inline: 48px;
}

.services__container .section__header {
  text-align: center;
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 52px;
}

.services__container .section__subtitle {
  max-width: 480px;
  margin-inline: auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Base card ── */
.svc-card {
  position: relative;
  background: #F8F6F3;
  border: none;
  border-radius: 18px;
  padding: 36px 38px 32px;   /* reduced vertical, widened horizontal */
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
  cursor: pointer;
  overflow: hidden;
}

/* ── Per-card decorative background geometry ── */

/* Card 1 featured — abstract curved arc */
.svc-card--featured::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 28px solid rgba(255,255,255,.12);
  pointer-events: none;
}
.svc-card--featured::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 14px solid rgba(255,255,255,.08);
  pointer-events: none;
}

/* ── Non-featured cards: subtle geometry backgrounds ── */

/* Card 2: top-right dashed arc */
.svc-card:nth-child(2)::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  border: 2px dashed var(--orange);
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

/* Card 3: bottom-left grid lines */
.svc-card:nth-child(3)::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background-image:
    linear-gradient(rgba(232,114,26,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,114,26,.06) 1px, transparent 1px);
  background-size: 12px 12px;
  pointer-events: none;
}

/* Card 4: floating circles */
.svc-card:nth-child(4)::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  opacity: 0.07;
  pointer-events: none;
}
.svc-card:nth-child(4)::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  opacity: 0.05;
  pointer-events: none;
}

/* Card 5: diagonal stripes */
.svc-card:nth-child(5)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(232,114,26,.04) 20px,
    rgba(232,114,26,.04) 22px
  );
  pointer-events: none;
}

/* Card 6: corner accent */
.svc-card:nth-child(6)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border-top: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
  border-radius: 12px 0 0 0;
  opacity: 0.08;
  pointer-events: none;
}

.svc-card > *:not(::before):not(::after) { position: relative; z-index: 1; }

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0,0,0,.11);
}

/* ── Featured card — orange background ── */
.svc-card--featured {
  background: var(--orange);
}
.svc-card--featured:hover {
  box-shadow: 0 18px 44px rgba(232,114,26,.38);
}

/* ── Learn More link ── */
.svc-card__learn {
  margin-top: auto;
  padding-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--orange);
  border-top: 1px solid rgba(0,0,0,.08);
  transition: gap .25s ease, color .25s ease;
  align-self: flex-start;
  width: 100%;
}
.svc-card__learn:hover { gap: 10px; color: var(--orange-dark); }
.svc-card__learn svg { flex-shrink: 0; transition: transform .25s ease; }
.svc-card__learn:hover svg { transform: translateX(3px); }

/* Featured card — white link */
.svc-card--featured .svc-card__learn {
  color: var(--white);
  border-top-color: rgba(255,255,255,.25);
}
.svc-card--featured .svc-card__learn:hover { color: rgba(255,255,255,.8); }

/* ── Icon circle ── */
.svc-card__icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  transition: transform .3s ease;
}
.svc-card:hover .svc-card__icon-wrap { transform: scale(1.07); }

/* Featured card: white circle, orange icon */
.svc-card--featured .svc-card__icon-wrap {
  background: var(--white);
  color: var(--orange);
}

/* ── Text ── */
.svc-card__title {
  font-family: var(--font-serif);
  font-size: 1.175rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.28;
  transition: color .3s ease;
}
.svc-card--featured .svc-card__title { color: var(--white); }

.svc-card__desc {
  font-size: .9rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.75;
  transition: color .3s ease, font-weight .3s ease;
}
/* Medium weight on featured card for legibility on orange */
.svc-card--featured .svc-card__desc {
  color: rgba(255,255,255,.9);
  font-weight: 500;
}

/* ---------- COUNTRIES ---------- */
.countries {
  position: relative;
  background: #F8F6F3;
  overflow: hidden;
}

/* Topographic SVG background */
.countries__topo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.countries__topo svg {
  width: 100%;
  height: 100%;
}

.countries__container {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 32px;
  padding-block: var(--section-gap);
}

.countries__container .section__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 56px;
}

/* 2-row × 4-column grid */
.countries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── Card ── */
.country-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.country-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,.10);
}

/* Flag image */
.country-card__flag-wrap {
  width: 100%;
  aspect-ratio: 3 / 2;     /* original aspect — no distortion */
  overflow: hidden;
  flex-shrink: 0;
}

@keyframes flagWave {
  0%   { transform: scale(1.04) skewX(0deg) skewY(0deg); }
  20%  { transform: scale(1.04) skewX(-1.5deg) skewY(0.5deg); }
  40%  { transform: scale(1.05) skewX(1deg) skewY(-0.4deg); }
  60%  { transform: scale(1.04) skewX(-0.8deg) skewY(0.3deg); }
  80%  { transform: scale(1.05) skewX(1.2deg) skewY(-0.5deg); }
  100% { transform: scale(1.04) skewX(0deg) skewY(0deg); }
}

.country-card__flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04); /* slight initial scale so wave never shows edges */
  transition: transform .35s ease;
  transform-origin: left center;
}

/* Waving flag on hover */
.country-card:hover .country-card__flag-img {
  animation: flagWave 2.4s ease-in-out infinite;
}

/* Card body — compact to reduce height below flag */
.country-card__body {
  padding: 10px 13px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.country-card__name {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
}

.country-card__code {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--orange);
  font-family: var(--font-sans);
}

.country-card__desc {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Status tag */
.country-card__tag {
  margin-top: auto;
  padding-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.country-card__tag--established {
  color: var(--orange);
}

.country-card__tag--expanding {
  color: #2A8A4A;
}

/* Note strip */
.countries__note-strip {
  margin-top: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 0 6px 6px 0;
  padding: 14px 20px;
  font-size: .875rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.countries__note-strip svg { color: var(--orange); flex-shrink: 0; }


/* ---------- TRACK RECORD — deep matte orange with hairline diagonal watermark ---------- */
.track-record {
  background: #C25B10;          /* deep matte orange base */
  padding-block: var(--section-gap);
  position: relative;
  overflow: hidden;
}

/* Hairline 45° diagonal stripe watermark — 1.5% opacity, purely tactile */
.track-record::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.015) 1px,
    rgba(255,255,255,0.015) 10px,
    transparent 100px,
    transparent 100px
  );
  pointer-events: none;
  z-index: 0;
}

/* Lift all direct content children above the watermark */
.track-record > .container { position: relative; z-index: 1; }

/* ── VISA STATS ROW ── */
.visa-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.visa-stats-row__divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
  align-self: center;
}

.visa-stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  text-align: center;
}

.visa-stat-block__label {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.80);
}

.visa-stat-block__sub {
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(255,255,255,.45);
  margin-top: -4px;
}

/* ── FLIP COUNTER SCOREBOARD ──
   Split-flap model. Each .flip-digit holds 4 absolutely-positioned panels:
     .flip-panel--upper-back : static top half showing the NEW digit (revealed as front folds away)
     .flip-panel--lower-back : static bottom half showing the OLD digit (visible behind unfolding leaf)
     .flip-panel--leaf-upper : front top leaf showing OLD digit, rotates 0deg -> -90deg
     .flip-panel--leaf-lower : front bottom leaf showing NEW digit, rotates 90deg -> 0deg
   Each panel renders a full-height digit clipped to its half via overflow:hidden,
   so the two halves always read as one continuous glyph.                          */

.flip-counter {
  display: flex;
  gap: 4px;
}

.flip-digit {
  position: relative;
  width: 52px;
  height: 72px;
  font-size: 2.6rem;          /* drives panel line-height sizing */
  perspective: 320px;          /* per-tile perspective for a crisp fold */
  border-radius: 7px;
  background: #0c0c0c;
  box-shadow:
    0 4px 12px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.04);
}

/* Shared panel skeleton — every panel is a clipped half-height window */
.flip-panel {
  position: absolute;
  left: 0; right: 0;
  height: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  /* GPU compositing — force each panel onto its own layer */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

/* The digit glyph — identical inside every panel; halves clip it */
.flip-panel span {
  font-family: var(--font-sans);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 72px;           /* == tile height, so the glyph spans both halves */
  width: 52px;
  text-align: center;
  user-select: none;
  background: linear-gradient(180deg, #F5A623 0%, #C25B10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.5));
}

/* Top panels: anchor glyph to the bottom so its lower edge sits at the crease */
.flip-panel--upper-back,
.flip-panel--leaf-upper {
  top: 0;
  align-items: flex-end;
  border-radius: 7px 7px 0 0;
  background: #1a1a1a;
}
.flip-panel--upper-back span,
.flip-panel--leaf-upper span { margin-bottom: -36px; } /* pull glyph up by half its height */

/* Bottom panels: anchor glyph to the top so its upper edge sits at the crease */
.flip-panel--lower-back,
.flip-panel--leaf-lower {
  bottom: 0;
  align-items: flex-start;
  border-radius: 0 0 7px 7px;
  background: #111111;
}
.flip-panel--lower-back span,
.flip-panel--leaf-lower span { margin-top: -36px; }

/* Static back panels sit on the lowest layer */
.flip-panel--upper-back { z-index: 1; }
.flip-panel--lower-back { z-index: 1; }

/* Front leaves hinge from the crease (the tile's vertical centre) */
.flip-panel--leaf-upper {
  z-index: 3;
  transform-origin: bottom center;
  transform: rotateX(0deg);
}
.flip-panel--leaf-lower {
  z-index: 2;                   /* below the upper leaf until midpoint */
  transform-origin: top center;
  transform: rotateX(90deg);    /* starts folded up out of view */
}

/* Active flip — driven by transition, toggled via .is-flipping on the tile.
   Phase 1: upper leaf folds down to -90 (out of view).
   At midpoint JS swaps content + raises the lower leaf's z-index.
   Phase 2: lower leaf unfolds from 90 down to 0. */
.flip-digit.is-flipping .flip-panel--leaf-upper {
  transform: rotateX(-90deg);
  transition: transform .07s cubic-bezier(.36,0,.66,-0.05);
}
.flip-digit.is-flipping .flip-panel--leaf-lower {
  transform: rotateX(0deg);
  transition: transform .07s cubic-bezier(.34,1.05,.64,1) .07s; /* starts after upper finishes */
  z-index: 4;
}

/* Crease shadow on the leaves for tactile depth */
.flip-panel--leaf-upper::after,
.flip-panel--leaf-lower::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 8px;
  pointer-events: none;
}
.flip-panel--leaf-upper::after { bottom: 0; background: linear-gradient(to bottom, transparent, rgba(0,0,0,.35)); }
.flip-panel--leaf-lower::after { top: 0;    background: linear-gradient(to top,    transparent, rgba(0,0,0,.25)); }

/* Central crease line — light enough for the orange glyph to bleed through */
.flip-digit::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  margin-top: -0.5px;
  background: rgba(0,0,0,.12);
  z-index: 6;
  pointer-events: none;
}

/* ── DIVIDER RULE ── */
.track-record__rule {
  border: none;
  border-top: 1px solid rgba(255,255,255,.18);
  margin: 0 0 52px;
}

/* ── ENGAGEMENTS GRID ── */
.track-record__engagements-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  margin-bottom: 32px;
  text-align: center;
}

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 48px;
  max-width: 860px;
  margin-inline: auto;
}

.engagement-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.engagement-card:nth-last-child(-n+2) { border-bottom: none; }

.engagement-card__icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255,255,255,.70);
  opacity: 1;
}

.engagement-card__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.0rem;
  font-weight: 600;
  color: rgba(255,255,255,.93);
  margin-bottom: 4px;
  line-height: 1.25;
}

.engagement-card__desc {
  display: block;
  font-size: .84rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

/* ── CONSOLIDATED FOOTER NOTE ── */
.track-record__footer-note {
  margin-top: 44px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-left: 3px solid var(--orange);
  border-radius: 0 6px 6px 0;
  padding: 14px 20px;
  font-size: .875rem;
  color: rgba(255,255,255,.72);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.6;
}
.track-record__footer-note svg { color: var(--orange); flex-shrink: 0; }

/* ---------- WHY US — living network diagram ---------- */

.why-us {
  background: var(--white);
  padding-top: calc(var(--section-gap) * 0.7);
  padding-bottom: calc(var(--section-gap) * 0.7);
  overflow: hidden;
}

.why-us__header {
  text-align: center;
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 8px;
  padding-inline: 32px;
}

/* ── SVG wrapper ──
   The viewBox (-120 0 1440 760) already reserves side room for the
   right/left-aligned text labels, so all content stays inside the SVG
   box and scales down with the diagram — no edge clipping at any width. */
.why-diagram-wrap {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 24px;
  box-sizing: border-box;
}

.why-diagram-svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Rotating globe texture ──
   transform-box: view-box anchors transform-origin to SVG coords.
   Soft transition smooths out scroll-driven rotation updates.       */
.why-globe-rotate {
  transform-box: view-box;
  transform-origin: 600px 380px;
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

/* ── Signal rings — concentric waves radiating from centre ──
   Parent layers carry the scroll parallax (JS-driven scale around
   the centre); individual rings carry the radio-wave entrance.      */
.why-signal {
  transform-box: view-box;
  transform-origin: 600px 380px;
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.why-ring {
  opacity: var(--ring-op, .05);          /* resting state (no-JS) */
  transform-box: fill-box;
  transform-origin: center;
  pointer-events: none;
}

/* Armed: collapse to centre + hidden, ready to expand on view */
.why-anim-ready .why-ring {
  opacity: 0;
  transform: scale(0.12);
}

/* Radio-wave entrance — slow, smooth, staggered via inline delay */
.why-us.in-view .why-ring {
  animation: ringEmerge 1.9s cubic-bezier(.16,.84,.44,1) forwards;
}

@keyframes ringEmerge {
  0%   { opacity: 0;                    transform: scale(0.12); }
  35%  { opacity: var(--ring-op, .05); }
  100% { opacity: var(--ring-op, .05); transform: scale(1); }
}

/* ── Rays ──
   Default (no-JS / reduced motion): drawn, faint, static.
   pathLength="1" normalises every ray so one dash rule fits all.    */
.why-ray {
  stroke: #E8721A;
  stroke-width: 1;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  opacity: 0.30;
}

/* When JS arms the animation, hide rays until the section is seen */
.why-anim-ready .why-ray {
  stroke-dashoffset: 1;
  opacity: 0;
}

/* Draw outward from centre once in view (staggered via inline delay) */
.why-us.in-view .why-ray {
  animation: rayDraw 1.05s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes rayDraw {
  0%   { stroke-dashoffset: 1; opacity: 0; }
  18%  { opacity: 0.34; }
  100% { stroke-dashoffset: 0; opacity: 0.30; }
}

/* ── Pulsing glow behind each node ── */
.why-node__glow {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  pointer-events: none;
}

.why-us.in-view .why-node__glow {
  animation: nodePulse 3.6s ease-in-out infinite;
  animation-delay: var(--pulse-delay, 0s);
}

@keyframes nodePulse {
  0%, 100% { opacity: 0;    transform: scale(0.72); }
  45%      { opacity: 0.13; transform: scale(1.55); }
  60%      { opacity: 0.10; transform: scale(1.62); }
}

/* ── Node fade-in (staggered with the rays) ── */
.why-anim-ready .why-node {
  opacity: 0;
}
.why-us.in-view .why-node {
  animation: nodeIn 0.7s ease forwards;
  /* lag slightly behind its ray: data order matches ray order */
}
.why-us.in-view .why-node[data-n="1"] { animation-delay: 0.55s; }
.why-us.in-view .why-node[data-n="2"] { animation-delay: 0.65s; }
.why-us.in-view .why-node[data-n="3"] { animation-delay: 0.75s; }
.why-us.in-view .why-node[data-n="4"] { animation-delay: 0.85s; }
.why-us.in-view .why-node[data-n="5"] { animation-delay: 0.95s; }
.why-us.in-view .why-node[data-n="6"] { animation-delay: 1.05s; }

@keyframes nodeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Node hover states ── */
.why-node { cursor: pointer; }

.why-node__fill {
  transition: fill .28s ease, transform .28s ease;
  transform-box: fill-box;
  transform-origin: center;
}
.why-node:hover .why-node__fill {
  fill: #E8721A;
  transform: scale(1.10);
}

.why-node__border {
  transition: stroke-width .28s ease, opacity .28s ease;
}
.why-node:hover .why-node__border {
  stroke-width: 0;
  opacity: 0;
}

.why-node__icon {
  transition: stroke .28s ease;
}
.why-node:hover .why-node__icon {
  stroke: #FFFFFF;
}

.why-node__title {
  transition: fill .28s ease;
}
.why-node:hover .why-node__title {
  fill: #C05A0E;
}

/* ── Reduced motion: everything static and fully visible ── */
@media (prefers-reduced-motion: reduce) {
  .why-globe-rotate { transition: none; transform: none !important; }
  .why-signal { transition: none; transform: none !important; }
  .why-anim-ready .why-ring,
  .why-us.in-view .why-ring { animation: none; transform: scale(1); opacity: var(--ring-op, .05); }
  .why-anim-ready .why-ray,
  .why-us.in-view .why-ray { animation: none; stroke-dashoffset: 0; opacity: 0.30; }
  .why-anim-ready .why-node,
  .why-us.in-view .why-node { animation: none; opacity: 1; }
  .why-us.in-view .why-node__glow { animation: none; opacity: 0; }
}

/* ── Mobile fallback ── */
.why-mobile { display: none; }

.why-mobile__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  max-width: 680px;
  margin-inline: auto;
  padding-inline: 24px;
}

.why-mobile__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.why-mobile__item:last-child { border-bottom: none; }

.why-mobile__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(232,114,26,.22);
  background: rgba(232,114,26,.04);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Mobile text (same classes used in SVG too) */
.why-pillar__title {
  font-family: var(--font-serif);
  font-size: .9rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.28;
  margin-bottom: 3px;
}

.why-pillar__desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ---------- TESTIMONIALS — left border accent ---------- */
.testimonials { background: var(--surface); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  align-items: center;
}

.testimonial-card__quote {
  font-size: .95rem;
  color: var(--ink);
  line-height: 1.78;
  flex: 1;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid rgba(232,114,26,.18);
}

.testimonial-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card__name {
  display: block;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--charcoal);
}

.testimonial-card__time {
  display: block;
  font-size: .75rem;
  color: var(--muted-light);
}

/* ---------- FAQ ---------- */
.faq { background: var(--white); }

.faq__inner { max-width: 760px; }

.faq__inner .section__header {
  text-align: left;
  max-width: none;
  margin-inline: 0;
}
.faq__inner .section__eyebrow { justify-content: flex-start; }

.faq__list { display: flex; flex-direction: column; }

.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }

.faq__question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}

.faq__question:hover,
.faq__question[aria-expanded="true"] { color: var(--orange); }

.faq__icon {
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(180deg); }

.faq__answer {
  padding-bottom: 24px;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.78;
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */

/* ── Section shell: orange canvas + micro-grid + depth layers ── */
.contact {
  background: #C25B10;
  position: relative;
  padding-block: var(--section-gap);
  overflow: hidden;
}

/* Layer 1 — micro square grid, 28px cells, slightly-lighter warm orange lines */
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,206,160,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,206,160,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Layer 2 — radial glow behind the form area for depth */
.contact::after {
  content: '';
  position: absolute;
  left: -5%; top: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse 65% 58% at 38% 46%, rgba(255,206,150,.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Layer 3 — travel motif: dashed flight routes, compass, meridians (very low opacity) */
.contact__deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.contact__deco svg { width: 100%; height: 100%; display: block; }

.deco-route {
  fill: none;
  stroke: rgba(255,239,222,.16);
  stroke-width: 1.5;
  stroke-dasharray: 1.5 9;
  stroke-linecap: round;
}
.deco-dot { fill: rgba(255,239,222,.24); }
.deco-compass > * {
  fill: none;
  stroke: rgba(255,239,222,.12);
  stroke-width: 1;
}
.deco-globe > * {
  fill: none;
  stroke: rgba(255,239,222,.09);
  stroke-width: 1;
}

.contact__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 48px;
}

/* Section header override — white text on orange canvas */
.contact__header .section__eyebrow { color: rgba(255,255,255,.7); }
.contact__header .section__eyebrow::before,
.contact__header .section__eyebrow::after { background: rgba(255,255,255,.4); }
.contact__header .section__title   { color: #fff; }
.contact__header .section__subtitle { color: rgba(255,255,255,.65); }
.contact__header { margin-bottom: 52px; }

.contact__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: stretch;   /* both columns fill to the same height */
}

/* ── FORM CARD — warm ivory document feel ── */
.contact__form-wrap {
  background: #F8F6F3;
  border: 1px solid rgba(200,190,178,.55);
  border-radius: 10px;
  padding: 44px 40px;
  box-shadow:
    0 2px 0 rgba(255,255,255,.35) inset,   /* top highlight */
    0 12px 48px rgba(0,0,0,.22),
    0 2px 8px rgba(0,0,0,.12);
}

.form-card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 10px;
}

.form-card-sub {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 26px;
  max-width: 420px;
}

/* Form layout */
.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group { display: flex; flex-direction: column; gap: 5px; }

.form-label {
  font-size: .8rem;
  font-weight: 500;
  color: #3A3632;
  letter-spacing: .02em;
}
.form-label span { color: var(--orange); }

/* Input wrapper holds icon + input together */
.form-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.form-input-icon {
  position: absolute;
  left: 13px;
  color: #A8A09A;
  pointer-events: none;
  flex-shrink: 0;
  z-index: 1;
}

.form-input-icon--top {
  top: 15px;
  align-self: flex-start;
}

.form-input {
  width: 100%;
  padding: 15px 14px 15px 42px;  /* taller field + room for icon */
  border: 1.5px solid #DDD9D4;
  border-radius: 7px;
  font-size: .92rem;
  color: var(--ink);
  background: #FDFCFB;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  outline: none;
  appearance: none;
  line-height: 1.4;
}

.form-input::placeholder { color: #C2BDB8; }

.form-input:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232,114,26,.1);
}

.form-input.invalid {
  border-color: #D94040;
  box-shadow: 0 0 0 3px rgba(217,64,64,.08);
}

.form-textarea {
  resize: vertical;
  min-height: 180px;
  padding-top: 15px;
  align-self: stretch;
}

.form-input-wrap--textarea { align-items: flex-start; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238A8A8A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-error {
  font-size: .775rem;
  color: #D94040;
  min-height: 16px;
}

/* Submit CTA */
.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 54px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(232,114,26,.25);
  transition: background .25s ease, gap .25s ease, box-shadow .25s ease, transform .15s ease;
  margin-top: 6px;
}

.contact-submit-btn:hover {
  background: #A84A0A;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(168,74,10,.32);
}
.contact-submit-btn:active { transform: translateY(1px); }
.contact-submit-btn:disabled { opacity: .7; cursor: default; }

.contact-submit-arrow { transition: transform .25s ease; }
.contact-submit-btn:hover .contact-submit-arrow { transform: translateX(3px); }

/* ── Loading state — spinner replaces the arrow while submitting ── */
.contact-submit-btn.is-loading { cursor: progress; opacity: .9; }
.contact-submit-btn.is-loading:hover { gap: 10px; box-shadow: none; background: var(--orange); }
.contact-submit-btn.is-loading .contact-submit-arrow { display: none; }
.contact-submit-btn.is-loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .45);
  border-top-color: #fff;
  animation: btn-spin .6s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }

/* ── Submission error banner ── */
.form-submit-error {
  margin-bottom: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(200, 40, 40, .07);
  border: 1px solid rgba(200, 40, 40, .25);
  color: #B02A2A;
  font-size: .85rem;
  line-height: 1.5;
}

/* ── Honeypot — visually hidden but present for bots ── */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── Thank-you state — only revealed after a successful submit ── */
.form-thankyou { display: none; }

.contact__form-wrap.is-submitted .form-card-title,
.contact__form-wrap.is-submitted .form-card-sub,
.contact__form-wrap.is-submitted .contact-form { display: none; }

.contact__form-wrap.is-submitted .form-thankyou {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  padding: 40px 24px;
  min-height: 360px;
  animation: thankyou-in .55s cubic-bezier(.22,1,.36,1) both;
}

@keyframes thankyou-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-thankyou__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(37,211,102,.1);
  border: 1.5px solid rgba(37,211,102,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a7a3e;
}

.form-thankyou__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
}

.form-thankyou__body {
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.72;
  max-width: 300px;
}

/* ── RIGHT COLUMN: CONTACT INFO ── */
.contact__info {
  display: flex;
  flex-direction: column;
  height: 100%;   /* fill the grid row so left card and right column match */
}

/* Info stack — a connected list with hairline dividers */
.contact__info-stack {
  display: flex;
  flex-direction: column;
}

.contact__info-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 2px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.contact__info-block:first-child { padding-top: 4px; }

.contact__info-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.78);
  flex-shrink: 0;
  margin-top: 1px;
}

.contact__info-body { padding-top: 1px; }

.contact__block-title {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 7px;
}

.contact__link {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.94);
  transition: color .2s ease;
  margin-bottom: 3px;
}
.contact__link:last-child { margin-bottom: 0; }
.contact__link:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.contact__address {
  font-size: .9rem;
  color: rgba(255,255,255,.74);
  line-height: 1.7;
  font-style: normal;
}

/* Clickable location mentions — open the office location on Google Maps */
.location-link {
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.22);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition), text-decoration-color var(--transition);
}
.location-link:hover {
  color: var(--white);
  text-decoration-color: currentColor;
}
/* On light backgrounds (hero eyebrow), the underline needs a darker base tone */
.hero__eyebrow .location-link {
  text-decoration-color: rgba(232,114,26,.35);
}
.hero__eyebrow .location-link:hover {
  text-decoration-color: currentColor;
}

.contact__hours {
  font-size: .9rem;
  color: rgba(255,255,255,.74);
  line-height: 1.6;
}

/* Map block */
.contact__map-wrap {
  margin-top: 30px;
  flex: 1;              /* grow to fill remaining vertical space */
  display: flex;
  flex-direction: column;
}

.contact__map-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}

.contact__map-sub {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}

.contact__map {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 4px 20px rgba(0,0,0,.22);
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.6);
  padding-top: 0;
}

/* Facts strip */
.footer__facts {
  background: var(--dark-surface);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer__facts-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.footer__fact {
  padding: 16px 28px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__fact:last-child { border-right: none; }

.footer__fact-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  opacity: .7;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 56px;
  padding-top: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__brand { display: flex; flex-direction: column; gap: 14px; }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__logo-img { height: 38px; width: auto; }

.footer__logo-name {
  display: block;
  font-family: var(--font-serif);
  font-size: .975rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.footer__logo-sub {
  display: block;
  font-size: .64rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--orange-light);
}

.footer__tagline {
  font-size: .9375rem;
  color: rgba(255,255,255,.45);
}

.footer__about {
  font-size: .82rem;
  color: rgba(255,255,255,.3);
  line-height: 1.68;
  max-width: 300px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.footer__social-link:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
}

.footer__nav-title {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}

.footer__nav-list { display: flex; flex-direction: column; gap: 11px; }

.footer__nav-link {
  font-size: .9rem;
  color: rgba(255,255,255,.52);
  transition: color var(--transition);
}
.footer__nav-link:hover { color: var(--white); }

.footer__contact { display: flex; flex-direction: column; gap: 8px; }
.footer__contact .footer__nav-title { margin-bottom: 10px; }

.footer__contact-link {
  display: block;
  font-size: .9rem;
  color: rgba(255,255,255,.52);
  transition: color var(--transition);
  margin-bottom: 2px;
}
.footer__contact-link:hover { color: var(--white); }

.footer__address {
  font-size: .84rem;
  color: rgba(255,255,255,.38);
  line-height: 1.75;
  margin-top: 6px;
}

.footer__bottom { padding-block: 20px; }

.footer__copy {
  font-size: .79rem;
  color: rgba(255,255,255,.28);
  text-align: center;
}

/* ---------- FOCUS ---------- */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- SKIP LINK ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--orange);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  z-index: 999;
  transition: top .2s;
}
.skip-link:focus { top: 8px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  :root { --section-gap: 80px; }

  .hero__inner { grid-template-columns: 1fr 1fr; padding-inline: 32px; gap: 20px; }
  .hero__content { padding: 56px 0; }
  .trust-bar { padding-inline: 32px; margin-top: -56px; }
  .trust-bar__item { padding: 18px 16px; gap: 10px; }

  .services__container { padding-inline: 24px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .countries__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .process__step-desc { display: none; }

  .visa-stat-block { padding: 0 28px; }
  .engagements-grid { grid-template-columns: 1fr; gap: 0; }

  /* Why Us — tablet: SVG scales naturally via viewBox, no overrides needed */
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }

  .footer__inner { grid-template-columns: 1.5fr 1fr 1.5fr; gap: 40px; }
}

/* Why Us: swap SVG diagram to mobile list on mid-size devices */
@media (max-width: 900px) {
  .why-diagram-wrap { display: none; }
  .why-mobile       { display: block; }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }

  html { font-size: 16px; }

  /* Header */
  .nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    display: none;
    z-index: 99;
  }
  .nav.open { display: block; }
  .nav__list { flex-direction: column; gap: 2px; }
  .nav__link { padding: 12px 8px; font-size: .975rem; color: var(--ink); }
  .hamburger { display: flex; }
  .header__cta { display: none; }
  .header__inner { gap: 12px; }

  /* Hero — stack image above text */
  .hero__inner {
    grid-template-columns: 1fr;
    padding-inline: 24px;
    gap: 0;
  }
  .hero__right { order: -1; }
  .hero__content { padding: 24px 0 56px; }
  .hero__actions { flex-direction: column; align-items: stretch; max-width: none; }
  .hero__actions .btn { flex: 0 0 auto; width: 100%; justify-content: center; }

  /* Trust bar — full width grid on mobile */
  .trust-bar { padding-inline: 24px; margin-top: -40px; }
  .trust-bar__inner { flex-wrap: wrap; }
  .trust-bar__item {
    flex: 1 1 calc(50% - 1px);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 14px;
  }
  .trust-bar__item:nth-child(even) { border-right: none; }
  .trust-bar__item:nth-last-child(-n+2) { border-bottom: none; }

  .services__container { padding-inline: 16px; }
  .services__grid { grid-template-columns: 1fr; gap: 14px; }

  /* Countries */
  .countries__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Process */
  .process__track {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .process__track::before { display: none; }
  .process__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  .process__step:last-child { border-bottom: none; }
  .process__step-num { margin-bottom: 0; flex-shrink: 0; }
  .process__step-desc { display: block; }

  /* Track record */
  .visa-stats-row { gap: 0; }
  .visa-stat-block { padding: 16px 20px; }
  .visa-stats-row__divider { display: none; }
  .engagement-card:nth-last-child(-n+2) { border-bottom: 1px solid rgba(26,26,26,.09); }
  .engagement-card:last-child { border-bottom: none; }

  /* Why us — swap to mobile list at 768px, handled separately below */

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact__inner { padding-inline: 24px; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__facts-inner { justify-content: flex-start; }
  .footer__fact { flex: 1 1 50%; }

  /* FAQ */
  .faq__inner .section__header { text-align: center; }
  .faq__inner .section__eyebrow { justify-content: center; }
}

@media (max-width: 480px) {
  .hero__inner { padding-inline: 16px; }
  .hero__actions { flex-direction: column; align-items: stretch; max-width: none; }
  .hero__actions .btn { flex: 0 0 auto; width: 100%; justify-content: center; }
  .trust-bar { padding-inline: 16px; }
  .trust-bar__item { flex: 1 1 100%; border-right: none; border-bottom: 1px solid var(--border-light); }
  .trust-bar__item:last-child { border-bottom: none; }
  .section__header { margin-bottom: 48px; }
  .services__container { padding-inline: 16px; }
  .services__grid { grid-template-columns: 1fr; }
  .countries__grid { grid-template-columns: 1fr; }
  /* why-us mobile list already active from 768px */
  .footer__fact { flex: 1 1 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
}

/* ---------- FADE IN ---------- */
.fade-target {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-target.visible {
  opacity: 1;
  transform: none;
}

/* ---------- PRINT ---------- */
@media print {
  .header, .hamburger, .hero__actions, .contact-form, .footer { display: none; }
}
