:root {
  --navy: #0D1B4A;
  --navy-deep: #07101F;
  --gold: #F5B800;
  --gold-soft: rgba(245, 184, 0, 0.12);
  --bg: #FAF8F4;
  --bg-sand: #F8F7F3;
  --ink: #0A0E1A;
  --muted: #5b6478;
  --line: rgba(13, 27, 74, 0.10);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

/* ─── Top bar ─────────────────────────────────────────── */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.topbar-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 11px 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.topbar-group { display: flex; gap: 24px; align-items: center; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar-item svg { opacity: 0.7; }
.topbar-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.15); }
.topbar .gold { color: var(--gold); font-weight: 600; }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: #2ecc71; box-shadow: 0 0 0 0 rgba(46,204,113,0.6); animation: pulse 1.8s infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(46,204,113,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(46,204,113,0); }
}

/* ─── Nav ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  transition: box-shadow 220ms ease, border-color 220ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  box-shadow: 0 8px 28px -16px rgba(13, 27, 74, 0.18);
  border-bottom-color: rgba(13,27,74,0.04);
}
.nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
  height: 78px;
  gap: 40px;
}
.brand-block {
  background: var(--navy);
  color: #fff;
  padding: 0 22px 0 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: -32px;
  position: relative;
}
.brand-block::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 0; bottom: 0;
  width: 22px;
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.brand-globe {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid; place-items: center;
}
.brand-name { font-weight: 800; font-size: 22px; letter-spacing: -0.01em; }
.brand-name .accent { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  flex: 1;
  margin-left: 30px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold);
}
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone { display: flex; align-items: center; gap: 10px; }
.nav-phone .icon-circle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--navy);
  display: grid; place-items: center;
}
.nav-phone-text { line-height: 1.1; }
.nav-phone-text .small { font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.nav-phone-text .num { font-weight: 700; font-size: 14px; }

/* ─── Buttons ─────────────────────────────────────────── */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-pill:active { transform: scale(0.97); }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 24px -10px rgba(245,184,0,0.55);
}
.btn-gold:hover {
  background: #ffc928;
  box-shadow: 0 14px 32px -10px rgba(245,184,0,0.7);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { background: #142566; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(13,27,74,0.2);
}
.btn-outline-navy:hover { border-color: var(--navy); background: var(--navy); color:#fff; }
.btn-dot {
  width: 6px; height: 6px; border-radius: 50%; background: currentColor;
  flex-shrink: 0;
}

/* ─── Hero ─────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.hero-plane {
  position: absolute;
  right: -60px;
  top: 80px;
  width: 320px;
  opacity: 0.06;
  pointer-events: none;
  transform: rotate(-15deg);
}
.hero-inner {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  padding: 110px 32px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow-line { width: 36px; height: 1.5px; background: var(--gold); }
.h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 22px 0 24px;
  text-wrap: balance;
}
.h1 .accent { color: var(--gold); font-style: italic; font-weight: 800; }
.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin-bottom: 36px;
  font-weight: 400;
}
.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  margin-bottom: 38px;
}
.check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 500;
}
.check-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-ctas { display: flex; gap: 16px; align-items: center; margin-bottom: 56px; flex-wrap: wrap; }
.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 4px;
}
.hero-link:hover { color: var(--gold); border-color: var(--gold); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 28px;
  max-width: 540px;
}
.hero-stat { padding-right: 16px; border-right: 1px solid rgba(255,255,255,0.08); }
.hero-stat:last-child { border-right: 0; }
.hero-stat-num { font-size: 32px; font-weight: 800; color: var(--gold); letter-spacing: -0.02em; }
.hero-stat-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* Hero photo */
.hero-photo-wrap {
  position: relative;
  height: 620px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-circle {
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,184,0,0.35) 0%, rgba(245,184,0,0) 70%);
  right: -60px;
}
.hero-ring {
  position: absolute;
  border: 1px solid rgba(245,184,0,0.18);
  border-radius: 50%;
  right: 30px;
}
.hero-ring.r1 { width: 480px; height: 480px; }
.hero-ring.r2 { width: 600px; height: 600px; border-color: rgba(245,184,0,0.1); right: -30px; }
.photo-frame {
  position: relative;
  width: 400px;
  height: 540px;
  border-radius: 28px;
  overflow: hidden;
  background: #1a2660;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
  z-index: 2;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,16,31,0.95) 100%);
}
.photo-caption {
  position: absolute;
  left: 28px; right: 28px; bottom: 26px;
  z-index: 3;
}
.stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 10px; }
.photo-caption-name { font-size: 17px; font-weight: 700; color: #fff; }
.photo-caption-name .sep { color: rgba(255,255,255,0.4); margin: 0 8px; font-weight: 400; }
.photo-caption-role { color: rgba(255,255,255,0.6); font-weight: 500; }
.badge-float {
  position: absolute;
  z-index: 4;
  padding: 16px 22px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.35);
}
.badge-float.gold {
  background: var(--gold);
  color: var(--navy);
  top: 30px;
  right: -30px;
  transform: rotate(2deg);
}
.badge-float.navy {
  background: var(--navy-deep);
  color: #fff;
  bottom: 80px;
  left: -40px;
  transform: rotate(-3deg);
  border: 1px solid rgba(245,184,0,0.3);
}
.badge-num { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; }
.badge-float.navy .badge-num { color: var(--gold); }
.badge-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; line-height: 1.2; max-width: 84px; }

/* ─── Marquee ─────────────────────────────────────────── */
.marquee {
  background: var(--gold);
  color: var(--navy);
  overflow: hidden;
  border-top: 1px solid rgba(13,27,74,0.1);
  border-bottom: 1px solid rgba(13,27,74,0.1);
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 50px;
  padding: 22px 0;
  white-space: nowrap;
  animation: scroll 50s linear infinite;
  width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.marquee-item .flag { font-size: 22px; }
.marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--navy); opacity: 0.4; flex-shrink: 0; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Feature strip ─────────────────────────────────────────── */
.strip {
  background: var(--navy-deep);
  color: #fff;
}
.strip-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.strip-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 32px 32px;
  border-left: 1px solid rgba(255,255,255,0.08);
  position: relative;
  cursor: pointer;
  transition: background 220ms ease;
}
.strip-item:first-child { border-left: 0; padding-left: 0; }
.strip-item:hover { background: rgba(245,184,0,0.04); }
.strip-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
  transition: background 200ms ease, color 200ms ease;
  flex-shrink: 0;
}
.strip-item:hover .strip-icon { background: var(--gold); color: var(--navy); }
.strip-title { font-weight: 700; font-size: 17px; margin-bottom: 4px; }
.strip-sub { font-size: 13px; color: rgba(255,255,255,0.55); }
.strip-arrow { margin-left: auto; opacity: 0.4; transition: transform 200ms, opacity 200ms; }
.strip-item:hover .strip-arrow { opacity: 1; transform: translateX(4px); color: var(--gold); }

/* ─── Section base ─────────────────────────────────────────── */
.section {
  padding: 130px 32px;
  position: relative;
}
.section.dark { background: var(--navy-deep); color: #fff; }
.section.sand { background: var(--bg-sand); }
.section.navy { background: var(--navy); color: #fff; }
.container { max-width: 1360px; margin: 0 auto; }

.h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 18px 0 0;
  text-wrap: balance;
}
.h2 .accent { color: var(--gold); font-style: italic; font-weight: 800; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}
.section-head-center {
  text-align: center;
  margin-bottom: 80px;
}
.section-head-center .eyebrow { justify-content: center; }
.section-head-center .h2 { max-width: 820px; margin-left: auto; margin-right: auto; }
.section-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 420px;
  font-weight: 500;
}
.section.dark .section-sub, .section.navy .section-sub { color: rgba(255,255,255,0.6); }

/* ─── About ─────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.about-photo {
  position: relative;
  height: 620px;
}
.about-photo-back {
  position: absolute;
  inset: 30px -20px -30px 30px;
  background: var(--gold-soft);
  border-radius: 28px;
  z-index: 0;
}
.about-photo-frame {
  position: relative;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 30px 80px -20px rgba(13,27,74,0.25);
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.about-photo-frame .photo-overlay {
  background: linear-gradient(180deg, transparent 50%, rgba(7,16,31,0.92) 100%);
}
.about-photo-frame .photo-caption-name { color: #fff; }
.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 30px;
  margin: 36px 0 44px;
}
.about-check {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.about-check .check-dot { margin-top: 1px; }

/* ─── Stats banner ─────────────────────────────────────────── */
.stats-banner {
  background: var(--navy);
  color: #fff;
  padding: 90px 32px;
  position: relative;
  overflow: hidden;
}
.stats-watermark {
  position: absolute;
  font-size: 28rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.025);
  bottom: -120px;
  right: -30px;
  line-height: 1;
  pointer-events: none;
}
.stats-grid {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-block {
  padding: 0 40px;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.stat-block:first-child { border-left: 0; padding-left: 0; }
.stat-num {
  font-size: 88px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.stat-num .suffix { color: var(--gold); }
.stat-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0 16px;
}
.stat-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}

/* ─── Services ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(13,27,74,0.25);
}
.service-head {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 32px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 140px;
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.85);
  transition: background 220ms ease, color 220ms ease;
}
.service-card:hover .service-icon { background: var(--gold); color: var(--navy); }
.service-ghost {
  font-size: 84px;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  line-height: 0.85;
  letter-spacing: -0.04em;
}
.service-body {
  padding: 30px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: var(--ink);
}
.service-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 22px;
}
.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-sand);
  color: var(--navy);
  border: 1px solid var(--line);
}
.service-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.service-card:hover .service-link { color: var(--gold); }

.service-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 320ms ease, opacity 260ms ease, margin 320ms ease;
}
.service-card.open .service-detail {
  max-height: 400px;
  opacity: 1;
  margin-bottom: 18px;
}
.service-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 10px;
}
.service-detail-item svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.service-detail-more {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 4px 0 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.service-link-detail { padding-top: 0; margin-top: 0; border-top: none; }
.service-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: auto;
  transition: color 200ms ease;
}
.service-toggle svg { transition: transform 220ms ease; }
.service-card.open .service-toggle svg { transform: rotate(90deg); }
.service-toggle:hover { color: var(--gold-dark, var(--navy)); opacity: 0.75; }

/* ─── Destinations ─────────────────────────────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dest-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16/11;
  cursor: pointer;
  background: var(--navy);
}
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,16,31,0.05) 40%, rgba(7,16,31,0.85) 100%);
}
.dest-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}
.dest-content {
  position: absolute;
  left: 26px; right: 26px; bottom: 26px;
  color: #fff;
}
.dest-flag { font-size: 22px; margin-bottom: 6px; display: block; }
.dest-country { font-size: 24px; font-weight: 800; letter-spacing: -0.015em; }
.dest-cap { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 2px; font-weight: 500; }
.dest-arrow {
  position: absolute;
  bottom: 26px; right: 26px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid; place-items: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 240ms, transform 240ms;
}
.dest-card:hover .dest-arrow { opacity: 1; transform: translateY(0); }
.dest-cta { text-align: center; margin-top: 50px; }

.dest-all-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 28px;
  animation: destFadeIn 250ms ease;
}
@keyframes destFadeIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
.dest-chip {
  display: flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1px solid rgba(13,27,74,0.1);
  border-radius: 10px;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--navy);
  font-size: 13px; font-weight: 600;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}
.dest-chip:hover { background: var(--gold-soft); border-color: var(--gold); transform: translateY(-2px); }
.dest-chip-flag { font-size: 18px; line-height:1; }
.dest-chip-name { flex:1; }
.dest-chip svg { opacity: 0.4; }

/* ─── Process ─────────────────────────────────────────── */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 30px;
}
.process-row::before {
  content: "";
  position: absolute;
  top: 76px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,184,0,0.4), transparent);
  z-index: 0;
}
.process-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 36px 28px 32px;
  position: relative;
  z-index: 1;
  transition: transform 240ms, border-color 240ms, background 240ms;
}
.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,184,0,0.4);
  background: rgba(245,184,0,0.04);
}
.process-num {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid; place-items: center;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: -54px auto 22px;
  border: 6px solid var(--navy-deep);
}
.process-emoji {
  font-size: 32px;
  text-align: center;
  margin-bottom: 18px;
}
.process-title { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; text-align: center; margin-bottom: 10px; }
.process-desc { font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.6); text-align: center; }
.process-cta { text-align: center; margin-top: 70px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.process-cta-fine { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.55); max-width: 460px; text-wrap: pretty; }

/* ─── Testimonials ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.testimonial {
  background: #fff;
  border-radius: 22px;
  padding: 38px 36px 32px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 240ms ease, box-shadow 240ms ease;
  display: flex;
  flex-direction: column;
}
.testimonial:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -20px rgba(13,27,74,0.2); }
.testimonial.featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: scale(1.04);
}
.testimonial.featured:hover { transform: scale(1.04) translateY(-6px); }
.quote-mark {
  font-family: Georgia, serif;
  font-size: 84px;
  line-height: 0.7;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.testimonial.featured .quote-mark { color: var(--gold); }
.testimonial-text {
  font-size: 15.5px;
  line-height: 1.6;
  margin: 14px 0 24px;
  color: var(--ink);
  font-weight: 500;
}
.testimonial.featured .testimonial-text { color: rgba(255,255,255,0.9); }
.testimonial-divider {
  height: 1px;
  background: var(--line);
  margin-bottom: 22px;
}
.testimonial.featured .testimonial-divider { background: rgba(255,255,255,0.12); }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial.featured .avatar { background: var(--gold); color: var(--navy); }
.author-name { font-weight: 800; font-size: 15px; }
.author-city { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.testimonial.featured .author-city { color: rgba(255,255,255,0.6); }

/* ─── CTA banner ─────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 100px 32px;
}
.cta-bg-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  opacity: 0.08;
  filter: grayscale(0.4);
}
.cta-diagonal {
  position: absolute;
  inset: 0;
  background: var(--gold);
  clip-path: polygon(72% 0, 100% 0, 100% 100%, 88% 100%);
  opacity: 0.07;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.cta-left { max-width: 700px; }
.cta-right { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.cta-fine { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }

/* ─── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.5);
  padding: 90px 32px 40px;
  font-size: 14px;
}
.footer-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-title {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 700;
}
.footer-brand .brand-name { color: #fff; font-size: 24px; margin-bottom: 18px; display: inline-flex; align-items: center; gap: 12px; }
.footer-desc { line-height: 1.6; margin-bottom: 22px; color: rgba(255,255,255,0.45); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: inline-flex; align-items: center; gap: 10px; font-size: 13.5px; }
.footer-contact-item svg { color: var(--gold); opacity: 0.8; flex-shrink: 0; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); }
.footer-links a:hover { color: var(--gold); }
.footer-cta-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 24px;
}
.footer-cta-card-title { color: #fff; font-weight: 700; margin-bottom: 8px; font-size: 16px; }
.footer-cta-card-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 18px; line-height: 1.5; }
.footer-bottom {
  max-width: 1360px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a:hover { color: var(--gold); }

/* ─── Floating WhatsApp ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  background: #25D366;
  color: #fff;
  padding: 14px 22px 14px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 18px 40px -10px rgba(37,211,102,0.55);
  transition: transform 200ms, box-shadow 200ms;
  cursor: pointer;
}
.whatsapp-float:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -10px rgba(37,211,102,0.7); }
.whatsapp-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: grid; place-items: center;
}

/* ─── Decorative SVG shapes ─────────────────────────────────────────── */
.shape-zigzag {
  position: absolute;
  width: 140px;
  height: 18px;
  color: var(--gold);
  opacity: 0.55;
  pointer-events: none;
}
.shape-zigzag-tl { top: 60px; left: 40px; }
.shape-zigzag-tr { top: 70px; right: 40px; }
.shape-dots {
  position: absolute;
  width: 130px;
  height: 130px;
  background-image: radial-gradient(circle, rgba(13,27,74,0.18) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
  opacity: 0.65;
}
.shape-dots-br { bottom: 60px; right: 40px; }
.shape-dots-tl { top: 60px; left: 40px; }

.hero-zigzag {
  position: absolute;
  width: 160px;
  height: 20px;
  left: 32px;
  bottom: 80px;
  z-index: 0;
}
.hero-arc {
  position: absolute;
  width: 110px;
  height: 110px;
  right: 48%;
  top: 60px;
  z-index: 0;
}

/* ─── About — two-photo composition + years badge ─── */
.about-photo { position: relative; }
.about-photo-mini {
  position: absolute;
  right: -36px;
  bottom: -40px;
  width: 220px;
  height: 220px;
  border-radius: 24px;
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 24px 60px -20px rgba(13,27,74,0.4);
  border: 6px solid var(--bg);
}
.about-photo-mini img { width: 100%; height: 100%; object-fit: cover; }
.years-badge {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 4;
  box-shadow: 0 22px 50px -16px rgba(245,184,0,0.65);
  font-weight: 800;
  border: 6px solid var(--bg);
}
.years-badge-num { font-size: 38px; line-height: 1; letter-spacing: -0.03em; }
.years-badge-num span { color: var(--navy); }
.years-badge-lbl { font-size: 11px; line-height: 1.2; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 6px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 36px 0 36px;
}
.about-feature { display: flex; gap: 16px; }
.about-feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--gold-soft);
  color: var(--navy);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.about-feature-title { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 4px; }
.about-feature-sub { font-size: 13px; line-height: 1.5; color: var(--muted); }

/* ─── Why Choose section ─── */
.why-section { position: relative; overflow: hidden; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.why-photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 80px -20px rgba(13,27,74,0.25);
}
.why-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.why-photo-tint { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(13,27,74,0.5)); }
.why-photo-emergency {
  position: absolute;
  left: 28px; bottom: 28px;
  right: 28px;
  background: var(--gold);
  color: var(--navy);
  padding: 18px 22px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 22px 50px -16px rgba(245,184,0,0.45);
}
.why-emergency-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.why-emergency-lbl { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; opacity: 0.8; }
.why-emergency-num { font-size: 20px; font-weight: 800; letter-spacing: -0.015em; display: block; margin-top: 2px; }

.why-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.why-item {
  display: flex;
  gap: 22px;
  padding: 22px 24px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  transition: transform 200ms, box-shadow 200ms;
}
.why-item:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(13,27,74,0.18); }
.why-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--gold);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.why-title { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 4px; }
.why-sub { font-size: 14px; line-height: 1.55; color: var(--muted); }

/* ─── FAQ ─── */
.faq-section { position: relative; overflow: hidden; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.faq-side { position: sticky; top: 110px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 28px;
  cursor: pointer;
  transition: border-color 200ms, box-shadow 200ms;
}
.faq-item:hover { border-color: rgba(13,27,74,0.18); }
.faq-item.open {
  border-color: var(--gold);
  box-shadow: 0 18px 40px -16px rgba(245,184,0,0.25);
}
.faq-q {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.faq-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--gold);
  background: var(--gold-soft);
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.faq-q-text { flex: 1; }
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-sand);
  color: var(--navy);
  display: grid; place-items: center;
  transition: background 200ms, color 200ms, transform 240ms;
}
.faq-item.open .faq-toggle { background: var(--gold); color: var(--navy); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease, opacity 220ms, padding 200ms;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
  opacity: 0;
}
.faq-item.open .faq-a {
  max-height: 280px;
  opacity: 1;
  padding: 16px 0 4px 54px;
}

/* ─── Responsive nudges ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner, .about-grid, .why-grid, .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-photo-wrap { height: 560px; }
  .services-grid, .dest-grid, .testimonials-grid, .process-row, .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .strip-inner { grid-template-columns: 1fr; }
  .faq-side { position: static; }
}
/* ─── Language Switcher ──────────────────────────────────────────── */
.lang-switcher {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px;
  padding: 3px;
}
.lang-btn {
  display: flex; align-items: center; gap: 4px;
  background: transparent; border: none; cursor: pointer;
  padding: 5px 9px; border-radius: 22px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  transition: background 150ms ease, color 150ms ease;
  font-family: inherit;
  white-space: nowrap;
}
.lang-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
.lang-btn.active { background: var(--gold); color: var(--navy-deep); }
.lang-flag { font-size: 13px; line-height: 1; }
.lang-label { font-size: 11px; }

/* compact variant used in footer mobile */
.lang-switcher-compact .lang-label { display: none; }
.lang-switcher-compact .lang-btn { padding: 5px 7px; }

/* hide footer lang switcher on desktop */
.footer-lang-switcher-mobile { display: none; }

@media (max-width: 720px) {
  .nav-links, .nav-phone-text { display: none; }
  .section { padding: 80px 24px; }
  .services-grid, .dest-grid, .testimonials-grid, .process-row, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
  .testimonial.featured { transform: none; }
  .hero-inner { padding: 70px 24px 90px; }
  .topbar-inner { padding: 10px 20px; flex-direction: column; gap: 8px; }
  .nav-inner { padding: 0 24px; }
  .brand-block { margin-left: -24px; padding-left: 24px; }
}

/* ─── Legal modal ─────────────────────────────────────────── */
.legal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(7, 16, 31, 0.72);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: legalFade 180ms ease;
}
@keyframes legalFade { from { opacity: 0; } to { opacity: 1; } }
.legal-modal {
  background: #fff;
  color: var(--navy-deep);
  max-width: 720px; width: 100%; max-height: 86vh;
  border-radius: 18px;
  padding: 48px 52px 36px;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  animation: legalRise 220ms ease;
}
@keyframes legalRise { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.legal-close {
  position: absolute; top: 14px; right: 18px;
  background: transparent; border: none; cursor: pointer;
  width: 38px; height: 38px; border-radius: 50%;
  font-size: 28px; line-height: 1; color: var(--navy);
  transition: background 120ms ease;
}
.legal-close:hover { background: rgba(13, 27, 74, 0.08); }
.legal-eyebrow {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(13, 27, 74, 0.55); margin-bottom: 14px; font-weight: 600;
}
.legal-title {
  font-size: 32px; font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 28px; line-height: 1.15;
}
.legal-body { display: flex; flex-direction: column; gap: 22px; }
.legal-block h3 {
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 8px;
}
.legal-block p {
  font-size: 15px; line-height: 1.65;
  color: rgba(13, 27, 74, 0.78); text-wrap: pretty;
}
.legal-foot {
  margin-top: 32px; padding-top: 20px;
  border-top: 1px solid rgba(13, 27, 74, 0.1);
  font-size: 12px; color: rgba(13, 27, 74, 0.5);
}
@media (max-width: 600px) {
  .legal-modal { padding: 40px 24px 28px; border-radius: 14px; }
  .legal-title { font-size: 26px; }
}

/* ─── Cookie banner ─────────────────────────────────────────── */
.cookie-banner {
  position: fixed; left: 24px; right: 24px; bottom: 24px;
  z-index: 8500;
  background: var(--navy-deep);
  color: #fff;
  border: 1px solid rgba(245, 184, 0, 0.25);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex; align-items: center; gap: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  max-width: 720px;
  animation: cookieRise 280ms ease;
}
@keyframes cookieRise { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-text {
  font-size: 13px; line-height: 1.55;
  color: rgba(255,255,255,0.78); text-wrap: pretty; flex: 1;
}
.cookie-accept {
  background: var(--gold); color: var(--navy-deep);
  border: none; cursor: pointer;
  padding: 10px 22px; border-radius: 30px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.02em;
  transition: transform 120ms ease, box-shadow 120ms ease;
  white-space: nowrap;
}
.cookie-accept:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(245, 184, 0, 0.35); }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; left: 14px; right: 14px; bottom: 14px; padding: 16px; }
  .cookie-accept { width: 100%; padding: 12px; }
}
