/* ==========================================================================
   OG Sky Global — Travel & Tours
   Production stylesheet. Plain CSS, no build step.
   Sections: 1 Tokens · 2 Reset · 3 Layout · 4 Type · 5 Buttons · 6 Header
             7 Hero · 8 Components · 9 Forms · 10 Footer · 11 Responsive
   ========================================================================== */

/* 1. TOKENS ================================================================= */
:root {
  /* brand */
  --brand:            #12695f;
  --brand-dark:       #0d4a43;
  --brand-light:      #17796d;
  --brand-grad:       linear-gradient(165deg, #17796d 0%, #0d4a43 100%);
  --brand-band:       linear-gradient(135deg, #145f56 0%, #0d3f39 100%);

  /* accent */
  --accent:           oklch(72% 0.14 65);
  --accent-hover:     oklch(66% 0.15 62);
  --accent-ink:       oklch(20% 0.05 60);

  /* surfaces */
  --page:             oklch(98% 0.004 220);
  --surface:          #fff;
  --surface-alt:      oklch(97% 0.006 220);
  --surface-tint:     oklch(94% 0.018 195);
  --line:             oklch(92% 0.006 220);
  --line-strong:      oklch(90% 0.01 220);

  /* ink */
  --ink:              oklch(22% 0.02 230);
  --ink-soft:         oklch(40% 0.02 230);
  --ink-muted:        oklch(48% 0.02 230);
  --ink-faint:        oklch(55% 0.02 220);

  /* footer */
  --footer-bg:        oklch(19% 0.025 195);
  --footer-ink:       oklch(70% 0.01 220);
  --footer-line:      oklch(32% 0.02 220);
  --footer-faint:     oklch(58% 0.01 220);

  /* scale */
  --wrap:             1240px;
  --gutter:           clamp(18px, 4.5vw, 32px);
  --pad-section:      clamp(56px, 9vw, 100px);
  --radius:           16px;
  --radius-sm:        9px;
  --shadow:           0 20px 50px -20px oklch(20% 0.05 230 / 0.25);
  --shadow-card:      0 12px 30px -18px oklch(20% 0.05 230 / 0.35);
  --header-h:         79px; /* 54px logo + 12px padding top/bottom + 1px border */
}

/* 2. RESET & BASE =========================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, iframe { max-width: 100%; display: block; }
img { height: auto; }

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--accent-hover); }

h1, h2, h3, h4 { margin: 0; letter-spacing: -0.5px; line-height: 1.2; font-weight: 800; }
p  { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand); color: #fff; padding: 12px 20px;
  font-weight: 700; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* honour reduced-motion across the whole site */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* 3. LAYOUT ================================================================= */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--pad-section); }
.section--alt   { background: var(--surface-alt); }
.section--tight { padding-block: clamp(40px, 6vw, 64px); }
.section--flush-top { padding-top: 0; }

/* anchor targets clear the sticky header */
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

.section-head {
  max-width: 620px;
  margin: 0 auto clamp(36px, 5vw, 60px);
  text-align: center;
}
.section-head--left { margin-inline: 0; text-align: left; }

/* header row with a trailing button that drops below on small screens */
.head-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 40px);
}

/* 4. TYPOGRAPHY ============================================================= */
.eyebrow {
  color: var(--brand);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow--accent { color: var(--accent); }

.h1 { font-size: clamp(30px, 5.4vw, 42px); }
.h2 { font-size: clamp(25px, 4.2vw, 36px); }
.h3 { font-size: clamp(17px, 2.2vw, 20px); }

.lead {
  font-size: clamp(15px, 1.6vw, 16px);
  line-height: 1.75;
  color: var(--ink-soft);
}
.muted { color: var(--ink-muted); font-size: 14.5px; line-height: 1.65; }
.text-center { text-align: center; }

/* 5. BUTTONS ================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: 0;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  font-family: inherit;
  transition: background-color .18s ease, color .18s ease,
              transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--accent { background: var(--accent); color: var(--accent-ink); }
.btn--accent:hover { background: var(--accent-hover); color: var(--accent-ink); }

.btn--brand { background: var(--brand); color: #fff; }
.btn--brand:hover { background: var(--brand-light); color: #fff; }

.btn--ghost {
  background: transparent; color: #fff;
  border: 1.5px solid oklch(85% 0.01 220 / 0.6);
}
.btn--ghost:hover { background: oklch(100% 0 0 / 0.12); color: #fff; }

.btn--outline {
  background: transparent; color: var(--brand);
  border: 1.5px solid var(--brand);
}
.btn--outline:hover { background: var(--brand); color: #fff; }

.btn--sm { font-size: 14px; padding: 12px 20px; }
.btn--block { width: 100%; }

.link-arrow { font-size: 13.5px; font-weight: 700; color: var(--brand); }
.link-arrow:hover { color: var(--accent-hover); }

/* 6. HEADER & NAVIGATION ==================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: oklch(99% 0.002 220 / 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-strong);
}
.site-header__inner {
  max-width: var(--wrap); margin-inline: auto;
  padding: 12px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

.brand { display: flex; align-items: center; flex: none; }
.brand:hover { color: inherit; }
/* The full logo is portrait (icon stacked above the wordmark), so it's sized
   by height — width follows the aspect ratio. */
.brand__mark { height: 54px; width: auto; flex: none; display: block; }

.main-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; row-gap: 8px; flex-wrap: wrap;
  flex: 1; min-width: 0;
  font-size: 14px; font-weight: 600;
}
.main-nav a { color: oklch(30% 0.02 230); white-space: nowrap; }
.main-nav a:hover { color: var(--brand); }
.main-nav a[aria-current="page"] { color: var(--brand); }

.header-cta { flex: none; }

/* the drawer gets its own copy of the CTA; hidden while the nav is inline */
.main-nav .nav-cta { display: none; }

/* hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line-strong);
  border-radius: 9px; cursor: pointer; color: var(--ink); flex: none;
}
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ""; display: block;
  width: 20px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle__bars::before { position: relative; top: -6px; }
.nav-toggle__bars::after  { position: relative; top: 4px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { transform: translateY(-4px) rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0; z-index: 55;
  background: oklch(20% 0.03 220 / 0.5);
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
}
body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

/* 7. HERO & PAGE BANNER ===================================================== */
.hero {
  position: relative;
  min-height: clamp(440px, 68vh, 640px);
  display: flex; align-items: center;
  isolation: isolate;
}
.hero__media, .banner__media {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg,
    oklch(18% 0.04 195 / 0.88) 0%,
    oklch(20% 0.04 195 / 0.55) 45%,
    oklch(20% 0.04 195 / 0.15) 100%);
}
.hero__inner { max-width: var(--wrap); margin-inline: auto; width: 100%; padding: 48px var(--gutter); }
.hero__content { max-width: 600px; }
.hero__kicker {
  color: oklch(80% 0.12 65); font-weight: 700;
  font-size: clamp(12px, 1.4vw, 14px); letter-spacing: 3px; margin-bottom: 16px;
}
.hero__title {
  font-size: clamp(32px, 6.4vw, 56px);
  line-height: 1.08; color: #fff; margin-bottom: 20px; letter-spacing: -1px;
}
.hero__text {
  font-size: clamp(15px, 1.9vw, 18px); line-height: 1.6;
  color: oklch(92% 0.01 220); margin-bottom: 32px; max-width: 480px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* inner-page banner */
.banner {
  position: relative; isolation: isolate;
  min-height: clamp(200px, 30vw, 300px);
  display: flex; align-items: center;
}
.banner::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg,
    oklch(18% 0.04 195 / 0.92) 0%, oklch(20% 0.04 195 / 0.72) 100%);
}
.banner__inner { max-width: var(--wrap); margin-inline: auto; width: 100%; padding: 40px var(--gutter); }
.banner__title { font-size: clamp(28px, 5.4vw, 42px); color: #fff; }

.crumbs { font-weight: 600; font-size: 14px; margin-bottom: 10px; color: oklch(80% 0.02 210); }
.crumbs a { color: oklch(80% 0.02 210); }
.crumbs a:hover { color: #fff; }

/* 8. COMPONENTS ============================================================= */

/* --- quick contact strip (overlaps the hero) --- */
.contact-strip { position: relative; z-index: 2; }
.contact-strip__inner {
  max-width: 1140px; margin: -46px auto 0;
  background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  overflow: hidden;
}
.contact-strip__item {
  display: flex; align-items: center; gap: 14px;
  padding: 24px clamp(18px, 3vw, 30px);
  border-right: 1px solid oklch(93% 0.005 220);
}
.contact-strip__item:last-child { border-right: 0; }
.contact-strip__body  { display: block; min-width: 0; }
.contact-strip__label { display: block; font-size: 12px; color: var(--ink-faint); font-weight: 600; }
.contact-strip__value {
  display: block; font-size: 15px; font-weight: 700; color: var(--ink);
  overflow-wrap: break-word;
}
a.contact-strip__value:hover { color: var(--brand); }

/* --- icon badges --- */
.icon-badge {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--surface-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; flex: none;
}
.icon-badge--sm { width: 44px; height: 44px; margin-bottom: 0; }
.icon-badge--lg { width: 60px; height: 60px; margin: 0 auto 18px; }
.icon-badge--square { border-radius: 14px; width: 52px; height: 52px; margin-bottom: 20px; }

/* --- card grids --- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.grid--5 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); }
.grid--cards { grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3.2vw, 34px);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--brand); }
.card--featured { border: 2px solid var(--brand); position: relative; }
.card--plain { background: transparent; border: 0; padding: 10px; text-align: center; }
.card__title { font-size: clamp(16px, 2vw, 18px); font-weight: 800; margin-bottom: 10px; }
.card__text  { font-size: 14.5px; line-height: 1.65; color: var(--ink-muted); margin-bottom: 16px; }
.card__text:last-child { margin-bottom: 0; }

.badge-ribbon {
  position: absolute; top: -13px; left: 24px;
  background: var(--accent); color: var(--accent-ink);
  font-size: 11.5px; font-weight: 800; letter-spacing: .5px;
  padding: 5px 14px; border-radius: 20px;
}

/* --- media card (image on top) --- */
.media-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.media-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.media-card__img { width: 100%; height: 200px; object-fit: cover; }
.media-card__body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.media-card__title { font-size: 17px; font-weight: 800; }
.media-card__meta { font-size: 13px; color: var(--ink-faint); font-weight: 600; }
.media-card__price { font-size: 15px; font-weight: 800; color: var(--brand); margin-top: auto; padding-top: 8px; }

/* --- split (text + image) --- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}
.split__img { width: 100%; height: clamp(280px, 40vw, 460px); object-fit: cover; border-radius: 20px; }
/* reversed on desktop, image-first on mobile handled in media query */
.split--reverse .split__media { order: -1; }

/* --- feature card (larger image + roomy body) --- */
.media-card--feature { border-radius: 20px; }
.media-card--feature .media-card__img { height: clamp(180px, 26vw, 220px); }
.media-card--feature .media-card__body { padding: clamp(24px, 3.2vw, 32px); gap: 10px; }
.media-card--feature .media-card__title { font-size: clamp(19px, 2.4vw, 22px); }

/* --- bulleted dot list --- */
.dot-list { display: flex; flex-direction: column; gap: 10px; }
.dot-list li {
  display: flex; gap: 10px;
  font-size: 14px; line-height: 1.6; color: var(--ink-soft);
}
.dot-list li::before {
  content: ""; flex: none;
  width: 6px; height: 6px; margin-top: 8px;
  background: var(--brand); border-radius: 50%;
}

/* --- checklist --- */
.checklist { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-weight: 600; font-size: 15px; line-height: 1.5;
}
.checklist li::before {
  content: ""; flex: none;
  width: 8px; height: 8px; margin-top: 8px;
  background: var(--accent); border-radius: 2px; transform: rotate(45deg);
}
.checklist--brand li::before { background: var(--brand); }

/* --- trust bar --- */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 1px; background: var(--line-strong);
  border-radius: 14px; overflow: hidden;
}
.trust-bar__item {
  background: var(--surface);
  display: flex; align-items: center; gap: 12px;
  padding: 22px 20px;
  font-size: 13.5px; font-weight: 700; line-height: 1.3;
}
.trust-bar__item svg { flex: none; }

/* --- route marquee --- */
.marquee { position: relative; overflow: hidden; }
.marquee__track {
  display: flex; gap: 14px; width: max-content;
  animation: routeScroll 45s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; gap: 14px; flex: none; }
.marquee__item {
  flex: none; background: var(--surface); border: 1px solid var(--line);
  border-radius: 10px; padding: 12px 20px;
  font-weight: 700; font-size: 14px; white-space: nowrap;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; width: 60px; height: 100%;
  pointer-events: none; z-index: 1;
}
.marquee::before { left: 0;  background: linear-gradient(90deg,  var(--page) 0%, transparent 100%); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--page) 0%, transparent 100%); }
.marquee--on-alt::before { background: linear-gradient(90deg,  var(--surface-alt) 0%, transparent 100%); }
.marquee--on-alt::after  { background: linear-gradient(270deg, var(--surface-alt) 0%, transparent 100%); }

@keyframes routeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes routeScrollRev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* --- destination country slide (real photo + real flag) --- */
.marquee--countries .marquee__track { gap: 16px; animation-duration: 70s; }
.marquee--countries .marquee__group { gap: 16px; }

.country-slide {
  position: relative; flex: none;
  width: 148px; height: 190px;
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-card);
}
.country-slide__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.country-slide__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, oklch(10% 0.02 220 / 0.8) 100%);
}
.country-slide__flag {
  position: absolute; top: 10px; left: 10px;
  width: 32px; height: 21px; object-fit: cover;
  border-radius: 4px; border: 1.5px solid oklch(100% 0 0 / 0.85);
  box-shadow: 0 2px 6px oklch(10% 0.02 220 / 0.45);
}
.country-slide__name {
  position: absolute; left: 12px; right: 12px; bottom: 10px;
  color: #fff; font-weight: 800; font-size: 13.5px; line-height: 1.25;
  text-shadow: 0 1px 4px oklch(10% 0.02 220 / 0.6);
}

/* --- university partner marquee --- */
.marquee--uni { max-width: 1180px; margin: 0 auto 18px; }
.marquee--uni .marquee__track { gap: 16px; animation-duration: 55s; }
.marquee--uni .marquee__group { gap: 16px; }
.marquee--rev .marquee__track { animation-name: routeScrollRev; }

.uni {
  flex: none; width: 148px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 10px; text-align: center;
}
.uni__abbr {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--surface-tint); color: var(--brand);
  font-weight: 800; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 8px;
}
.uni__name    { display: block; font-size: 12.5px; font-weight: 700; line-height: 1.25; }
.uni__country { display: block; font-size: 11px; color: var(--ink-faint); margin-top: 2px; }

/* --- country tile (image + centred label) --- */
.country-card {
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  background: var(--surface);
  transition: transform .2s ease, box-shadow .2s ease;
}
.country-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.country-card img { width: 100%; height: clamp(120px, 16vw, 130px); object-fit: cover; }
.country-card__label { padding: 14px; font-weight: 700; font-size: 14.5px; text-align: center; }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; width: 100%; overflow-x: auto; padding-bottom: 8px; }
  .marquee__group[aria-hidden="true"] { display: none; }
}

/* --- numbered steps --- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 22px; }
.step { text-align: center; }
.step__num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-weight: 800; color: var(--brand); font-size: 17px;
}
.step__title { font-size: 15.5px; font-weight: 800; margin-bottom: 6px; }
.step__text  { font-size: 13.5px; line-height: 1.6; color: var(--ink-muted); }

/* --- package / pricing tiers --- */
.tier {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(24px, 3vw, 32px);
  display: flex; flex-direction: column; position: relative;
}
.tier--featured { border: 2px solid var(--brand); box-shadow: var(--shadow-card); }
.tier__name  { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.tier__meta  { font-size: 13px; color: var(--ink-faint); font-weight: 600; margin-bottom: 18px; }
.tier__price { font-size: clamp(24px, 3.4vw, 30px); font-weight: 800; color: var(--brand); line-height: 1.1; }
.tier__price small { display: block; font-size: 12.5px; font-weight: 600; color: var(--ink-faint); margin-top: 4px; letter-spacing: .3px; }
.tier__divider { height: 1px; background: var(--line); margin: 20px 0; }
.tier__features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; }
.tier__features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.55; color: var(--ink-soft);
}
.tier__features li svg { flex: none; margin-top: 3px; }
.tier .btn { margin-top: auto; }

/* --- comparison / info table --- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 14px; border: 1px solid var(--line); }
.table {
  width: 100%; min-width: 560px;
  border-collapse: collapse; background: var(--surface); font-size: 14.5px;
}
.table th, .table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.table thead th { background: var(--surface-tint); font-weight: 800; font-size: 13.5px; color: var(--brand-dark); }
.table tbody tr:last-child td { border-bottom: 0; }
.table td:first-child { font-weight: 700; }

/* --- FAQ accordion --- */
.faq { display: flex; flex-direction: column; gap: 12px; max-width: 860px; margin-inline: auto; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; background: none; border: 0; cursor: pointer;
  font: inherit; font-weight: 700; font-size: 15.5px; color: var(--ink);
  text-align: left; line-height: 1.45;
}
.faq__q:hover { color: var(--brand); }
.faq__icon { flex: none; transition: transform .25s ease; color: var(--brand); }
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 22px 20px; font-size: 14.5px; line-height: 1.7; color: var(--ink-muted); }

/* --- route list (origin → destination + country) --- */
.route-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 14px;
}
.route {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 15px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.route__name    { font-weight: 700; font-size: 14px; }
.route__country { font-size: 11.5px; color: var(--ink-faint); white-space: nowrap; }

/* --- credential chips --- */
.chips { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.chip {
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: 8px;
  padding: 10px 18px; font-size: 13px; font-weight: 700; color: var(--brand);
}

/* --- highlight / note panel --- */
.panel {
  background: var(--surface-tint); border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.panel__title { font-size: 18px; font-weight: 800; margin-bottom: 8px; color: var(--brand-dark); }
.panel__text  { font-size: 14.5px; line-height: 1.65; color: oklch(30% 0.03 200); }
.panel--center {
  display: block; text-align: center;
  background: var(--surface-alt); padding: clamp(28px, 4vw, 40px);
}
.panel--center .panel__text { max-width: 640px; margin: 0 auto 24px; color: oklch(45% 0.02 230); line-height: 1.7; }

/* --- CTA band --- */
.cta-band { background: var(--brand-band); padding: clamp(48px, 7vw, 70px) 0; }
.cta-band__inner {
  max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
}
.cta-band__title { color: #fff; font-size: clamp(23px, 3.4vw, 30px); margin-bottom: 8px; }
.cta-band__text  { color: oklch(85% 0.02 210); font-size: clamp(15px, 1.7vw, 16px); }

/* --- stats --- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr)); gap: 22px; }
.stat { text-align: center; }
.stat__num { font-size: clamp(28px, 4.4vw, 40px); font-weight: 800; color: var(--brand); line-height: 1; }
.stat__label { font-size: 13.5px; color: var(--ink-muted); margin-top: 8px; font-weight: 600; }

/* --- map --- */
.map-frame {
  width: 100%; height: clamp(280px, 42vw, 420px);
  border: 0; border-radius: var(--radius); display: block;
}

/* 9. FORMS ================================================================== */
.form-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(24px, 3.4vw, 36px);
}
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 700; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit; font-size: 15px;
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface); color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--brand);
  box-shadow: 0 0 0 3px oklch(50% 0.08 195 / 0.16);
}
.field input::placeholder, .field textarea::placeholder { color: oklch(65% 0.01 220); }
.field__error { font-size: 12.5px; font-weight: 600; color: oklch(55% 0.19 25); min-height: 0; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: oklch(60% 0.19 25); }

/* honeypot — present in the DOM for bots, invisible and unreachable for humans */
.hp-field {
  position: absolute; left: -9999px; top: -9999px;
  width: 1px; height: 1px; overflow: hidden;
}

.form-note { font-size: 13px; color: var(--ink-faint); margin-top: 14px; }
.form-status {
  margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; display: none;
}
.form-status.is-visible { display: block; }
.form-status--ok   { background: var(--surface-tint); color: var(--brand-dark); }
.form-status--err  { background: oklch(94% 0.04 25); color: oklch(42% 0.16 25); }

/* office cards */
.office { display: flex; flex-direction: column; gap: 10px; }
.office__name { font-size: 16px; font-weight: 800; }
.office__line { font-size: 14px; line-height: 1.7; color: var(--ink-muted); }
.office__line a { color: var(--ink-muted); }
.office__line a:hover { color: var(--brand); }

/* 10. FOOTER ================================================================ */
.site-footer {
  background: var(--footer-bg); color: oklch(85% 0.01 220);
  padding: clamp(56px, 8vw, 80px) 0 0;
}
.site-footer__inner {
  max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: clamp(32px, 4vw, 50px);
  padding-bottom: clamp(40px, 6vw, 60px);
  border-bottom: 1px solid var(--footer-line);
}
.site-footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.site-footer__mark { width: 52px; height: auto; flex: none; display: block; }
.site-footer__name { font-weight: 800; font-size: 17px; letter-spacing: 0.5px; color: #fff; }
.site-footer h2 {
  color: #fff; font-size: 14px; font-weight: 800;
  letter-spacing: 1px; margin-bottom: 20px; text-transform: uppercase;
}
.site-footer p, .site-footer li { font-size: 13.5px; line-height: 1.7; color: var(--footer-ink); }
.site-footer p + p { margin-top: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: var(--footer-ink); font-size: 13.5px; }
.footer-links a:hover { color: var(--accent); }
.footer-contact a { color: var(--footer-ink); overflow-wrap: anywhere; }
.footer-contact a:hover { color: var(--accent); }

/* icon-chip rows: phone / email / Facebook, all built from the same pattern */
.footer-contact__list {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 16px;
}
.footer-contact__row {
  display: flex; align-items: center; gap: 11px;
  color: var(--footer-ink); font-size: 13.5px; font-weight: 600;
}
.footer-contact__row:hover { color: #fff; }
.footer-contact__row span:last-child { overflow-wrap: anywhere; }

.footer-contact__icon {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: oklch(30% 0.02 220); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .18s ease;
}
.footer-contact__row:hover .footer-contact__icon { background: var(--brand); }

.footer-contact__row--fb {
  padding-top: 14px; margin-top: 2px;
  border-top: 1px solid var(--footer-line);
  font-weight: 700;
}
.footer-contact__icon--fb { background: var(--brand); }
.footer-contact__row--fb:hover .footer-contact__icon--fb { background: var(--brand-light); }

.site-footer__bar {
  max-width: var(--wrap); margin-inline: auto; padding: 24px var(--gutter);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: var(--footer-faint);
}
.site-footer__bar a { color: var(--footer-faint); }
.site-footer__bar a:hover { color: var(--accent); }

/* floating WhatsApp / call button */
.float-cta {
  position: fixed; right: 18px; bottom: 18px; z-index: 45;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -8px oklch(20% 0.05 230 / 0.5);
  transition: transform .18s ease;
}
.float-cta:hover { transform: scale(1.06); color: #fff; }

/* 11. RESPONSIVE ============================================================ */

/* --- tablet / small laptop: collapse nav into a drawer --- */
@media (max-width: 1080px) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .main-nav {
    position: fixed; top: 0; right: 0; z-index: 58;
    width: min(320px, 84vw); height: 100dvh;
    background: var(--surface);
    border-left: 1px solid var(--line);
    box-shadow: -18px 0 40px -24px oklch(20% 0.05 230 / 0.5);
    flex-direction: column; flex-wrap: nowrap;
    justify-content: flex-start; align-items: stretch;
    gap: 0;
    padding: calc(var(--header-h) + 16px) 24px 32px;
    overflow-y: auto;
    font-size: 16px;

    /* Closed state is `display:none`, not just an off-canvas transform.
       A `position:fixed` element parked at translateX(100%) still counts
       toward the document's scrollable width — and `overflow-x` on <body>
       cannot clip fixed descendants — so leaving it laid out would give
       every page a phantom horizontal scrollbar. `display:none` also keeps
       the links out of the tab order and the accessibility tree.
       `allow-discrete` + @starting-style keep the slide-in animation. */
    display: none;
    transform: translateX(100%);
    transition:
      transform .28s cubic-bezier(.4, 0, .2, 1),
      display .28s allow-discrete;
  }

  body.nav-open .main-nav {
    display: flex;
    transform: translateX(0);
  }

  /* animate in from off-canvas on the frame the drawer becomes displayed */
  @starting-style {
    body.nav-open .main-nav { transform: translateX(100%); }
  }

  .main-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    white-space: normal;
  }
  .main-nav a[aria-current="page"] { color: var(--brand); }
  .main-nav .nav-cta {
    display: inline-flex;
    margin-top: 22px;
    border-bottom: 0;
    padding: 15px 24px;
  }
}

/* --- tablet layout tweaks --- */
@media (max-width: 900px) {
  .contact-strip__inner { margin-top: -32px; }
  .contact-strip__item { border-right: 0; border-bottom: 1px solid oklch(93% 0.005 220); }
  .contact-strip__item:last-child { border-bottom: 0; }

  /* image always above the copy on narrow screens */
  .split--reverse .split__media { order: 0; }

  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .cta-band__inner .btn { width: 100%; }
}

/* --- phones --- */
@media (max-width: 620px) {
  :root { --header-h: 71px; } /* 46px logo + 12px padding top/bottom + 1px border */

  .brand__mark { height: 46px; }

  .hero { min-height: 520px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }

  .head-row { flex-direction: column; align-items: flex-start; gap: 20px; }
  .head-row .btn { width: 100%; }

  .grid { gap: 16px; }
  .media-card__img { height: 180px; }

  .panel { flex-direction: column; align-items: flex-start; }
  .panel .btn { width: 100%; }

  .trust-bar { border-radius: 12px; }
  .marquee::before, .marquee::after { width: 32px; }

  .site-footer__bar { flex-direction: column; }

  .float-cta { right: 14px; bottom: 14px; width: 50px; height: 50px; }
}

/* --- very small phones --- */
@media (max-width: 350px) {
  .btn { font-size: 14.5px; padding: 13px 20px; }
}

/* 12. PRINT ================================================================= */
@media print {
  .site-header, .nav-toggle, .nav-backdrop, .float-cta, .cta-band, .marquee { display: none !important; }
  body { background: #fff; }
  .hero, .banner { min-height: auto; color: #000; }
}
