/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* KISEMI GLOBAL SOLUTIONS LTD - WEBSITE COLOR PALETTE */
  --primary-blue: #003b8e;
  --secondary-blue: #00a8e8;
  --premium-gold: #d4a017;
  --silver-grey: #c0c7d1;

  --white: #ffffff;
  --light-grey: #f5f7fa;
  --medium-grey: #6b7280;
  --dark-navy: #0a1f44;
  --text-dark: #111827;

  --button-primary: #003b8e;
  --button-primary-hover: #002d6b;
  --button-secondary: #d4a017;
  --button-secondary-hover: #b8870f;

  --link-color: #00a8e8;
  --link-hover: #003b8e;

  --section-light: #f5f7fa;
  --section-white: #ffffff;
  --section-dark: #0a1f44;

  --border-light: #e5e7eb;
  --border-medium: #d1d5db;

  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;

  /* Deep navy band base + texture layers (Plan Your Journey — replaces flat #003b8e fills) */
  --deep-band-bg: #0b1530;
  --deep-band-glow: rgba(0, 168, 232, 0.12);
  --deep-band-dot: rgba(255, 255, 255, 0.045);

  --hero-gradient: linear-gradient(135deg, var(--deep-band-bg), var(--secondary-blue));

  --primary-rgb: 0, 59, 142;
  --secondary-rgb: 0, 168, 232;
  --navy-rgb: 10, 31, 68;

  /* Semantic tokens used across layout */
  --blue-primary: var(--button-primary);
  --blue-primary-hover: var(--button-primary-hover);
  --navy: var(--text-dark);
  --navy-heading: var(--dark-navy);
  --muted: var(--medium-grey);
  --icon-bg: rgba(var(--secondary-rgb), 0.12);
  --partners-section-bg: #e9eef5;
  /* Single tone below hero (matches partners — no strip between sections) */
  --band-below-hero: var(--partners-section-bg);

  /* Mirror logo inset from viewport on left/right */
  --nav-edge-pull: clamp(-120px, -14vw, -28px);
  --nav-edge-pull-sm: clamp(-56px, -10vw, -16px);
  /* Extra hero bg below section edge — keep 0 so clouds end with the hero (behind booking card only) */
  --hero-bg-extend: 0px;

  /* Typography — readable body copy (WCAG-friendly line height ≥ 1.5) */
  --font-base: 1rem;
  --leading-body: 1.62;
  --leading-tight-heading: 1.08;
  --text-lead: clamp(1.0625rem, 2.15vw, 1.5rem);
  --leading-lead: 1.65;
  --measure-readable: 42rem;

  /* Fixed header: reserve space so content is not hidden beneath the bar */
  --site-header-space: calc(88px + env(safe-area-inset-top, 0px));

  /* Navbar — readability + accents (avoid blue/purple as nav chrome) */
  --nav-surface: rgba(255, 255, 255, 0.94);
  --nav-border: rgba(17, 24, 39, 0.08);
  --nav-link: #141c2c;
  --nav-link-muted: #4b5569;
  --nav-hover-bg: rgba(212, 160, 23, 0.11);
  --nav-hover-ring: rgba(212, 160, 23, 0.28);
  --nav-active-bg: rgba(10, 31, 68, 0.08);
  --nav-active-accent: var(--premium-gold);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: var(--font-base);
  line-height: var(--leading-body);
  background: var(--section-light);
  color: var(--navy);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

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

.skip-link {
  position: absolute;
  left: max(16px, env(safe-area-inset-left, 0px));
  top: -120px;
  z-index: 3000;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9375rem;
  background: var(--button-primary);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.35);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: max(12px, env(safe-area-inset-top, 0px));
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: max(16px, env(safe-area-inset-left, 0px));
  padding-right: max(16px, env(safe-area-inset-right, 0px));
}

/* =========================
   NAVBAR
========================= */
main {
  overflow-x: hidden;
  scroll-margin-top: var(--site-header-space);
  padding-top: var(--site-header-space);
}

#site-header {
  width: 100%;
  background: var(--nav-surface);
  padding-top: calc(18px + env(safe-area-inset-top, 0px));
  padding-bottom: 18px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04), 0 1px 0 rgba(255, 255, 255, 0.75) inset;
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  transition:
    padding 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s ease,
    background-color 0.38s ease,
    border-color 0.38s ease;
}

#site-header.is-scrolled {
  padding-top: calc(11px + env(safe-area-inset-top, 0px));
  padding-bottom: 11px;
  box-shadow: 0 8px 36px rgba(15, 23, 42, 0.08), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  background: rgba(255, 255, 255, 0.98);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: var(--nav-edge-pull);
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  min-width: 0;
}

.logo img,
.logo h2,
.logo span {
  transition: width 0.38s cubic-bezier(0.22, 1, 0.36, 1), font-size 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    margin 0.38s ease, color 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}

#site-header.is-scrolled .logo:not(.logo--brand-img) img {
  width: 44px;
}

#site-header.is-scrolled .logo h2 {
  font-size: 28px;
}

#site-header.is-scrolled .logo span {
  font-size: 11px;
}

.logo:hover {
  opacity: 1;
}

.logo:hover h2 {
  color: var(--dark-navy);
}

.logo:active {
  transform: scale(0.99);
}

.logo:not(.logo--brand-img) img {
  width: 52px;
}

.logo h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
}

.logo span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nav-link-muted);
  margin-top: 3px;
}

.logo.logo--brand-img img {
  width: auto;
  height: auto;
  max-height: 48px;
  max-width: min(112px, 26vw);
  object-fit: contain;
  flex-shrink: 0;
}

#site-header.is-scrolled .logo.logo--brand-img img {
  max-height: 40px;
  max-width: min(96px, 24vw);
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: clamp(4px, 1.05vw, 10px);
  align-items: center;
}

.nav-links li a {
  position: relative;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--nav-link);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.52rem 1rem;
  min-height: 2.625rem;
  border-radius: 999px;
  transition:
    color 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links li a:hover {
  color: var(--text-dark);
  background: var(--nav-hover-bg);
  box-shadow: 0 0 0 1px var(--nav-hover-ring), 0 10px 22px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.nav-links li a:focus-visible {
  outline: 2px solid var(--nav-active-accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.22);
}

.nav-links li a.active {
  color: var(--text-dark);
  font-weight: 700;
  background: var(--nav-active-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 0 0 1px rgba(212, 160, 23, 0.42),
    0 8px 20px rgba(10, 31, 68, 0.07);
}

.nav-links li a.active:hover {
  background: rgba(10, 31, 68, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 0 0 1px rgba(212, 160, 23, 0.5),
    0 12px 26px rgba(15, 23, 42, 0.1);
}

.nav-links li a svg {
  flex-shrink: 0;
  opacity: 0.72;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
}

.nav-links li a:hover svg,
.nav-links li a:focus-visible svg {
  opacity: 1;
}

.nav-links li:has(> a svg) a:hover svg,
.nav-links li:has(> a svg) a:focus-visible svg {
  transform: translateY(3px);
}

/* RIGHT SIDE */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: var(--nav-edge-pull);
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--nav-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--nav-link);
  cursor: pointer;
  font: inherit;
  transition:
    background 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.26s ease,
    box-shadow 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.2s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-toggle:hover {
  background: var(--nav-hover-bg);
  border-color: rgba(212, 160, 23, 0.4);
  color: var(--text-dark);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.nav-toggle:active {
  transform: scale(0.96);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--nav-active-accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.2);
}

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 22px;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease,
    width 0.25s ease, top 0.3s ease;
  transform-origin: center;
}

#site-header.nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

#site-header.nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  width: 0;
}

#site-header.nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(var(--navy-rgb), 0.4);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.nav-backdrop[hidden] {
  display: none;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--button-primary);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.9125rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  border: 1px solid transparent;
  transition:
    background 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.22s ease;
  box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.whatsapp-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.whatsapp-btn:hover {
  background: var(--button-primary-hover);
  transform: translateY(-2px);
  box-shadow:
    0 10px 28px rgba(var(--primary-rgb), 0.32),
    0 6px 16px rgba(37, 211, 102, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.whatsapp-btn:hover svg {
  transform: scale(1.06);
}

.whatsapp-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 12px rgba(var(--primary-rgb), 0.22);
}

.whatsapp-btn:focus-visible {
  outline: 2px solid var(--nav-active-accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.22), 0 4px 16px rgba(var(--primary-rgb), 0.22);
}

@media (prefers-reduced-motion: reduce) {
  .nav-links li a,
  .nav-links li a svg,
  .whatsapp-btn,
  .whatsapp-btn svg,
  .nav-toggle,
  .nav-toggle__bar,
  #site-header.nav-open .nav-toggle__bar:nth-child(1),
  #site-header.nav-open .nav-toggle__bar:nth-child(3) {
    transition-duration: 0.01ms;
  }

  .nav-links li a:hover,
  .nav-links li a.active:hover {
    transform: none;
  }

  .nav-links {
    transition-duration: 0.01ms;
  }

  .whatsapp-btn:hover,
  .whatsapp-btn:active {
    transform: none;
  }

  #site-header,
  .logo,
  .logo img,
  .logo.logo--brand-img img,
  .logo h2,
  .logo span {
    transition-duration: 0.01ms;
  }

  .logo:active {
    transform: none;
  }

  .nav-toggle:active {
    transform: none;
  }

  .btn-primary:hover,
  .btn-primary:active,
  .btn-outline:hover,
  .btn-outline:active,
  .search-btn:hover,
  .search-btn:active {
    transform: none;
  }

  .hero.is-revealed .hero-stats:hover {
    transform: none;
  }

  .partners.is-revealed .partners-cta:hover {
    transform: none;
  }

  .destinations.is-revealed .destinations-cta:hover,
  .destinations.is-revealed .destination-card:hover {
    transform: none;
  }

  .destinations.is-revealed .destination-card:hover .destination-card__media img {
    transform: none;
  }

  .destinations-cta__btn--outline:hover,
  .destinations-cta__btn--primary:hover {
    transform: none;
  }

  .travel-services.is-revealed .service-card:hover,
  .travel-services__btn--whatsapp:hover,
  .travel-services__btn--call:hover {
    transform: none;
  }

  .travel-services.is-revealed .travel-services__badge:hover {
    transform: none;
  }

  .hero.is-revealed .hero-badge:hover,
  .partners.is-revealed .hero-badge:hover,
  .hero.is-revealed .feature-box:hover .feature-icon,
  .partners.is-revealed .partners-benefits__item:hover .feature-icon {
    transform: none;
  }

  .booking-box {
    transform: none;
  }
}

/* =========================
   HERO SECTION (home — full-bleed photo)
========================= */
.hero,
.page-hero {
  position: relative;
  --hero-parallax-y: 0px;
  padding: clamp(88px, 9vw, 120px) 0 clamp(28px, 4vw, 56px);
  overflow: visible;
  min-height: 0;
}

.hero {
  z-index: 5;
  /* Match hero__bg fallback so no stripe shows if cover leaves a hair gap */
  background: #1e3a5f;
}

.page-hero {
  z-index: 4;
}

/* Clip photo + overlay to the hero box only (scaled layers must not paint over sections below). */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  /* Keep inside .hero__media; seam hiding vs spacer handled by hero background color */
  bottom: 0;
  z-index: 0;
  background-color: #1e3a5f;
  background-image: url("../Images/hero section /ChatGPT Image May 1, 2026, 11_53_30 AM.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 88% center;
  transform: translate3d(0, var(--hero-parallax-y), 0) scale(1.08);
  transform-origin: 72% 42%;
  will-change: transform;
}

.hero__gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  /* Match .hero__bg transform so overlay aligns with scaled photo (no seam at edges) */
  transform: translate3d(0, var(--hero-parallax-y), 0) scale(1.08);
  transform-origin: 72% 42%;
  will-change: transform;
  pointer-events: none;
  /* Bottom stack blends into band below hero (same as partners) */
  background:
    linear-gradient(
      to bottom,
      rgba(233, 238, 245, 0) 0%,
      rgba(233, 238, 245, 0) 68%,
      rgba(233, 238, 245, 0.28) 82%,
      rgba(233, 238, 245, 0.82) 94%,
      var(--band-below-hero) 100%
    ),
    linear-gradient(
      105deg,
      rgba(248, 250, 252, 0.98) 0%,
      rgba(248, 250, 252, 0.9) 20%,
      rgba(248, 250, 252, 0.52) 38%,
      rgba(248, 250, 252, 0.16) 56%,
      rgba(248, 250, 252, 0.04) 70%,
      transparent 85%
    );
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg {
    transform: none;
    will-change: auto;
  }

  .hero__gradient {
    transform: none;
    will-change: auto;
  }
}

@media (max-width: 768px) {
  .hero__bg {
    transform: translate3d(0, var(--hero-parallax-y), 0) scale(1.02);
    transform-origin: center center;
  }

  .hero__gradient {
    transform: translate3d(0, var(--hero-parallax-y), 0) scale(1.02);
    transform-origin: center center;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .hero__bg {
    transform: none;
  }

  .hero__gradient {
    transform: none;
  }
}

.hero .container,
.page-hero .container {
  position: relative;
  z-index: 2;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--hr-delay, 0s);
}

.hero.is-revealed .hero-reveal,
.page-hero.is-revealed .hero-reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: 28px 48px;
  margin-inline: var(--nav-edge-pull);
}

/* Inner pages: reuse .hero-wrapper for copy + optional .hero-aside, or full-bleed photo (see PAGE HERO — About). */

@media (min-width: 993px) {
  .hero-wrapper {
    align-items: end;
  }
}

.hero-content,
.hero-aside {
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(223, 234, 255, 0.98);
  color: var(--blue-primary);
  padding: 11px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 26px;
  box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.08);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.hero.is-revealed .hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(var(--primary-rgb), 0.12);
}

.hero-badge svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 4.8vw, 4.35rem);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--navy-heading);
}

.hero-title__line {
  display: block;
}

.hero-title__accent {
  display: block;
  color: var(--secondary-blue);
}

.hero-content h1 span.hero-title__line {
  color: inherit;
}

.hero-content p {
  font-size: var(--text-lead);
  line-height: var(--leading-lead);
  color: var(--muted);
  max-width: min(700px, var(--measure-readable));
  margin-bottom: 1rem;
}

.hero-content > p:last-of-type {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

/* FEATURES */
.hero-features {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--icon-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--blue-primary);
  font-size: 24px;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease,
    background-color 0.25s ease;
}

.hero.is-revealed .feature-box:hover .feature-icon {
  transform: scale(1.06);
  box-shadow: 0 8px 22px rgba(var(--primary-rgb), 0.14);
}

.partners.is-revealed .hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(var(--primary-rgb), 0.12);
}

.partners.is-revealed .partners-benefits__item:hover .feature-icon {
  transform: scale(1.06);
  box-shadow: 0 8px 22px rgba(var(--primary-rgb), 0.14);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-box h4 {
  font-size: 19px;
  line-height: 1.4;
  font-weight: 600;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-primary);
  color: var(--white);
  padding: 18px 38px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 18px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.28s ease, transform 0.22s ease, box-shadow 0.28s ease;
  box-shadow: 0 6px 22px rgba(var(--primary-rgb), 0.32);
}

.btn-primary:hover {
  background: var(--blue-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(var(--primary-rgb), 0.38);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 3px 14px rgba(var(--primary-rgb), 0.28);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--navy-heading);
  outline-offset: 3px;
}

.btn-primary svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--blue-primary);
  color: var(--primary-blue);
  padding: 18px 38px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 18px;
  background: var(--section-white);
  cursor: pointer;
  font-family: inherit;
  transition:
    background 0.28s ease,
    color 0.28s ease,
    transform 0.22s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.btn-outline:hover {
  background: rgba(var(--secondary-rgb), 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(var(--primary-rgb), 0.12);
}

.btn-outline:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-outline:focus-visible {
  outline: 2px solid var(--blue-primary);
  outline-offset: 3px;
}

.btn-outline svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* RIGHT COLUMN + FLOATING STATS */
.hero-aside {
  position: relative;
  align-self: end;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

/* FLOATING STATS */
.hero-stats {
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 22px 8px;
  box-shadow: 0 22px 50px rgba(var(--navy-rgb), 0.18);
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
  transition: box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero.is-revealed .hero-stats:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(var(--navy-rgb), 0.22);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
  padding: 0 12px;
  min-width: 0;
}

.stat-divider {
  width: 1px;
  flex-shrink: 0;
  background: rgba(var(--navy-rgb), 0.12);
  align-self: stretch;
  margin: 4px 0;
}

.stat-item__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--icon-bg);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.stat-item__icon svg {
  width: 23px;
  height: 23px;
  color: var(--blue-primary);
}

.stat-item__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.stat-item__num {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--navy-heading);
  line-height: 1.05;
  font-variant-numeric: tabular-nums slashed-zero;
  font-feature-settings: "tnum" 1;
}

.stat-item__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.35;
}

@media (min-width: 1100px) {
  .stat-item__label {
    font-size: 14px;
  }
}

/* =========================
   BOOKING SEARCH BOX
========================= */
.booking-box {
  position: absolute;
  left: 0;
  right: 0;
  width: auto;
  margin-inline: var(--nav-edge-pull);
  transform: translateY(clamp(14px, 2.6vw, 36px));
  bottom: clamp(-260px, -16vw, -170px);
  max-width: none;
  z-index: 50;
  background: var(--section-white);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  min-width: 0;
  box-sizing: border-box;
}

.booking-box:focus-within {
  box-shadow: 0 32px 56px rgba(var(--navy-rgb), 0.12);
}

.booking-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px;
  max-width: 100%;
  min-width: 0;
  background: rgba(var(--primary-rgb), 0.07);
  border-radius: 18px;
  border: 1px solid rgba(var(--primary-rgb), 0.09);
}

.booking-tabs button {
  flex: 1 1 auto;
  justify-content: center;
  background: transparent;
  border: none;
  font-size: clamp(15px, 1.35vw, 17px);
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  padding: 12px 18px;
  margin-bottom: 0;
  border-radius: 12px;
  border-bottom: none;
  transition:
    background 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.26s ease,
    box-shadow 0.26s ease,
    transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  white-space: nowrap;
}

.booking-tabs button:focus-visible {
  outline: 2px solid var(--blue-primary);
  outline-offset: 2px;
}

.booking-tabs button svg {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  transition: color 0.26s ease, opacity 0.26s ease, transform 0.26s ease;
}

.booking-tabs button:hover:not(.active) {
  color: var(--navy-heading);
  background: rgba(255, 255, 255, 0.45);
}

.booking-tabs button.active {
  color: var(--primary-blue);
  background: var(--white);
  box-shadow:
    0 4px 20px rgba(var(--navy-rgb), 0.1),
    0 0 0 1px rgba(var(--primary-rgb), 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

.booking-tabs button.active svg {
  opacity: 1;
  color: var(--secondary-blue);
  transform: scale(1.05);
}

.booking-tabs button:not(.active) svg {
  opacity: 0.62;
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  .booking-tabs button,
  .booking-tabs button svg {
    transition-duration: 0.01ms;
  }

  .booking-tabs button.active {
    transform: none;
  }
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.booking-panels {
  display: contents;
}

.booking-panel[hidden] {
  display: none !important;
}

.booking-panel:not([hidden]) {
  display: contents;
}

.booking-loc-field {
  position: relative;
}

.booking-suggest {
  list-style: none;
  margin: 0;
  padding: 6px;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 60;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  max-height: 220px;
  overflow-y: auto;
}

.booking-suggest li {
  margin: 0;
  padding: 0;
}

.booking-suggest button {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-navy);
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
}

.booking-suggest button:hover,
.booking-suggest button:focus-visible {
  background: rgba(var(--primary-rgb), 0.08);
  outline: none;
}

.booking-suggest button.booking-suggest__active {
  background: rgba(var(--primary-rgb), 0.14);
}

.input-box--error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.input-box__field--select svg {
  flex-shrink: 0;
}

.booking-select,
.booking-date-input,
.booking-number-input {
  flex: 1;
  width: 100%;
  min-width: 0;
  border: none;
  background: transparent;
  font-size: 17px;
  color: var(--dark-navy);
  font-weight: 500;
  font-family: inherit;
  outline: none;
}

.booking-date-input {
  min-height: 1.35rem;
}

.booking-date-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.65;
}

.booking-number-input {
  -moz-appearance: textfield;
}

.booking-number-input::-webkit-outer-spin-button,
.booking-number-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.booking-travelers-wrap {
  position: relative;
}

.booking-travelers-trigger {
  flex: 1;
  width: 100%;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
  font-size: 17px;
  font-weight: 500;
  color: var(--dark-navy);
  text-align: left;
  cursor: pointer;
}

.booking-travelers-trigger:focus-visible {
  outline: 2px solid var(--blue-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.booking-travelers-popover {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: min(280px, calc(100vw - 48px));
  z-index: 70;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.14);
}

.booking-travelers-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-heading);
}

.booking-stepper {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.booking-stepper__btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  background: rgba(var(--primary-rgb), 0.06);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  color: var(--dark-navy);
}

.booking-stepper__btn:hover {
  background: rgba(var(--primary-rgb), 0.12);
}

.booking-stepper__btn:focus-visible {
  outline: 2px solid var(--blue-primary);
  outline-offset: 2px;
}

.booking-stepper__val {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 700;
}

.booking-travelers-done {
  width: 100%;
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: 12px;
  border: none;
  background: var(--blue-primary);
  color: var(--white);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.booking-travelers-done:hover {
  background: var(--blue-primary-hover);
}

.booking-travelers-done:focus-visible {
  outline: 2px solid var(--navy-heading);
  outline-offset: 2px;
}

.input-box {
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 18px 20px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.input-box:focus-within {
  border-color: rgba(var(--primary-rgb), 0.45);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

.input-box label {
  display: block;
  font-size: 14px;
  color: var(--silver-grey);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.input-box__field svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--blue-primary);
}

.input-box input {
  flex: 1;
  width: 100%;
  min-width: 0;
  border: none;
  background: transparent;
  font-size: 17px;
  color: var(--dark-navy);
  font-weight: 500;
  font-family: inherit;
  outline: none;
}

.input-box input::placeholder {
  color: var(--silver-grey);
}

.search-btn {
  background: var(--blue-primary);
  border: none;
  color: var(--white);
  border-radius: 16px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  padding: 18px 20px;
  align-self: end;
  min-height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.28s ease, transform 0.2s ease, box-shadow 0.28s ease;
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.25);
}

.search-btn:hover {
  background: var(--blue-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(var(--primary-rgb), 0.32);
}

.search-btn:active {
  transform: translateY(0);
}

.search-btn:focus-visible {
  outline: 2px solid var(--navy-heading);
  outline-offset: 3px;
}

.search-btn svg {
  width: 22px;
  height: 22px;
}

@media (min-width: 993px) {
  /* Extra hero foot room + lower float so booking never covers CTAs / stats */
  .hero,
  .page-hero {
    padding-bottom: clamp(52px, 5.5vw, 96px);
  }

  /* Same inset as .hero-aside so CTAs and stats share one horizontal baseline */
  .hero-content {
    margin-bottom: clamp(20px, 3vw, 40px);
  }

  .hero-aside {
    margin-bottom: clamp(20px, 3vw, 40px);
  }

  .booking-box {
    /* Raised ~4× prior nudge: overlap hero/clouds more; was translateY clamp(28px, 3.8vw, 56px) */
    transform: translateY(calc(clamp(28px, 3.8vw, 56px) - clamp(112px, 15vw, 200px)));
    bottom: clamp(-380px, -26vw, -260px);
  }

  .post-hero-gap {
    min-height: clamp(200px, 28vw, 340px);
  }
}

.post-hero-gap {
  /* Space for full floating booking card + drop shadow above partners */
  min-height: clamp(180px, 26vw, 300px);
  margin-top: -2px;
  padding-top: 2px;
  padding-bottom: clamp(32px, 5vw, 64px);
  background: var(--band-below-hero);
  position: relative;
  z-index: 1;
}

/* =========================
   PLAN YOUR JOURNEY (dark band — composite floats on navy, no image card)
========================= */
.plan-journey {
  --pj-bg: var(--deep-band-bg);
  --pj-accent: #2bb6e8;
  --pj-muted: rgba(255, 255, 255, 0.82);

  position: relative;
  z-index: 1;
  isolation: isolate;
  padding: clamp(56px, 7vw, 88px) 0 clamp(60px, 8vw, 96px);
  background: var(--pj-bg);
  color: #ffffff;
}

#plan-your-trip {
  scroll-margin-top: calc(88px + env(safe-area-inset-top, 0px));
}

.plan-journey .container {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.plan-journey__bg,
.why-choose::before,
.travel-services::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, var(--deep-band-dot) 1px, transparent 0),
    radial-gradient(ellipse 90% 55% at 78% 42%, var(--deep-band-glow) 0%, transparent 58%);
  background-size: 28px 28px, 100% 100%;
}

.why-choose::before,
.travel-services::before {
  content: "";
}

.plan-journey__decor {
  position: absolute;
  inset: -8% -12% auto auto;
  width: min(720px, 92vw);
  height: auto;
  z-index: 0;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.45);
}

.plan-journey__map {
  width: 100%;
  height: auto;
  display: block;
}

.plan-journey__shell {
  position: relative;
  z-index: 1;
  margin-inline: var(--nav-edge-pull);
  min-width: 0;
}

.plan-journey__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.plan-journey__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.plan-journey__kicker-line {
  width: 36px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}

.plan-journey__kicker svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--pj-accent);
}

.plan-journey__title {
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 18px;
}

.plan-journey__title-line {
  display: block;
  color: #ffffff;
}

.plan-journey__title-accent {
  display: block;
  color: var(--pj-accent);
}

.plan-journey__lead {
  font-size: clamp(17px, 1.95vw, 21px);
  line-height: 1.65;
  color: var(--pj-muted);
  margin: 0 0 clamp(28px, 4vw, 36px);
  max-width: 560px;
}

.plan-journey__pillars {
  list-style: none;
  margin: 0 0 clamp(32px, 4vw, 40px);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vw, 22px);
}

.plan-journey__pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.plan-journey__pillar-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 168, 232, 0.16);
  color: var(--pj-accent);
}

.plan-journey__pillar-icon svg {
  width: 22px;
  height: 22px;
}

.plan-journey__pillar-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.plan-journey__pillar-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.plan-journey__pillar-desc {
  font-size: 0.9375rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.plan-journey__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.plan-journey__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border-radius: 14px;
  padding: 16px 26px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.26s ease,
    color 0.26s ease,
    transform 0.22s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}

.plan-journey__btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.plan-journey__btn--whatsapp {
  background: var(--secondary-blue);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.plan-journey__btn--whatsapp svg {
  color: #ffffff;
}

.plan-journey__btn--whatsapp:hover {
  background: #0096cf;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.plan-journey__btn--whatsapp:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.plan-journey__btn--call {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.plan-journey__btn--call:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.plan-journey__btn--call:focus-visible {
  outline: 2px solid var(--pj-accent);
  outline-offset: 3px;
}

.plan-journey__btn--plan {
  background: var(--pj-accent);
  color: #0b1530;
  border: 2px solid var(--pj-accent);
  box-shadow: 0 8px 22px rgba(43, 182, 232, 0.32);
}

.plan-journey__btn--plan:hover {
  background: #4fd0f8;
  border-color: #4fd0f8;
  transform: translateY(-2px);
}

.plan-journey__btn--plan:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

/* Right column: artwork sits directly on the navy — no enclosing card */
.plan-journey__visual {
  position: relative;
  justify-self: end;
  width: min(100%, 560px);
  margin-inline: 0 auto;
}

.plan-journey__photo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.35));
  pointer-events: none;
  user-select: none;
}

.plan-journey__trust {
  position: absolute;
  left: clamp(8px, 4%, 18px);
  bottom: clamp(10px, 6%, 22px);
  max-width: min(280px, calc(100% - 24px));
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.plan-journey__trust-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 59, 142, 0.08);
  color: var(--blue-primary);
}

.plan-journey__trust-icon svg {
  width: 18px;
  height: 18px;
}

.plan-journey__trust-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  font-weight: 600;
  color: var(--navy-heading);
}

.pj-reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--pj-delay, 0s);
}

.plan-journey.is-revealed .pj-reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .pj-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .plan-journey__btn--whatsapp:hover,
  .plan-journey__btn--call:hover,
  .plan-journey__btn--plan:hover {
    transform: none;
  }
}

@media (max-width: 992px) {
  .plan-journey__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .plan-journey__kicker {
    justify-content: center;
    flex-wrap: wrap;
  }

  .plan-journey__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .plan-journey__pillars {
    align-items: center;
  }

  .plan-journey__pillar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .plan-journey__actions {
    justify-content: center;
  }

  .plan-journey__visual {
    justify-self: center;
    width: min(100%, 480px);
    order: -1;
  }

  .plan-journey__trust {
    left: 50%;
    transform: translateX(-50%);
    bottom: clamp(8px, 3vw, 16px);
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 992px) {
  .plan-journey__trust {
    transform: translateX(-50%);
  }
}

/* =========================
   TESTIMONIALS (light band + carousel)
========================= */
.testimonials {
  position: relative;
  z-index: 1;
  padding: clamp(56px, 8vw, 88px) 0 clamp(64px, 9vw, 96px);
  background: #eef1f6;
  color: var(--navy-heading);
}

#testimonials {
  scroll-margin-top: calc(88px + env(safe-area-inset-top, 0px));
}

.testimonials .container {
  min-width: 0;
}

.testimonials__shell {
  margin-inline: var(--nav-edge-pull);
  min-width: 0;
}

.testimonials__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 48px);
}

.testimonials__badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 22px);
  margin-bottom: 18px;
}

.testimonials__badge-line {
  flex: 1 1 72px;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 59, 142, 0.22), transparent);
}

.testimonials__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-primary);
  white-space: nowrap;
}

.testimonials__badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--secondary-blue);
}

.testimonials__title {
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0;
  color: #0b1530;
}

.testimonials__carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(10px, 2vw, 18px);
}

.testimonials__viewport {
  overflow: hidden;
  min-width: 0;
  --tm-gap: clamp(16px, 2vw, 22px);
}

.testimonials__track {
  display: flex;
  gap: var(--tm-gap, clamp(16px, 2vw, 22px));
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonials.is-revealed .testimonials__track--no-transition {
  transition: none;
}

.testimonial-card {
  flex: 0 0 calc((100% - 2 * var(--tm-gap, clamp(16px, 2vw, 22px))) / 3);
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: clamp(20px, 2.5vw, 26px) clamp(18px, 2.2vw, 24px) clamp(22px, 2.8vw, 28px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
  min-width: 0;
}

.testimonial-card__top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.testimonial-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(0, 59, 142, 0.12);
}

.testimonial-card__quote {
  margin: 0;
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  line-height: 1.58;
  color: #1e293b;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
  color: #eab308;
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.testimonial-card__name {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.testimonial-card__loc {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}

.testimonial-card__mark {
  position: absolute;
  right: 14px;
  bottom: 8px;
  font-size: clamp(3rem, 8vw, 4.5rem);
  line-height: 1;
  font-weight: 700;
  color: rgba(43, 182, 232, 0.14);
  pointer-events: none;
  user-select: none;
}

.testimonials__nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  color: var(--blue-primary);
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.22s ease;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.testimonials__nav svg {
  width: 20px;
  height: 20px;
}

.testimonials__nav:hover:not(:disabled) {
  background: rgba(0, 168, 232, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.testimonials__nav:focus-visible {
  outline: 2px solid var(--blue-primary);
  outline-offset: 2px;
}

.testimonials__nav:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.tm-reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--tm-delay, 0s);
}

.testimonials.is-revealed .tm-reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .tm-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .testimonials__track {
    transition: none;
  }

  .testimonials__nav:hover:not(:disabled) {
    transform: none;
  }
}

@media (max-width: 991px) {
  .testimonial-card {
    flex: 0 0 min(420px, calc(100vw - max(32px, env(safe-area-inset-left, 0px) + env(safe-area-inset-right, 0px) + 24px)));
    scroll-snap-align: center;
    max-width: none;
  }

  .testimonials__carousel {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonials__nav {
    display: none;
  }

  .testimonials__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    margin-inline: clamp(-8px, -1vw, 0px);
    padding-inline: clamp(8px, 1vw, 0px);
  }

  .testimonials__track {
    transition: none;
    width: max-content;
    padding-inline: 2px;
  }
}

@media (max-width: 520px) {
  .testimonials__badge-line {
    max-width: 48px;
  }
}

/* =========================
   PARTNERS SECTION
========================= */
.partners {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 3.25vw, 40px) 0 clamp(72px, 10vw, 104px);
  background: var(--band-below-hero);
  overflow: hidden;
}

.partners__decor {
  pointer-events: none;
  position: absolute;
  inset: -12% -16% auto auto;
  width: min(680px, 72vw);
  height: auto;
  opacity: 1;
  color: var(--blue-primary);
}

.partners__plane {
  width: 100%;
  height: auto;
  display: block;
  filter: blur(0.2px);
}

.partners-wrap {
  position: relative;
  z-index: 1;
  /* Flush to .container gutters — avoids edge-pull optical shift vs hero breakout */
  margin-inline: 0;
  min-width: 0;
  max-width: 100%;
}

.partners-reveal {
  opacity: 0;
  transform: translateY(1.1rem);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--pr-delay, 0s);
}

.partners.is-revealed .partners-reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .partners-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.partners__header {
  text-align: center;
  max-width: min(760px, 100%);
  margin: 0 auto clamp(36px, 5vw, 52px);
}

.partners-badge.hero-badge {
  margin-bottom: 26px;
}

.partners__title {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 22px;
  color: var(--navy-heading);
  overflow-wrap: anywhere;
}

.partners-title__line {
  display: block;
}

.partners-title__accent {
  display: block;
  color: var(--secondary-blue);
}

.partners__lead {
  font-size: clamp(1.0625rem, 2.05vw, 1.375rem);
  line-height: var(--leading-lead);
  color: var(--muted);
  max-width: min(700px, var(--measure-readable), 100%);
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

.partners-benefits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 42px);
  margin-bottom: clamp(36px, 5vw, 52px);
  flex-wrap: wrap;
  width: 100%;
  min-width: 0;
}

.partners-benefits__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex: 0 1 220px;
  min-width: 0;
  max-width: min(260px, 100%);
  padding: 0;
}

.partners-benefits__rule {
  width: 1px;
  background: rgba(var(--navy-rgb), 0.12);
  align-self: stretch;
  margin: 4px 0;
  flex-shrink: 0;
}

.partners-benefits__text {
  min-width: 0;
}

.partners-benefits__name {
  font-size: 19px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--navy-heading);
  margin-bottom: 6px;
}

.partners-benefits__desc {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

.partners-card {
  background: var(--section-white);
  border-radius: 22px;
  padding: clamp(24px, 3.2vw, 36px);
  box-shadow: 0 22px 50px rgba(var(--navy-rgb), 0.18);
  border: 1px solid rgba(var(--navy-rgb), 0.06);
  margin-bottom: clamp(28px, 4vw, 40px);
}

.partners-groups {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
}

.partners-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.partners-airlines__subhead {
  margin: 0 0 clamp(16px, 2.4vw, 22px);
  font-size: clamp(0.9875rem, 1.55vw, 1.125rem);
  font-weight: 700;
  color: var(--navy-heading);
  letter-spacing: 0.01em;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.partners-airlines__subhead::before {
  content: "";
  width: 4px;
  height: 1.05em;
  border-radius: 2px;
  background: var(--secondary-blue);
  flex-shrink: 0;
}

.partners-airlines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: clamp(12px, 2vw, 16px);
  width: 100%;
  margin-inline: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.partners-airline {
  flex: 0 1 168px;
  min-width: min(152px, 100%);
  max-width: 220px;
  background: var(--section-light);
  border: 1px solid rgba(var(--navy-rgb), 0.07);
  border-radius: 16px;
  padding: clamp(16px, 2.2vw, 22px) clamp(14px, 2vw, 18px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  min-height: 118px;
  box-sizing: border-box;
  box-shadow: 0 4px 14px rgba(var(--navy-rgb), 0.04);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.partners-airline:hover {
  border-color: rgba(var(--primary-rgb), 0.16);
  box-shadow: 0 10px 28px rgba(var(--navy-rgb), 0.1);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .partners-airline {
    transition-duration: 0.01ms;
  }

  .partners-airline:hover {
    transform: none;
  }
}

.partners-airline__logo-wrap {
  width: 100%;
  max-width: 148px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partners-airline__logo {
  max-height: 44px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partners-airline__fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 48px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--primary-blue);
  background: rgba(var(--primary-rgb), 0.07);
}

.partners-airline__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.35;
  max-width: 160px;
}

.partners-cta {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
  padding: clamp(20px, 3vw, 28px) clamp(22px, 3vw, 34px);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 22px 50px rgba(var(--navy-rgb), 0.18);
  border: 1px solid rgba(var(--navy-rgb), 0.06);
  transition:
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.partners.is-revealed .partners-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(var(--navy-rgb), 0.22);
}

.partners-cta__copy {
  flex: 1 1 280px;
  min-width: 0;
  max-width: 560px;
  text-align: left;
}

.partners-cta__title {
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 700;
  color: var(--navy-heading);
  margin-bottom: 10px;
  line-height: 1.35;
  text-align: left;
}

.partners-cta__text {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
  color: var(--muted);
  text-align: left;
}

.partners-cta__btn {
  flex-shrink: 0;
}

.partners-cta__btn svg {
  width: 20px;
  height: 20px;
}

/* =========================
   POPULAR DESTINATIONS (light band — was travel-services bg)
========================= */
.destinations {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 10vw, 104px) 0 clamp(72px, 10vw, 104px);
  background: #f8fafc;
  color: inherit;
  overflow: hidden;
}

#destinations {
  scroll-margin-top: calc(88px + env(safe-area-inset-top, 0px));
}

.destinations__decor {
  pointer-events: none;
  position: absolute;
  inset: auto -12% -14% auto;
  width: min(520px, 78vw);
  height: auto;
  color: rgba(var(--primary-rgb), 0.14);
}

.destinations__plane {
  width: 100%;
  height: auto;
  display: block;
}

.destinations-wrap {
  position: relative;
  z-index: 1;
  margin-inline: var(--nav-edge-pull);
  min-width: 0;
}

.destinations-reveal {
  opacity: 0;
  transform: translateY(1.1rem);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--dr-delay, 0s);
}

.destinations.is-revealed .destinations-reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .destinations-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.destinations .destinations-badge.hero-badge {
  background: #dbeafe;
  color: var(--ts-accent, #2563eb);
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8125rem;
}

.destinations.is-revealed .destinations-badge.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(37, 99, 235, 0.18);
}

.destinations__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 48px);
}

.destinations-badge.hero-badge {
  margin-bottom: 26px;
}

.destinations__title {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 22px;
  color: #0f172a;
}

.destinations-title__line {
  display: block;
}

.destinations-title__accent {
  display: block;
  color: var(--ts-accent, #2563eb);
}

.destinations__lead {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.65;
  color: #64748b;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
  margin-bottom: clamp(36px, 5vw, 52px);
}

.destination-card {
  background: var(--section-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.destinations.is-revealed .destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

.destination-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.destination-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.destinations.is-revealed .destination-card:hover .destination-card__media img {
  transform: scale(1.04);
}

.destination-card__country {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  max-width: calc(100% - 24px);
}

.destination-card__flag-wrap {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.destination-card__flag {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-card__country-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.destination-card__body {
  padding: clamp(18px, 2.2vw, 22px);
}

.destination-card__city {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-heading);
  margin-bottom: 8px;
  line-height: 1.25;
}

.destination-card__loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.destination-card__loc svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--blue-primary);
}

.destination-card__desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 16px;
}

.destination-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-primary);
  transition: gap 0.25s ease, color 0.2s ease;
}

.destination-card__link:hover {
  color: var(--blue-primary-hover);
  gap: 12px;
}

.destination-card__link:focus-visible {
  outline: 2px solid var(--blue-primary);
  outline-offset: 3px;
  border-radius: 6px;
}

.destination-card__link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.destinations-cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 26px);
  flex-wrap: wrap;
  padding: clamp(22px, 3vw, 30px) clamp(22px, 3vw, 34px);
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
  transition:
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.destinations.is-revealed .destinations-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.14);
}

.destinations-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #e8f4fc;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0, 59, 142, 0.14) 1px, transparent 0),
    linear-gradient(125deg, rgba(255, 255, 255, 0.5) 0%, transparent 42%, transparent 58%, rgba(0, 168, 232, 0.06) 100%);
  background-size: 22px 22px, 100% 100%;
  opacity: 1;
}

.destinations-cta__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.2);
}

.destinations-cta__icon svg {
  width: 26px;
  height: 26px;
  color: var(--blue-primary);
}

.destinations-cta__copy {
  flex: 1 1 260px;
  min-width: 0;
}

.destinations-cta__title {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 700;
  color: var(--navy-heading);
  margin-bottom: 8px;
  line-height: 1.3;
}

.destinations-cta__text {
  font-size: clamp(15px, 1.65vw, 18px);
  line-height: 1.6;
  color: var(--muted);
}

.destinations-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
  justify-content: flex-end;
  flex-shrink: 0;
}

.destinations-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border-radius: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.26s ease, color 0.26s ease, transform 0.22s ease, box-shadow 0.26s ease,
    border-color 0.26s ease;
}

.destinations-cta__btn svg {
  flex-shrink: 0;
}

.destinations-cta__btn--outline {
  background: var(--white);
  border: 2px solid var(--blue-primary);
  color: var(--blue-primary);
  padding: 14px 18px;
}

.destinations-cta__btn--outline svg {
  width: 20px;
  height: 20px;
}

.destinations-cta__btn--outline:hover {
  background: rgba(var(--secondary-rgb), 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(var(--primary-rgb), 0.14);
}

.destinations-cta__btn--outline:focus-visible {
  outline: 2px solid var(--blue-primary);
  outline-offset: 3px;
}

.destinations-cta__btn--primary {
  background: var(--blue-primary);
  border: 2px solid transparent;
  color: var(--white);
  padding: 14px 22px;
  box-shadow: 0 6px 22px rgba(var(--primary-rgb), 0.35);
}

.destinations-cta__btn--primary svg {
  width: 22px;
  height: 22px;
}

.destinations-cta__btn--primary:hover {
  background: var(--blue-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(var(--primary-rgb), 0.42);
}

.destinations-cta__btn--primary:focus-visible {
  outline: 2px solid var(--navy-heading);
  outline-offset: 3px;
}

.destinations-cta__phone-lines {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}

.destinations-cta__phone-label {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  opacity: 0.95;
}

.destinations-cta__phone-num {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 700;
  line-height: 1.15;
}

/* =========================
   TRAVEL SERVICES (blue band — was destinations)
========================= */
.travel-services {
  --ts-bg: var(--deep-band-bg);
  --ts-navy: #0f172a;
  --ts-accent: #2563eb;
  --ts-icon-tile: #dbeafe;
  --ts-muted: #64748b;
  --ts-bar: #f1f5f9;
  --ts-cta-bg: #0f172a;
  --ts-whatsapp: #25d366;

  position: relative;
  z-index: 1;
  padding: clamp(72px, 10vw, 104px) 0 clamp(72px, 10vw, 104px);
  background: var(--ts-bg);
  color: var(--white);
  overflow: hidden;
}

#travel-services {
  scroll-margin-top: calc(88px + env(safe-area-inset-top, 0px));
}

.travel-services > .container {
  position: relative;
  z-index: 1;
}

.travel-services__wrap {
  margin-inline: var(--nav-edge-pull);
  min-width: 0;
}

.travel-services__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 56px);
}

.travel-services__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue-primary);
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 26px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.18);
}

.travel-services__badge svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.travel-services.is-revealed .travel-services__badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
}

.travel-services__title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.98);
}

.travel-services__title-line {
  display: block;
}

.travel-services__title-accent {
  display: block;
  color: var(--secondary-blue);
}

.travel-services__lead {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.ts-reveal {
  opacity: 0;
  transform: translateY(1.05rem);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--ts-delay, 0s);
}

.travel-services.is-revealed .ts-reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .ts-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.travel-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 28px);
  margin-bottom: clamp(36px, 5vw, 48px);
}

.service-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: clamp(14px, 2vw, 22px);
  background: var(--white);
  border-radius: 14px;
  padding: clamp(14px, 2vw, 18px);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
  min-height: 0;
  transition:
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.travel-services.is-revealed .service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

.service-card__content {
  flex: 1 1 0;
  min-width: 0;
  padding: clamp(8px, 1.2vw, 12px) clamp(6px, 1vw, 10px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card__top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
}

.service-card__icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--ts-icon-tile);
  color: var(--ts-accent);
  display: grid;
  place-items: center;
}

.service-card__icon-wrap svg {
  width: 26px;
  height: 26px;
}

.service-card__name {
  flex: 1;
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  font-weight: 700;
  color: var(--ts-navy);
  line-height: 1.3;
  margin: 0;
  padding-top: 4px;
}

.service-card__rule {
  display: block;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: var(--ts-accent);
  margin: 14px 0 12px;
}

.service-card__desc {
  font-size: clamp(14px, 1.45vw, 15px);
  line-height: 1.55;
  color: var(--ts-muted);
  margin: 0;
}

.service-card__visual {
  flex: 0 0 clamp(168px, 22vw, 220px);
  width: clamp(168px, 22vw, 220px);
  min-height: 200px;
  border-radius: 12px;
  overflow: hidden;
  align-self: stretch;
}

.service-card__visual img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}

.travel-services__highlights {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
  padding: clamp(24px, 3.5vw, 34px) clamp(22px, 3vw, 36px);
  background: var(--ts-bar);
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  margin-bottom: clamp(36px, 5vw, 48px);
}

.ts-highlight {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.ts-highlight__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ts-icon-tile);
  color: var(--ts-accent);
  display: grid;
  place-items: center;
}

.ts-highlight__icon svg {
  width: 22px;
  height: 22px;
}

.ts-highlight__text {
  min-width: 0;
}

.ts-highlight__title {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 700;
  color: var(--ts-navy);
  margin: 0 0 6px;
  line-height: 1.3;
}

.ts-highlight__desc {
  font-size: clamp(13px, 1.35vw, 14px);
  line-height: 1.5;
  color: var(--ts-muted);
  margin: 0;
}

.travel-services__cta {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.2);
}

.travel-services__cta-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--ts-cta-bg);
  background-image:
    radial-gradient(ellipse 85% 65% at 75% 35%, rgba(37, 99, 235, 0.22) 0%, transparent 55%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size:
    100% 100%,
    52px 52px,
    52px 52px;
  pointer-events: none;
}

.travel-services__cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 28px);
  padding: clamp(24px, 3.5vw, 34px) clamp(22px, 3vw, 38px);
}

.travel-services__cta-visual {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.travel-services__cta-trail {
  width: clamp(72px, 12vw, 120px);
  height: auto;
  flex-shrink: 0;
}

.travel-services__cta-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.travel-services__cta-ring svg {
  width: 26px;
  height: 26px;
  color: var(--ts-accent);
}

.travel-services__cta-copy {
  flex: 1 1 280px;
  min-width: 0;
}

.travel-services__cta-title {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.25;
}

.travel-services__cta-text {
  font-size: clamp(15px, 1.65vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 520px;
}

.travel-services__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
  justify-content: flex-end;
  flex-shrink: 0;
}

.travel-services__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border-radius: 14px;
  text-decoration: none;
  padding: 14px 22px;
  transition:
    background 0.26s ease,
    color 0.26s ease,
    transform 0.22s ease,
    box-shadow 0.26s ease;
}

.travel-services__btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.travel-services__btn--whatsapp {
  background: var(--white);
  color: #475569;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.travel-services__btn--whatsapp svg {
  color: var(--ts-whatsapp);
}

.travel-services__btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.14);
}

.travel-services__btn--whatsapp:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.travel-services__btn--call {
  background: var(--ts-accent);
  color: var(--white);
  box-shadow: 0 8px 26px rgba(37, 99, 235, 0.45);
}

.travel-services__btn--call svg {
  stroke: currentColor;
}

.travel-services__btn--call:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
}

.travel-services__btn--call:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.travel-services__btn-call-lines {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.15;
  text-align: left;
}

.travel-services__btn-call-label {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.95;
}

.travel-services__btn-call-num {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 700;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .booking-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-btn {
    grid-column: 1 / -1;
    min-height: 56px;
    width: 100%;
  }
}

@media (max-width: 992px) {
  :root {
    --nav-edge-pull: 0px;
    --nav-edge-pull-sm: 0px;
    --hero-bg-extend: 0px;
  }

  .hero__gradient {
    background: linear-gradient(
      180deg,
      rgba(233, 238, 245, 0.97) 0%,
      rgba(233, 238, 245, 0.82) 32%,
      rgba(233, 238, 245, 0.38) 62%,
      rgba(233, 238, 245, 0.12) 88%,
      rgba(233, 238, 245, 0.06) 100%
    );
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(360px, 100%);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: calc(88px + env(safe-area-inset-top, 0px)) 20px 32px;
    padding-bottom: max(32px, env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 42%);
    border-left: 1px solid var(--nav-border);
    box-shadow: -16px 0 48px rgba(15, 23, 42, 0.1);
    z-index: 1001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.32s step-end;
  }

  #site-header.nav-open .nav-links {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s step-start;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    padding: 15px 18px;
    min-height: 3.25rem;
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 14px;
    transform: none;
  }

  .nav-links li a:hover,
  .nav-links li a:active {
    transform: none;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
  }

  /* Containing block for booking overlap below stats */
  .hero .container {
    position: relative;
    min-width: 0;
  }

  /* Float booking card over post-hero + partners (desktop). Mobile: in-flow so card height never overlaps partners. */
  .hero {
    z-index: 6;
    padding-bottom: clamp(12px, 3vw, 28px);
  }

  .booking-box {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    margin-top: clamp(18px, 4vw, 32px);
    transform: none;
    z-index: 40;
    box-shadow: 0 22px 48px rgba(var(--navy-rgb), 0.16);
  }

  .post-hero-gap {
    /* Visual band + shadow room; card is inside .hero on mobile (not floated over this) */
    min-height: clamp(64px, 14vw, 112px);
    padding-bottom: clamp(24px, 6vw, 44px);
    z-index: 0;
  }

  .partners {
    z-index: 1;
    padding: clamp(44px, 10vw, 96px) 0 clamp(72px, 10vw, 104px);
  }

  .partners__header {
    scroll-margin-top: 1rem;
  }

  .booking-tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding: 6px;
    overflow-x: visible;
    scrollbar-width: auto;
    scroll-snap-type: none;
  }

  .booking-tabs button {
    flex: 1 1 calc((100% - 6px) / 2);
    max-width: calc((100% - 6px) / 2);
    scroll-snap-align: unset;
    padding: 10px 8px;
    font-size: clamp(0.8rem, 3.1vw, 0.94rem);
    white-space: normal;
    justify-content: center;
    text-align: center;
    line-height: 1.22;
    min-width: 0;
  }

  .booking-tabs button svg {
    width: clamp(17px, 3.8vw, 20px);
    height: clamp(17px, 3.8vw, 20px);
    flex-shrink: 0;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features,
  .hero-buttons {
    justify-content: center;
  }

  .feature-box {
    justify-content: center;
  }

  .hero-aside {
    min-height: 0;
    justify-content: center;
  }

  .hero-stats {
    margin-top: 28px;
    margin-left: 0;
    max-width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
    gap: clamp(4px, 1.2vw, 10px);
    padding: 16px clamp(8px, 2vw, 14px);
  }

  .stat-divider {
    display: block;
    width: 1px;
    flex-shrink: 0;
    align-self: stretch;
    margin: 6px 0;
  }

  .stat-item {
    flex: 1 1 0;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 8px;
    padding: 8px 2px;
  }

  .stat-item__icon {
    width: 46px;
    height: 46px;
  }

  .stat-item__icon svg {
    width: 21px;
    height: 21px;
  }

  .stat-item__num {
    font-size: clamp(1.05rem, 3.8vw, 1.45rem);
  }

  .stat-item__label {
    font-size: clamp(12px, 2.75vw, 13px);
    line-height: 1.35;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 992px) {
  .booking-box {
    transform: none;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    overflow-wrap: anywhere;
    word-wrap: break-word;
  }

  .hero-content p {
    font-size: clamp(1rem, 4vw, 1.125rem);
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-box {
    padding: 20px 18px 22px;
    border-radius: 20px;
  }

  .hero,
  .page-hero {
    padding: clamp(56px, 14vw, 88px) 0 clamp(28px, 8vw, 56px);
    min-height: 0;
  }

  .hero-buttons {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
    gap: clamp(8px, 2.5vw, 14px);
    width: 100%;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 16px clamp(8px, 2.8vw, 16px);
    font-size: clamp(13px, 3.25vw, 16px);
  }

  .hero-buttons .btn-primary svg,
  .hero-buttons .btn-outline svg {
    flex-shrink: 0;
    width: clamp(17px, 4vw, 20px);
    height: clamp(17px, 4vw, 20px);
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: clamp(2px, 1vw, 8px);
    padding: 14px 8px;
  }

  .stat-item {
    gap: 6px;
    padding: 6px 2px;
  }

  .stat-item__icon {
    width: 42px;
    height: 42px;
  }

  .stat-item__icon svg {
    width: 19px;
    height: 19px;
  }

  .stat-item__num {
    font-size: clamp(0.95rem, 4.1vw, 1.2rem);
  }

  .stat-item__label {
    font-size: clamp(12px, 3.2vw, 13px);
    line-height: 1.35;
  }

  .nav-right {
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
}

@media (max-width: 520px) {
  .logo h2 {
    font-size: clamp(1.35rem, 8vw, 1.85rem);
  }

  .logo span {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .logo:not(.logo--brand-img) img {
    width: 44px;
    height: auto;
  }

  .logo.logo--brand-img img {
    width: auto;
    height: auto;
    max-height: 40px;
    max-width: min(96px, 30vw);
  }

  .whatsapp-btn {
    position: relative;
    padding: 11px 14px;
    gap: 0;
    border-radius: 999px;
  }

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

  .feature-box h4 {
    font-size: 16px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
  }

  .partners-cta__btn.btn-primary {
    padding: 15px 26px;
    font-size: 16px;
    justify-content: center;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    padding: 14px 10px;
    font-size: 13px;
  }

  .post-hero-gap {
    min-height: clamp(56px, 12vw, 96px);
    padding-bottom: clamp(20px, 5vw, 36px);
  }

  .partners {
    padding-top: clamp(40px, 9vw, 80px);
  }
}

@media (max-width: 1100px) {
  .destinations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .travel-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .travel-services__highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-card__visual {
    flex: 0 0 clamp(132px, 26vw, 196px);
    width: clamp(132px, 26vw, 196px);
    min-height: 188px;
  }
}

@media (max-width: 768px) {
  .partners__decor {
    width: min(480px, 92vw);
    inset: -6% -30% auto auto;
    opacity: 0.78;
  }

  .partners__lead {
    font-size: clamp(1rem, 4vw, 1.125rem);
  }

  .partners-benefits__rule {
    display: none;
  }

  .partners-benefits {
    gap: 12px;
  }

  .partners-benefits__item {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
    max-width: 100%;
    padding: 10px 8px;
  }

  .partners-cta {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: clamp(14px, 4vw, 20px);
    text-align: left;
  }

  .partners-cta__copy {
    flex: 0 1 auto;
    text-align: left;
  }

  .partners-cta__btn {
    width: 100%;
    justify-content: center;
  }

  .destinations__decor {
    width: min(420px, 88vw);
    inset: auto -28% -18% auto;
    opacity: 0.85;
  }

  .destinations__lead {
    font-size: 18px;
  }

  .destinations-cta {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(14px, 4vw, 20px);
  }

  .destinations-cta__copy {
    flex: 0 1 auto;
  }

  .destinations-cta__actions {
    flex-direction: column;
    justify-content: stretch;
    width: 100%;
  }

  .destinations-cta__btn {
    width: 100%;
    justify-content: center;
  }

  .travel-services__highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    flex-direction: column;
  }

  .service-card__visual {
    flex: 0 0 auto;
    width: 100%;
    order: -1;
    min-height: 200px;
  }

  .travel-services__cta-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .travel-services__cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .travel-services__btn {
    width: 100%;
  }

  .travel-services__cta-visual {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .partners-benefits__item {
    flex: 1 1 100%;
    max-width: 100%;
    flex-direction: column;
    text-align: center;
  }

  .partners-benefits__text {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .partners-benefits__name {
    font-size: 16px;
  }

  .partners-airlines {
    gap: 10px;
  }

  .partners-airline {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    max-width: calc(50% - 5px);
    min-height: 104px;
    padding: 14px 12px;
    gap: 10px;
  }

  .partners-airline__logo-wrap {
    width: 116px;
    max-width: 116px;
    height: 48px;
  }

  .partners-airline__name {
    max-width: none;
    font-size: 13px;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .destination-card__country-name {
    white-space: normal;
  }

  .travel-services__grid {
    grid-template-columns: 1fr;
  }

  .travel-services__highlights {
    grid-template-columns: 1fr;
  }
}

/* =========================
   SITE FOOTER (mock layout)
========================= */
.site-footer {
  background: var(--section-dark);
  color: rgba(255, 255, 255, 0.92);
  margin-top: 0;
  scroll-margin-top: 96px;
}

.site-footer__main {
  padding: clamp(52px, 8vw, 88px) 0 clamp(40px, 6vw, 64px);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 44px);
  align-items: start;
}

.site-footer__brand {
  max-width: 280px;
}

.site-footer__brand.site-footer__brand--has-logo {
  max-width: min(320px, 92vw);
}

.site-footer__logo-img {
  display: block;
  flex-shrink: 0;
  width: auto;
  height: auto;
  max-height: 48px;
  max-width: min(104px, 24vw);
  object-fit: contain;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  transition: opacity 0.2s ease;
}

.site-footer__logo:hover {
  opacity: 0.92;
}

.site-footer__logo-mark svg {
  display: block;
  flex-shrink: 0;
  color: var(--secondary-blue);
}

.site-footer__logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-footer__logo-name {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
}

.site-footer__logo-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__about {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 22px;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer__social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  transition:
    background 0.22s ease,
    transform 0.22s ease,
    color 0.22s ease;
}

.site-footer__social-btn svg {
  width: 18px;
  height: 18px;
}

.site-footer__social-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: var(--white);
}

.site-footer__social-btn:focus-visible {
  outline: 2px solid var(--blue-primary);
  outline-offset: 2px;
}

.site-footer__heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__list a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer__list a:hover {
  color: var(--white);
}

.site-footer__list--chevron a::before {
  content: "›";
  font-weight: 600;
  opacity: 0.95;
  font-size: 1rem;
  line-height: 1;
}

.site-footer__list--pin a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--blue-primary);
  box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.25);
  flex-shrink: 0;
}

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

.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__contact a {
  color: inherit;
  transition: color 0.2s ease;
}

.site-footer__contact a:hover {
  color: var(--white);
}

.site-footer__contact-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(var(--primary-rgb), 0.18);
  color: var(--blue-primary);
}

.site-footer__contact-icon svg {
  width: 18px;
  height: 18px;
}

.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0 clamp(28px, 5vw, 40px);
}

.site-footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer__copy {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__bar-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.site-footer__bar-right > a:first-of-type,
.site-footer__bar-right > a:nth-of-type(2) {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s ease;
}

.site-footer__bar-right > a:first-of-type:hover,
.site-footer__bar-right > a:nth-of-type(2):hover {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__bar-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.875rem;
}

.site-footer__top {
  width: 42px;
  height: 42px;
  margin-left: 8px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  transition:
    background 0.22s ease,
    transform 0.22s ease,
    color 0.22s ease;
}

.site-footer__top svg {
  width: 20px;
  height: 20px;
}

.site-footer__top:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  color: var(--white);
}

.site-footer__top:focus-visible {
  outline: 2px solid var(--blue-primary);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__social-btn:hover,
  .site-footer__top:hover {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__brand {
    grid-column: 1 / -1;
    max-width: 420px;
  }
}

@media (max-width: 600px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   PAGE HERO — About (full-bleed background; same rhythm as home .hero)

   Structure:
     section.page-hero.about-hero
       > .about-hero__bg (optional inline style background-image: url(...) )
       > .about-hero__gradient
       > .container > .hero-wrapper.about-hero__wrapper > .hero-content

   Prefer img/about-hero-bg.png — no spaces in the URL path (see about.php resolver).

   Alternate split layout (picture column): reuse .hero-aside elsewhere if needed.
========================= */
.about-hero.page-hero {
  isolation: isolate;
  overflow: hidden;
  background: #394e66;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #394e66;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 78% center;
  transform: translate3d(0, var(--hero-parallax-y), 0) scale(1.08);
  transform-origin: 74% 45%;
  will-change: transform;
}

.about-hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  transform: translate3d(0, var(--hero-parallax-y), 0) scale(1.08);
  transform-origin: 74% 45%;
  will-change: transform;
  pointer-events: none;
  /* Sky / bottom softening + strong white wedge on the left for copy (matches reference) */
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 58%,
      rgba(255, 255, 255, 0.38) 84%,
      rgba(255, 255, 255, 0.97) 100%
    ),
    linear-gradient(
      100deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.98) 14%,
      rgba(255, 255, 255, 0.88) 28%,
      rgba(255, 255, 255, 0.42) 52%,
      rgba(255, 255, 255, 0.08) 70%,
      transparent 89%
    );
}

.about-hero .hero-wrapper.about-hero__wrapper {
  grid-template-columns: minmax(0, 1fr);
  row-gap: 0;
  min-height: clamp(260px, 42vh, 420px);
}

@media (min-width: 993px) {
  .about-hero .hero-wrapper.about-hero__wrapper {
    align-items: center;
    min-height: clamp(320px, 48vh, 500px);
  }
}

.about-hero .hero-content {
  max-width: 700px;
}

.about-hero .hero-content .about-hero__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  text-transform: uppercase;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--link-hover);
  line-height: 1.4;
  max-width: none;
}

.about-hero .hero-content .about-hero__kicker-bar {
  width: 38px;
  height: 3px;
  border-radius: 2px;
  background: var(--link-hover);
  flex-shrink: 0;
}

.about-hero__breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.6rem;
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 500;
}

.about-hero__breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--medium-grey);
  transition: color 0.2s ease;
}

.about-hero__breadcrumb a:hover {
  color: var(--link-color);
}

.about-hero__breadcrumb [aria-current="page"] {
  color: var(--link-hover);
  font-weight: 600;
}

.about-hero__breadcrumb-sep {
  color: #c5cbd4;
  font-weight: 400;
  user-select: none;
}

.about-hero .hero-content h1 .about-hero__title-muted {
  color: var(--dark-navy);
}

.about-hero .hero-content h1 .about-hero__title-accent {
  color: #006fe6;
}

@media (prefers-reduced-motion: reduce) {
  .about-hero__bg,
  .about-hero__gradient {
    transform: none;
    will-change: auto;
  }
}

@media (max-width: 768px) {
  .about-hero__bg {
    transform: translate3d(0, var(--hero-parallax-y), 0) scale(1.03);
    transform-origin: center center;
    background-position: 72% center;
  }

  .about-hero__gradient {
    transform: translate3d(0, var(--hero-parallax-y), 0) scale(1.03);
    transform-origin: center center;
    background:
      linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.78) 32%,
        rgba(255, 255, 255, 0.22) 60%,
        transparent 92%
      ),
      linear-gradient(105deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.72) 40%, transparent 92%);
  }
}

@media (max-width: 600px) {
  .about-hero__breadcrumb ol {
    font-size: 0.8125rem;
    margin-bottom: 1.15rem;
  }
}

/* =========================
   ABOUT — Our Story block (below page hero)
========================= */
.our-story {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 8vw, 96px);
  background: var(--section-white);
  scroll-margin-top: calc(88px + env(safe-area-inset-top, 0px));
}

.our-story__wrap {
  margin-inline: var(--nav-edge-pull);
  min-width: 0;
}

.our-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
  margin-bottom: clamp(40px, 6vw, 56px);
}

.our-story__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 22px;
}

.our-story__badge svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.our-story__title {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--dark-navy);
  margin: 0 0 18px;
}

.our-story__title-line {
  display: block;
}

.our-story__title-accent {
  display: block;
  color: var(--secondary-blue);
}

.our-story__rule {
  display: block;
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: var(--secondary-blue);
  margin-bottom: 22px;
}

.our-story__lead {
  font-size: clamp(16px, 1.85vw, 18px);
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 560px;
}

.our-story__cta {
  margin-top: 28px;
}

.our-story__figure {
  margin: 0;
  min-width: 0;
}

.our-story__photo-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(var(--navy-rgb), 0.14);
}

.our-story__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.our-story__quote {
  position: absolute;
  left: clamp(12px, 2vw, 22px);
  bottom: clamp(12px, 2vw, 22px);
  max-width: min(340px, calc(100% - 24px));
  margin: 0;
  padding: clamp(14px, 2vw, 18px) clamp(16px, 2.2vw, 20px);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(var(--navy-rgb), 0.16);
}

.our-story__quote-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(var(--secondary-rgb), 0.14);
  color: var(--blue-primary);
  margin-bottom: 10px;
}

.our-story__quote-icon svg {
  width: 18px;
  height: 18px;
}

.our-story__quote-text {
  font-size: clamp(14px, 1.5vw, 15px);
  line-height: 1.55;
  font-weight: 500;
  color: var(--navy-heading);
  margin: 0;
}

.our-story__quote-sig {
  display: block;
  margin-top: 12px;
  height: 14px;
  background: no-repeat left center / 72px 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 24' fill='none'%3E%3Cpath d='M4 16c18-10 38-14 58-10 12 2 22 8 28 18' stroke='%23003b8e' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
  opacity: 0.85;
}

.os-reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--os-delay, 0s);
}

.our-story.is-revealed .os-reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .os-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.our-story-stats {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: clamp(8px, 1.5vw, 16px);
  padding: clamp(22px, 3vw, 30px) clamp(16px, 2.5vw, 28px);
  background: var(--light-grey);
  border: 1px solid var(--border-light);
  border-radius: 22px;
  scroll-margin-top: calc(96px + env(safe-area-inset-top, 0px));
}

.our-story-stat {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 0 8px;
  justify-content: center;
}

.our-story-stat__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--icon-bg);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.our-story-stat__icon svg {
  width: 24px;
  height: 24px;
  color: var(--blue-primary);
}

.our-story-stat__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.our-story-stat__num {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: var(--blue-primary);
  line-height: 1.05;
  font-variant-numeric: tabular-nums slashed-zero;
}

.our-story-stat__label {
  font-size: clamp(12px, 1.35vw, 14px);
  font-weight: 500;
  color: var(--muted);
  line-height: 1.35;
}

.our-story-stat__divider {
  width: 1px;
  flex-shrink: 0;
  background: rgba(var(--navy-rgb), 0.12);
  align-self: stretch;
  margin: 6px 0;
}

@media (max-width: 992px) {
  .our-story__grid {
    grid-template-columns: 1fr;
  }

  .our-story__figure {
    order: -1;
  }

  .our-story-stats {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: clamp(16px, 3vw, 22px);
  }

  .our-story-stat__divider {
    display: none;
  }

  .our-story-stat {
    flex: 1 1 calc(50% - 12px);
    justify-content: flex-start;
    padding: 0 12px;
  }
}

@media (max-width: 520px) {
  .our-story-stat {
    flex: 1 1 100%;
  }

  .our-story-stat__label br {
    display: none;
  }
}

/* =========================
   ABOUT — Why Choose Us
========================= */
.why-choose {
  --wc-bg: var(--deep-band-bg);
  --wc-stats-bg: rgba(11, 21, 48, 0.94);

  position: relative;
  z-index: 2;
  padding: clamp(64px, 9vw, 104px) 0 clamp(64px, 9vw, 104px);
  background: var(--wc-bg);
  color: rgba(255, 255, 255, 0.94);
  overflow: hidden;
  scroll-margin-top: calc(88px + env(safe-area-inset-top, 0px));
}

.why-choose > .container {
  position: relative;
  z-index: 1;
}

.why-choose__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.why-choose__map {
  position: absolute;
  left: 50%;
  top: clamp(40px, 8vw, 72px);
  transform: translateX(-50%);
  width: min(880px, 108%);
  height: auto;
  color: #ffffff;
  opacity: 0.55;
}

.why-choose__wrap {
  position: relative;
  z-index: 1;
  margin-inline: var(--nav-edge-pull);
  min-width: 0;
}

.why-choose__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 52px);
}

.why-choose__badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 22px);
  margin-bottom: 22px;
}

.why-choose__badge-line {
  flex: 1 1 72px;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.why-choose__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.why-choose__badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--secondary-blue);
}

.why-choose__title {
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 18px;
  color: #ffffff;
}

.why-choose__title-line {
  display: inline;
}

.why-choose__title-accent {
  color: var(--secondary-blue);
}

.why-choose__lead {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 24px);
  margin-bottom: clamp(40px, 6vw, 52px);
}

.why-choose-card {
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 2vw, 18px);
  padding: clamp(20px, 2.6vw, 26px);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  box-shadow:
    0 4px 22px rgba(var(--navy-rgb), 0.07),
    0 1px 3px rgba(var(--navy-rgb), 0.05);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

@media (hover: hover) {
  .why-choose.is-revealed .why-choose-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--primary-rgb), 0.22);
    box-shadow:
      0 20px 44px rgba(var(--primary-rgb), 0.14),
      0 6px 16px rgba(var(--navy-rgb), 0.08);
  }
}

.why-choose-card__icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(var(--primary-rgb), 0.09);
  color: var(--blue-primary);
}

.why-choose-card__icon svg {
  width: 26px;
  height: 26px;
}

.why-choose-card__body {
  min-width: 0;
}

.why-choose-card__name {
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
  color: var(--dark-navy);
  letter-spacing: -0.01em;
}

.why-choose-card__desc {
  font-size: clamp(14px, 1.45vw, 15px);
  line-height: 1.62;
  margin: 0;
  color: var(--muted);
}

.wc-reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--wc-delay, 0s);
}

.why-choose.is-revealed .wc-reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .wc-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .why-choose.is-revealed .why-choose-card:hover {
    transform: none;
  }
}

.why-choose-stats {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: clamp(10px, 2vw, 18px);
  padding: clamp(24px, 3.5vw, 32px) clamp(18px, 3vw, 28px);
  background: var(--wc-stats-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
}

.why-choose-stat {
  flex: 1 1 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  padding: 0 10px;
}

.why-choose-stat__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(var(--secondary-rgb), 0.16);
  color: var(--secondary-blue);
}

.why-choose-stat__icon svg {
  width: 24px;
  height: 24px;
}

.why-choose-stat__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.why-choose-stat__num {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  font-variant-numeric: tabular-nums slashed-zero;
}

.why-choose-stat__kicker {
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 700;
  color: var(--secondary-blue);
  line-height: 1.25;
}

.why-choose-stat__desc {
  font-size: clamp(12px, 1.25vw, 13px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.why-choose-stat__divider {
  width: 1px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.12);
  align-self: stretch;
  margin: 6px 0;
}

@media (max-width: 1100px) {
  .why-choose__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .why-choose-stats {
    flex-wrap: wrap;
    row-gap: clamp(20px, 4vw, 28px);
  }

  .why-choose-stat__divider {
    display: none;
  }

  .why-choose-stat {
    flex: 1 1 calc(50% - 14px);
  }
}

@media (max-width: 560px) {
  .why-choose__grid {
    grid-template-columns: 1fr;
  }

  .why-choose-stat {
    flex: 1 1 100%;
    align-items: center;
  }

  .why-choose__badge-line {
    max-width: 56px;
  }

  .why-choose__title-line {
    display: block;
  }
}

/* =========================
   ABOUT — Meet Our Team
========================= */
.meet-team {
  position: relative;
  z-index: 2;
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 7vw, 80px);
  background: var(--section-white);
  scroll-margin-top: calc(88px + env(safe-area-inset-top, 0px));
}

.meet-team__wrap {
  margin-inline: var(--nav-edge-pull);
  min-width: 0;
}

.meet-team__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 6vw, 52px);
}

.meet-team__badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 22px);
  margin-bottom: 22px;
}

.meet-team__badge-line {
  flex: 1 1 72px;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--navy-rgb), 0.22), transparent);
}

.meet-team__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-primary);
  white-space: nowrap;
}

.meet-team__badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.meet-team__title {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--blue-primary);
}

.meet-team__rule {
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background: var(--blue-primary);
  margin: 0 auto 22px;
}

.meet-team__lead {
  font-size: clamp(16px, 1.85vw, 18px);
  line-height: 1.65;
  margin: 0;
  color: var(--muted);
}

.meet-team__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
  align-items: stretch;
}

.meet-team-card {
  background: var(--white);
  border-radius: 18px;
  overflow: visible;
  box-shadow:
    0 10px 36px rgba(var(--navy-rgb), 0.09),
    0 2px 8px rgba(var(--navy-rgb), 0.05);
  border: 1px solid var(--border-light);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

@media (hover: hover) {
  .meet-team.is-revealed .meet-team-card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 18px 44px rgba(var(--navy-rgb), 0.12),
      0 6px 14px rgba(var(--navy-rgb), 0.06);
  }
}

.meet-team-card__photo-wrap {
  position: relative;
  margin-bottom: 28px;
}

.meet-team-card__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 17px 17px 0 0;
}

.meet-team-card__pin {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-primary);
  color: var(--white);
  border: 4px solid var(--white);
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.35);
  display: grid;
  place-items: center;
}

.meet-team-card__pin svg {
  width: 24px;
  height: 24px;
}

.meet-team-card__body {
  padding: 0 clamp(16px, 2vw, 20px) clamp(18px, 2.4vw, 22px);
  text-align: center;
}

.meet-team-card__name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 6px;
  line-height: 1.25;
}

.meet-team-card__role {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-primary);
  margin: 0 0 12px;
}

.meet-team-card__bio {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 16px;
}

.meet-team-card__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.meet-team-card__social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-medium);
  background: var(--white);
  color: var(--medium-grey);
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease;
}

.meet-team-card__social-btn svg {
  width: 16px;
  height: 16px;
}

.meet-team-card__social-btn:hover {
  color: var(--blue-primary);
  border-color: rgba(var(--primary-rgb), 0.35);
  background: rgba(var(--primary-rgb), 0.06);
  transform: translateY(-2px);
}

.meet-team-card__social-btn:focus-visible {
  outline: 2px solid var(--blue-primary);
  outline-offset: 2px;
}

/* =========================
   ABOUT — Plan trip CTA band
========================= */
.plan-trip-cta {
  position: relative;
  z-index: 2;
  padding: clamp(20px, 4vw, 40px) 0 clamp(64px, 9vw, 100px);
  background: #f8fafc;
  scroll-margin-top: calc(88px + env(safe-area-inset-top, 0px));
}

.plan-trip-cta .container {
  min-width: 0;
}

.plan-trip-cta__shell {
  margin-inline: var(--nav-edge-pull);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(120px, 0.42fr) minmax(240px, 1.05fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
  padding: clamp(22px, 3.5vw, 34px) clamp(20px, 3vw, 36px);
  background: #e8f4fc;
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(var(--navy-rgb), 0.08);
}

.plan-trip-cta__col {
  min-width: 0;
}

.plan-trip-cta__col--copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.plan-trip-cta__icon-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(var(--secondary-rgb), 0.18);
  color: var(--blue-primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.plan-trip-cta__icon-ring svg {
  width: 24px;
  height: 24px;
}

.plan-trip-cta__title {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--blue-primary);
  margin: 0;
}

.plan-trip-cta__text {
  font-size: clamp(14px, 1.55vw, 16px);
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 340px;
}

.plan-trip-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.plan-trip-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border-radius: 14px;
  padding: 14px 20px;
  cursor: pointer;
  transition:
    background 0.26s ease,
    color 0.26s ease,
    transform 0.22s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}

.plan-trip-cta__btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.plan-trip-cta__btn--whatsapp {
  background: var(--blue-primary);
  border: 2px solid transparent;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(var(--primary-rgb), 0.35);
}

.plan-trip-cta__btn--whatsapp:hover {
  background: var(--blue-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(var(--primary-rgb), 0.42);
}

.plan-trip-cta__btn--whatsapp:focus-visible {
  outline: 2px solid var(--dark-navy);
  outline-offset: 3px;
}

.plan-trip-cta__btn--call {
  background: var(--white);
  border: 2px solid var(--blue-primary);
  color: var(--blue-primary);
  text-decoration: none;
}

.plan-trip-cta__btn--call:hover {
  background: rgba(var(--secondary-rgb), 0.12);
  transform: translateY(-2px);
}

.plan-trip-cta__btn--call:focus-visible {
  outline: 2px solid var(--blue-primary);
  outline-offset: 3px;
}

.plan-trip-cta__col--visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.plan-trip-cta__skew {
  width: 100%;
  max-width: 280px;
  height: clamp(200px, 28vw, 280px);
  transform: skewX(-10deg);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(var(--navy-rgb), 0.15);
}

.plan-trip-cta__skew img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: skewX(10deg) scale(1.14);
  display: block;
}

.plan-trip-cta__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.plan-trip-cta__feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.plan-trip-cta__feat-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-primary);
  color: var(--white);
  display: grid;
  place-items: center;
}

.plan-trip-cta__feat-icon svg {
  width: 22px;
  height: 22px;
}

.plan-trip-cta__feat-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 6px;
  line-height: 1.3;
}

.plan-trip-cta__feat-desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

.ab-reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--ab-delay, 0s);
}

.meet-team.is-revealed .ab-reveal,
.plan-trip-cta.is-revealed .ab-reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .ab-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .meet-team.is-revealed .meet-team-card:hover,
  .plan-trip-cta__btn--whatsapp:hover,
  .plan-trip-cta__btn--call:hover {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .meet-team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .plan-trip-cta__shell {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .plan-trip-cta__col--copy {
    align-items: center;
    text-align: center;
  }

  .plan-trip-cta__text {
    max-width: 520px;
  }

  .plan-trip-cta__actions {
    justify-content: center;
  }

  .plan-trip-cta__col--visual {
    order: -1;
    min-height: 0;
    padding: 8px 0;
  }

  .plan-trip-cta__skew {
    max-width: min(360px, 88vw);
    height: clamp(180px, 42vw, 240px);
  }

  .plan-trip-cta__features {
    text-align: left;
  }
}

@media (max-width: 540px) {
  .meet-team__grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 360px;
    margin-inline: auto;
  }

  .meet-team__badge-line {
    max-width: 48px;
  }

  .plan-trip-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .plan-trip-cta__btn {
    width: 100%;
  }

  .plan-trip-cta__features {
    grid-template-columns: 1fr;
  }
}

/* =========================
   LEGAL & ERROR PAGES
========================= */
.legal-page {
  padding: clamp(48px, 8vw, 88px) 0 clamp(64px, 10vw, 120px);
  background: var(--section-white);
  scroll-margin-top: calc(72px + env(safe-area-inset-top, 0px));
}

.legal-page .container--narrow {
  max-width: 820px;
}

.legal-doc__title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-heading);
  margin-bottom: 0.35rem;
}

.legal-doc__updated {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: clamp(1.75rem, 4vw, 2.25rem);
}

.legal-doc__section {
  margin-bottom: clamp(1.35rem, 3vw, 1.85rem);
}

.legal-doc__section h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 0.65rem;
}

.legal-doc__section p,
.legal-doc__section li {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--navy);
}

.legal-doc__section ul {
  list-style: disc;
  padding-left: 1.35rem;
  margin: 0.35rem 0 0;
}

.legal-doc__section ul li + li {
  margin-top: 0.35rem;
}

.legal-doc__back {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.error-page {
  padding: clamp(72px, 12vw, 120px) 0 clamp(64px, 10vw, 100px);
  background: var(--section-light);
  text-align: center;
}

.error-page__code {
  font-size: clamp(4rem, 14vw, 7rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(var(--primary-rgb), 0.2);
  margin-bottom: 0.25rem;
}

.error-page__title {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--navy-heading);
  margin-bottom: 0.75rem;
}

.error-page__lead {
  font-size: 1rem;
  line-height: 1.62;
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto 2rem;
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* =========================
   CONTACT — cinematic hero + overlapping quick-contact cards

   Structure:
     section.page-hero.contact-hero
       > .contact-hero__bg (inline background-image)
       > .contact-hero__gradient
       > .container.contact-hero__top > .contact-hero__copy
       > .container.contact-hero__cards-anchor > .contact-quick-cards
========================= */
.contact-hero.page-hero {
  isolation: isolate;
  overflow: visible;
  z-index: 5;
  background: #0f1f33;
  padding-top: clamp(72px, 10vw, 110px);
  padding-bottom: clamp(56px, 8vw, 100px);
  min-height: clamp(460px, 68vh, 720px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0f1f33;
  background-repeat: no-repeat;
  background-size: cover;
  /* Slightly higher anchor so more of the sky / upper scene shows */
  background-position: center 38%;
  transform: translate3d(0, var(--hero-parallax-y), 0) scale(1.06);
  transform-origin: 50% 40%;
  will-change: transform;
}

.contact-hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transform: translate3d(0, var(--hero-parallax-y), 0) scale(1.06);
  transform-origin: 50% 40%;
  will-change: transform;
  background:
    linear-gradient(
      to top,
      rgba(245, 247, 250, 1) 0%,
      rgba(245, 247, 250, 0.92) 12%,
      rgba(15, 28, 45, 0) 42%
    ),
    linear-gradient(
      105deg,
      rgba(12, 24, 44, 0.88) 0%,
      rgba(12, 24, 44, 0.55) 46%,
      rgba(12, 24, 44, 0.2) 100%
    );
}

.contact-hero__top {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.contact-hero__copy {
  max-width: min(720px, 100%);
  padding-bottom: clamp(4px, 1vw, 10px);
}

.contact-hero__overline {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary-blue);
}

.contact-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.95rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: var(--leading-tight-heading);
  color: var(--white);
  text-wrap: balance;
}

.contact-hero__lead {
  margin: 0;
  font-size: clamp(1rem, 1.9vw, 1.1875rem);
  line-height: var(--leading-lead);
  color: rgba(255, 255, 255, 0.9);
  max-width: var(--measure-readable);
}

.contact-hero__cards-anchor {
  position: relative;
  z-index: 4;
  /* Gentle overlap onto the faded strip only — avoids covering headline */
  margin-top: clamp(-1.75rem, -3vw, -0.75rem);
}

@media (max-width: 768px) {
  .contact-hero__cards-anchor {
    margin-top: clamp(0.35rem, 2vw, 0.85rem);
  }
}

.contact-quick-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: var(--white);
  border-radius: 18px;
  box-shadow:
    0 4px 6px rgba(10, 31, 52, 0.04),
    0 24px 56px rgba(10, 31, 52, 0.12),
    0 0 0 1px rgba(10, 31, 52, 0.05);
  padding: clamp(22px, 3vw, 34px) 0;
  overflow: hidden;
}

.contact-quick-card {
  padding: clamp(14px, 2vw, 22px) clamp(16px, 2.2vw, 28px);
  text-align: center;
}

.contact-quick-card + .contact-quick-card {
  border-left: 1px solid var(--border-light);
}

.contact-quick-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(var(--secondary-rgb), 0.14);
  color: var(--primary-blue);
}

.contact-quick-card:nth-child(2) .contact-quick-card__icon {
  color: var(--secondary-blue);
}

.contact-quick-card__icon svg {
  width: 24px;
  height: 24px;
}

.contact-quick-card__name {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.contact-quick-card__primary {
  display: block;
  margin: 0 auto 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--link-hover);
  word-break: break-word;
}

.contact-quick-card__primary:hover {
  color: var(--secondary-blue);
}

.contact-quick-card__primary--text {
  color: var(--text-dark);
  font-weight: 600;
  cursor: default;
}

.contact-quick-card__meta {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--medium-grey);
}

@media (prefers-reduced-motion: reduce) {
  .contact-hero__bg,
  .contact-hero__gradient {
    transform: none;
    will-change: auto;
  }
}

@media (max-width: 992px) and (min-width: 601px) {
  .contact-quick-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0;
  }

  .contact-quick-card {
    padding: clamp(20px, 3vw, 28px);
  }

  .contact-quick-card + .contact-quick-card {
    border-left: 0;
  }

  /* 2×2 grid dividers */
  .contact-quick-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border-light);
  }

  .contact-quick-card:nth-child(odd) {
    border-right: 1px solid var(--border-light);
  }
}

@media (max-width: 600px) {
  .contact-quick-cards {
    grid-template-columns: 1fr;
    padding: clamp(14px, 4vw, 22px);
    gap: 0;
  }

  .contact-quick-card + .contact-quick-card {
    border-left: 0;
    border-top: 1px solid var(--border-light);
    padding-top: clamp(18px, 4vw, 24px);
    margin-top: clamp(14px, 4vw, 22px);
  }
}

/* CONTACT — message form + hear / office (below hero + quick cards)
   Stacks above .contact-hero (z-index: 5): parallax scaled bg must not paint over panels. */
.contact-main {
  position: relative;
  z-index: 6;
  /* Tight to hero: same bg as faded hero foot */
  padding: clamp(18px, 3.2vw, 36px) 0 clamp(64px, 9vw, 96px);
  background: var(--section-light);
  scroll-margin-top: calc(88px + env(safe-area-inset-top, 0px));
}

.contact-main__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 3.5vw, 40px);
  align-items: start;
}

.contact-main__h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--dark-navy);
  line-height: var(--leading-tight-heading);
}

.contact-main__h2--minor {
  font-size: clamp(1.25rem, 2.1vw, 1.5rem);
}

.contact-main__lead,
.contact-main__sublead {
  margin: 0 0 1.35rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--medium-grey);
  max-width: 36rem;
}

.contact-main__sublead {
  margin-bottom: 1.25rem;
}

.contact-main__quote-hint {
  margin: -0.35rem 0 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-dark);
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  max-width: 36rem;
}

.contact-main__panel {
  background: var(--white);
  border-radius: 18px;
  padding: clamp(22px, 3.2vw, 32px);
  box-shadow:
    0 1px 2px rgba(10, 31, 52, 0.04),
    0 16px 40px rgba(10, 31, 52, 0.08);
  border: 1px solid rgba(10, 31, 52, 0.06);
}

.contact-main__panel--form {
  height: 100%;
}

.contact-main__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-field label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dark-navy);
  letter-spacing: 0.02em;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-field textarea {
  resize: vertical;
  min-height: 148px;
  line-height: 1.55;
}

.contact-field--select select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #9ca3af;
}

.contact-field input:focus-visible,
.contact-field select:focus-visible,
.contact-field textarea:focus-visible {
  outline: none;
  border-color: rgba(var(--primary-rgb), 0.48);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.13);
}

.contact-main__submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.35rem;
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 1rem;
}

.contact-main__col--aside {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 28px);
}

.contact-main__panel--hear .contact-main__lead {
  max-width: none;
}

.cm-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--cm-delay, 0s);
}

.contact-main.is-revealed .cm-reveal {
  opacity: 1;
  transform: translateY(0);
}

.contact-hear-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}

.contact-hear-list__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-hear-list__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(var(--secondary-rgb), 0.12);
  color: var(--primary-blue);
}

.contact-hear-list__icon svg {
  width: 22px;
  height: 22px;
}

.contact-hear-list__title {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.contact-hear-list__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.58;
  color: var(--medium-grey);
}

.contact-office {
  background: var(--white);
  border-radius: 18px;
  padding: clamp(22px, 3.2vw, 28px);
  box-shadow:
    0 1px 2px rgba(10, 31, 52, 0.04),
    0 16px 40px rgba(10, 31, 52, 0.08);
  border: 1px solid rgba(10, 31, 52, 0.06);
}

.contact-office__heading {
  margin: 0 0 1.15rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.contact-office__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(18px, 2.8vw, 26px);
  align-items: stretch;
}

.contact-office__facts {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-office__fact {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-office__fact-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--primary-blue);
}

.contact-office__fact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-office__fact-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver-grey);
  margin-bottom: 4px;
}

.contact-office__fact-value {
  display: block;
  font-size: 0.9075rem;
  font-weight: 600;
  line-height: 1.48;
  color: var(--text-dark);
}

.contact-office__fact-value--link {
  color: var(--link-hover);
}

.contact-office__fact-value--link:hover {
  color: var(--secondary-blue);
}

.contact-office__map-wrap {
  border-radius: 14px;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid var(--border-light);
  background: var(--light-grey);
}

.contact-office__map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .contact-main .cm-reveal {
    opacity: 1;
    transform: none;
    transition-duration: 0.01ms;
  }
}

@media (max-width: 992px) {
  .contact-main__grid {
    grid-template-columns: 1fr;
  }

  .contact-office__layout {
    grid-template-columns: 1fr;
  }

  .contact-office__map-wrap {
    min-height: 260px;
  }

  .contact-office__map {
    min-height: 260px;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 600px) {
  .contact-hear-list__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
}

/* CONTACT — FAQ accordion (two columns on wide screens) */
.contact-faq {
  position: relative;
  z-index: 6;
  padding: clamp(48px, 7vw, 88px) 0 clamp(64px, 9vw, 100px);
  background: var(--section-white);
  border-top: 1px solid rgba(10, 31, 52, 0.06);
  scroll-margin-top: calc(88px + env(safe-area-inset-top, 0px));
}

.contact-faq__header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  margin-bottom: clamp(26px, 4vw, 36px);
}

.contact-faq__title {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
  font-weight: 700;
  color: var(--dark-navy);
  line-height: var(--leading-tight-heading);
}

.contact-faq__all {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--secondary-blue);
  text-decoration: underline;
  text-underline-offset: 0.25em;
  text-decoration-thickness: 1px;
}

.contact-faq__all:hover {
  color: var(--link-hover);
}

.contact-faq__all:focus-visible {
  outline: 2px solid var(--premium-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.contact-faq__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 14px) clamp(22px, 3vw, 36px);
  align-items: start;
}

.contact-faq__col {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 14px);
}

.cf-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--cf-delay, 0s);
}

.contact-faq.is-revealed .cf-reveal {
  opacity: 1;
  transform: translateY(0);
}

.contact-faq__item {
  border: 1px solid var(--border-light);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(10, 31, 52, 0.04);
  overflow: hidden;
}

.contact-faq__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: clamp(14px, 2.4vw, 18px) clamp(16px, 2.2vw, 20px);
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9575rem;
  line-height: 1.45;
  color: var(--dark-navy);
}

.contact-faq__summary::-webkit-details-marker {
  display: none;
}

.contact-faq__summary:focus-visible {
  outline: 2px solid var(--premium-gold);
  outline-offset: 2px;
  border-radius: 8px;
}

.contact-faq__q {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.contact-faq__chevron {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(var(--secondary-rgb), 0.1);
  color: var(--primary-blue);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-faq__chevron svg {
  width: 18px;
  height: 18px;
}

.contact-faq__item[open] .contact-faq__chevron {
  transform: rotate(180deg);
}

.contact-faq__body {
  padding: 0 clamp(16px, 2.2vw, 20px) clamp(14px, 2.4vw, 18px);
  border-top: 1px solid var(--border-light);
}

.contact-faq__a {
  margin: 0;
  padding-top: 12px;
  font-size: 0.9rem;
  line-height: 1.62;
  color: var(--medium-grey);
}

@media (prefers-reduced-motion: reduce) {
  .contact-faq .cf-reveal {
    opacity: 1;
    transform: none;
    transition-duration: 0.01ms;
  }

  .contact-faq__chevron {
    transition-duration: 0.01ms;
  }
}

@media (max-width: 768px) {
  .contact-faq__cols {
    grid-template-columns: 1fr;
  }
}

/* CONTACT — compact CTA ribbon before footer (navy copy + tropical image) */
.contact-plan-cta {
  position: relative;
  z-index: 6;
  padding: 0 0 clamp(36px, 6vw, 56px);
  background: var(--section-white);
  scroll-margin-top: calc(88px + env(safe-area-inset-top, 0px));
}

.contact-plan-cta .container {
  min-width: 0;
}

.contact-plan-cta__banner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: stretch;
  min-height: min(280px, 42vw);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(10, 31, 52, 0.12);
}

.contact-plan-cta__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  padding: clamp(24px, 4vw, 44px) clamp(22px, 4vw, 48px);
  background: linear-gradient(135deg, var(--deep-band-bg) 0%, #0f2244 55%, #122a54 100%);
  color: #ffffff;
}

.contact-plan-cta__title {
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.contact-plan-cta__text {
  margin: 0;
  max-width: 28rem;
  font-size: clamp(0.95rem, 1.45vw, 1.05rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.contact-plan-cta__btn {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.85rem 1.6rem;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff !important;
  background: var(--secondary-blue);
  box-shadow: 0 10px 28px rgba(0, 168, 232, 0.35);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.contact-plan-cta__btn svg {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
}

.contact-plan-cta__btn:hover {
  transform: translateY(-2px);
  background: var(--link-hover);
  box-shadow: 0 14px 34px rgba(0, 168, 232, 0.42);
  color: #ffffff !important;
}

.contact-plan-cta__btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.contact-plan-cta__media {
  position: relative;
  min-height: 200px;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-plan-cta__media-fade {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--deep-band-bg) 0%,
    rgba(11, 21, 48, 0.55) 18%,
    rgba(11, 21, 48, 0.12) 48%,
    transparent 76%
  );
}

.contact-plan-cta .cpa-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--cpa-delay, 0s);
}

.contact-plan-cta.is-revealed .cpa-reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .contact-plan-cta .cpa-reveal {
    opacity: 1;
    transform: none;
    transition-duration: 0.01ms;
    transition-delay: 0ms;
  }

  .contact-plan-cta__btn:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .contact-plan-cta__banner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-plan-cta__media {
    min-height: 200px;
    order: -1;
  }

  .contact-plan-cta__media-fade {
    background: linear-gradient(
      180deg,
      var(--deep-band-bg) 0%,
      rgba(11, 21, 48, 0.22) 32%,
      transparent 72%
    );
  }
}

/* ---------- Contact form (server POST), honeypot & flashes ---------- */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-flash-wrap {
  padding-top: 1rem;
  padding-bottom: 0;
}

.contact-form-alert {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-form-alert--success {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--text-dark);
}

.contact-form-alert--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: var(--text-dark);
}

.contact-form-alert a {
  color: var(--link-color);
  font-weight: 600;
}

/* ---------- Home service cards “learn more” ---------- */
.service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-blue);
  text-decoration: none;
}

.service-card__more svg {
  width: 1rem;
  height: 1rem;
}

.service-card__more:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

/* ---------- Travel services CTA extra button ---------- */
.travel-services__btn--quote {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.88);
}

.travel-services__btn--quote svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke: currentColor;
}

.travel-services__btn--quote:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.travel-services__btn--quote:focus-visible {
  outline: 2px solid var(--premium-gold);
  outline-offset: 3px;
}

/* ---------- Services hub & detail pages ---------- */
.services-hub-page {
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

/* Hub hero — same page-hero + full-bleed photo pattern as Contact / About */
.services-hero.page-hero {
  isolation: isolate;
  overflow: visible;
  z-index: 5;
  background: #061325;
  padding-top: clamp(72px, 10vw, 108px);
  padding-bottom: clamp(48px, 7vw, 80px);
  min-height: clamp(420px, 66vh, 720px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Parallax photo + overlay stay inside this box (same idea as home .hero__media) */
.services-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.services-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #061325;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 40%;
  transform: translate3d(0, var(--hero-parallax-y), 0) scale(1.06);
  transform-origin: 55% 38%;
  will-change: transform;
}

.services-hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transform: translate3d(0, var(--hero-parallax-y), 0) scale(1.06);
  transform-origin: 55% 38%;
  will-change: transform;
  background:
    linear-gradient(
      to top,
      rgba(245, 247, 250, 1) 0%,
      rgba(245, 247, 250, 0.9) 10%,
      rgba(6, 19, 37, 0) 38%
    ),
    linear-gradient(
      100deg,
      rgba(0, 27, 61, 0.92) 0%,
      rgba(0, 27, 61, 0.55) 48%,
      rgba(0, 27, 61, 0.15) 100%
    );
}

.services-hero__stage {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: flex-end;
  width: 100%;
  padding-bottom: clamp(0.75rem, 2vw, 1.5rem);
}

.services-hero .hero-wrapper.services-hero__hero-wrapper {
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
  align-items: flex-end;
}

.services-hero .hero-content {
  max-width: 720px;
}

.services-hero .about-hero__breadcrumb ol {
  margin-bottom: 1.25rem;
}

.services-hero .about-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.services-hero .about-hero__breadcrumb a:hover {
  color: var(--secondary-blue);
}

.services-hero .about-hero__breadcrumb [aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

.services-hero .about-hero__breadcrumb-sep {
  color: rgba(255, 255, 255, 0.45);
}

.services-hero__overline {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary-blue);
}

.services-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 700;
  line-height: var(--leading-tight-heading);
  color: #fff;
  text-wrap: balance;
}

.services-hero__title-plain {
  color: #fff;
}

.services-hero__title-accent {
  color: var(--secondary-blue);
}

.services-hero__lead {
  margin: 0 0 1.5rem;
  font-size: clamp(1rem, 1.9vw, 1.2rem);
  line-height: var(--leading-lead);
  color: rgba(255, 255, 255, 0.93);
  max-width: var(--measure-readable);
}

/* Nested .hero-content p uses global muted gray — wins over single-class .services-hero__lead */
.services-hero.page-hero .hero-content p.services-hero__lead {
  color: rgba(255, 255, 255, 0.93);
}

.services-hero__trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.25rem;
  max-width: 640px;
}

@media (min-width: 768px) {
  .services-hero__trust {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
  }
}

.services-hero__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
}

@media (min-width: 768px) {
  .services-hero__trust-item {
    font-size: 0.8125rem;
  }
}

.services-hero__trust-ic {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--secondary-blue);
}

.services-hero__trust-ic svg {
  width: 17px;
  height: 17px;
}

.services-hero__cta-anchor {
  position: relative;
  z-index: 4;
  margin-top: clamp(-1rem, -2vw, -0.5rem);
}

@media (max-width: 768px) {
  .services-hero__cta-anchor {
    margin-top: 0.85rem;
  }
}

.services-hero__float {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: clamp(18px, 2.8vw, 26px) clamp(20px, 3vw, 32px);
  background: var(--white);
  border-radius: 16px;
  box-shadow:
    0 4px 12px rgba(10, 31, 52, 0.07),
    0 28px 50px rgba(10, 31, 52, 0.1),
    0 0 0 1px rgba(10, 31, 52, 0.05);
}

.services-hero__float-copy p {
  margin: 0;
  font-size: 0.975rem;
  line-height: 1.55;
  color: var(--text-dark);
  max-width: 46rem;
}

.services-hero__float-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  background: var(--secondary-blue);
  color: #fff;
  border: none;
  box-shadow: 0 14px 32px rgba(0, 168, 232, 0.25);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.services-hero__float-btn svg {
  width: 20px;
  height: 20px;
}

.services-hero__float-btn:hover {
  background: #009bc9;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 168, 232, 0.3);
}

.services-hero__float-btn:focus-visible {
  outline: 2px solid var(--premium-gold);
  outline-offset: 3px;
}

.services-catalog {
  padding: clamp(52px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  background: var(--white);
}

.services-catalog__heading {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.services-catalog__heading--on-mist {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.services-catalog__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary-blue);
}

.services-catalog__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  font-weight: 700;
  line-height: var(--leading-tight-heading);
  color: var(--dark-navy);
}

.services-catalog__intro {
  margin: 0;
  font-size: 1rem;
  line-height: var(--leading-lead);
  color: var(--medium-grey);
}

.services-catalog__grid {
  display: grid;
  gap: clamp(1.15rem, 2.4vw, 1.65rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1200px) {
  .services-catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .services-catalog__grid {
    grid-template-columns: 1fr;
  }
}

.services-offer-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 12px 36px rgba(10, 31, 52, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
  .services-offer-card {
    transition: none;
  }
}

.services-offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(10, 31, 52, 0.11);
}

.services-offer-card__media {
  position: relative;
  overflow: hidden;
}

.services-offer-card__photo {
  aspect-ratio: 16 / 10;
  background-color: var(--section-light);
  background-size: cover;
  background-position: center;
}

.services-offer-card__badge {
  position: absolute;
  left: 12px;
  top: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--secondary-blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.services-offer-card__badge svg {
  width: 21px;
  height: 21px;
}

.services-offer-card__body {
  padding: clamp(1.05rem, 2.2vw, 1.35rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.services-offer-card__title {
  margin: 0 0 0.55rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.services-offer-card__desc {
  margin: 0 0 1rem;
  font-size: 0.895rem;
  line-height: 1.56;
  color: var(--medium-grey);
  flex: 1;
}

.services-offer-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--secondary-blue);
  text-decoration: none;
}

.services-offer-card__more:hover {
  color: var(--link-hover);
}

.services-values {
  padding: clamp(48px, 8vw, 88px) 0;
  background: #eef2f7;
}

.services-values__grid {
  display: grid;
  gap: clamp(1.35rem, 3vw, 2rem);
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .services-values__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.services-values__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  background: rgba(0, 168, 232, 0.12);
  color: var(--primary-blue);
}

.services-values__icon svg {
  width: 26px;
  height: 26px;
}

.services-values__title {
  margin: 0 0 0.4rem;
  font-size: 0.9725rem;
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.3;
}

.services-values__desc {
  margin: 0;
  font-size: 0.8675rem;
  line-height: 1.5;
  color: var(--medium-grey);
}

.services-flow {
  padding: clamp(52px, 8vw, 96px) 0 clamp(52px, 8vw, 96px);
  background: var(--white);
}

.services-flow__track {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 2.75rem 0 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1rem);
}

@media (min-width: 901px) {
  .services-flow__track::before {
    content: "";
    position: absolute;
    top: calc(2.75rem + 44px);
    left: 10%;
    right: 10%;
    height: 0;
    border-top: 2px dashed rgba(0, 168, 232, 0.45);
    z-index: 0;
    pointer-events: none;
  }
}

.services-flow__step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.services-flow__node {
  margin: 0 auto 0.95rem;
  width: 88px;
  height: 88px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), #f0f6fc);
  box-shadow:
    inset 0 0 0 1px rgba(0, 59, 142, 0.12),
    0 12px 34px rgba(10, 31, 52, 0.1);
}

.services-flow__num {
  position: absolute;
  top: -4px;
  right: -2px;
  min-width: 26px;
  height: 26px;
  padding: 0 6px;
  display: grid;
  place-items: center;
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--dark-navy);
  background: #fff;
  border-radius: 999px;
  border: 2px solid rgba(0, 168, 232, 0.45);
  box-shadow: 0 4px 10px rgba(10, 31, 52, 0.08);
}

.services-flow__glyph {
  width: 32px;
  height: 32px;
  color: var(--primary-blue);
}

.services-flow__label {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.3;
}

.services-flow__text {
  margin: 0;
  font-size: 0.8625rem;
  line-height: 1.5;
  color: var(--medium-grey);
}

@media (max-width: 900px) {
  .services-flow__track {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .services-flow__track::before {
    display: none;
  }

  .services-flow__step {
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1rem;
    row-gap: 0.35rem;
    align-items: start;
    padding: 0.5rem 0 1rem;
    border-bottom: 1px solid var(--border-light);
  }

  .services-flow__step:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .services-flow__node {
    margin: 0;
    grid-row: span 2;
    width: 72px;
    height: 72px;
  }

  .services-flow__glyph {
    width: 28px;
    height: 28px;
  }

  .services-flow__label {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
  }

  .services-flow__text {
    grid-column: 2;
    grid-row: 2;
  }
}

.services-ready {
  padding: 0 0 clamp(40px, 6vw, 64px);
  background: var(--white);
}

.services-ready__band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  padding: clamp(1.65rem, 4vw, 2.35rem) clamp(1.5rem, 4vw, 2.75rem);
  border-radius: 18px;
  background: linear-gradient(120deg, #001b3d 0%, #0a2748 55%, #0d3048 100%);
  box-shadow: 0 22px 48px rgba(0, 27, 61, 0.22);
}

.services-ready__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: var(--leading-tight-heading);
}

.services-ready__lead {
  margin: 0;
  font-size: 0.98rem;
  line-height: var(--leading-lead);
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
}

.services-ready__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.78rem 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  background: #fff;
  color: var(--primary-blue);
  border: 2px solid rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.services-ready__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  color: var(--link-hover);
}

.services-ready__btn:focus-visible {
  outline: 2px solid var(--premium-gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .services-hero__bg,
  .services-hero__gradient {
    transform: none;
    will-change: auto;
  }

  .services-offer-card:hover,
  .services-hero__float-btn:hover,
  .services-ready__btn:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .services-hero__bg,
  .services-hero__gradient {
    transform: translate3d(0, var(--hero-parallax-y), 0) scale(1.03);
    transform-origin: center 36%;
    background-position: center 42%;
  }

  .svc-detail-widget__cta {
    justify-content: stretch;
  }

  .svc-detail-widget__submit {
    width: 100%;
  }
}

.service-detail-page.svc-detail-main {
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

/* Service detail: shares services hub hero; inquiry fields live inside the floating card shell */
.services-hero.services-hero--detail .hero-content {
  max-width: 780px;
}

.services-hero.services-hero--detail .services-hero__trust {
  margin-top: clamp(1rem, 2.5vw, 1.35rem);
}

.services-hero.services-hero--detail .services-hero__lead > p {
  margin: 0 0 0.55rem;
  max-width: var(--measure-readable);
  color: #fff;
}

.services-hero.services-hero--detail .services-hero__lead > p:last-child {
  margin-bottom: 0;
}

.services-hero__float--detail {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.services-hero__float--detail .svc-detail-widget__form {
  width: 100%;
}

@media (min-width: 992px) {
  .svc-detail-widget__form--flight {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: clamp(14px, 2vw, 22px);
    row-gap: 1rem;
    align-items: end;
  }

  .svc-detail-widget__form--flight .svc-detail-widget__segmented {
    grid-column: 1 / -1;
  }

  .svc-detail-widget__form--flight .svc-detail-widget__grid--flight {
    grid-column: 1;
    margin-bottom: 0;
  }

  .svc-detail-widget__form--flight .svc-detail-widget__cta {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
  }
}

.svc-detail-widget__segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1rem;
}

.svc-detail-widget__seg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-navy);
  cursor: pointer;
  background: #fafbfc;
}

.svc-detail-widget__seg:has(input:checked) {
  border-color: rgba(0, 168, 232, 0.75);
  background: rgba(0, 168, 232, 0.1);
}

.svc-detail-widget__seg-text {
  user-select: none;
}

.svc-detail-widget__seg:has(input:checked) .svc-detail-widget__seg-text {
  color: var(--link-hover);
}

.svc-detail-widget__seg input {
  accent-color: var(--primary-blue);
}

.svc-detail-widget__grid {
  display: grid;
  gap: 14px clamp(14px, 2vw, 22px);
  margin-bottom: 1rem;
}

.svc-detail-widget__grid--flight {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .svc-detail-widget__grid--flight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.svc-detail-widget__grid--visa,
.svc-detail-widget__grid--hotel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.svc-detail-widget__grid--holiday,
.svc-detail-widget__grid--corp {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 820px) {
  .svc-detail-widget__grid--visa,
  .svc-detail-widget__grid--hotel,
  .svc-detail-widget__grid--holiday,
  .svc-detail-widget__grid--corp {
    grid-template-columns: 1fr;
  }
}

.svc-detail-widget__field--span2 {
  grid-column: span 2;
}

.svc-detail-widget__field--span4 {
  grid-column: span 4;
}

@media (max-width: 820px) {
  .svc-detail-widget__field--span2,
  .svc-detail-widget__field--span4 {
    grid-column: span 1;
  }
}

.svc-detail-widget__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--medium-grey);
  margin-bottom: 6px;
}

.svc-detail-widget__field input,
.svc-detail-widget__field select,
.svc-detail-widget__field textarea {
  width: 100%;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 0.72rem 0.82rem;
  font-size: 0.935rem;
  font-family: inherit;
  background: var(--white);
  color: var(--text-dark);
}

.svc-detail-widget__cta {
  display: flex;
  justify-content: flex-end;
}

.svc-detail-widget__submit {
  appearance: none;
  border: none;
  cursor: pointer;
  padding: 0.82rem clamp(1.5rem, 3vw, 2.75rem);
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.965rem;
  color: #fff;
  background: var(--secondary-blue);
  box-shadow: 0 14px 32px rgba(0, 168, 232, 0.25);
}

.svc-detail-widget__submit:hover {
  background: #009bc9;
}

.svc-detail-widget__submit:focus-visible {
  outline: 2px solid var(--premium-gold);
  outline-offset: 3px;
}

.svc-detail-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.7875rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--secondary-blue);
}

.svc-detail-why {
  padding: clamp(56px, 9vw, 96px) 0 clamp(48px, 8vw, 88px);
  background: var(--white);
}

.svc-detail-why__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

@media (max-width: 992px) {
  .svc-detail-why__layout {
    grid-template-columns: 1fr;
  }
}

.svc-detail-why__visual {
  position: relative;
}

.svc-detail-why__photo {
  aspect-ratio: 10 / 12;
  max-height: min(620px, 78vh);
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 50px rgba(10, 31, 52, 0.12);
}

@media (max-width: 992px) {
  .svc-detail-why__photo {
    aspect-ratio: 16 / 10;
    max-height: none;
  }
}

.svc-detail-why__badge {
  position: absolute;
  left: clamp(14px, 3vw, 22px);
  bottom: clamp(14px, 3vw, 22px);
  max-width: min(94%, calc(100% - 28px));
  padding: clamp(14px, 2.4vw, 18px);
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.42;
  color: #fff;
  background: rgba(0, 59, 142, 0.92);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.svc-detail-why__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  font-weight: 700;
  color: var(--dark-navy);
  line-height: var(--leading-tight-heading);
}

.svc-detail-why__lead {
  margin: 0 0 1.65rem;
  font-size: 1.02rem;
  line-height: var(--leading-lead);
  color: var(--medium-grey);
}

.svc-detail-why__grid {
  display: grid;
  gap: clamp(14px, 2vw, 18px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 992px) {
  .svc-detail-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .svc-detail-why__grid {
    grid-template-columns: 1fr;
  }
}

.svc-detail-why-card {
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1rem clamp(14px, 2vw, 18px);
  background: var(--white);
}

.svc-detail-why-card__ic {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0, 168, 232, 0.14);
  color: var(--primary-blue);
  margin-bottom: 0.65rem;
}

.svc-detail-why-card__ic svg {
  width: 22px;
  height: 22px;
}

.svc-detail-why-card__title {
  margin: 0 0 0.4rem;
  font-size: 0.9625rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.svc-detail-why-card__text {
  margin: 0;
  font-size: 0.835rem;
  line-height: 1.53;
  color: var(--medium-grey);
}

.svc-detail-how {
  padding: clamp(52px, 9vw, 96px) 0 clamp(52px, 8vw, 88px);
  background: #f8fafc;
}

.svc-detail-how__heading {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(2.25rem, 4.5vw, 3rem);
}

.svc-detail-how__title {
  margin: 0;
  font-size: clamp(1.82rem, 3.8vw, 2.52rem);
  font-weight: 700;
  color: var(--dark-navy);
  line-height: var(--leading-tight-heading);
}

.svc-detail-steps {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 2.65rem 0 0;
  display: grid;
  grid-template-columns: repeat(var(--svc-steps-count, 4), minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1rem);
}

@media (min-width: 901px) {
  .svc-detail-steps::before {
    content: "";
    position: absolute;
    top: calc(2.65rem + 41px);
    left: 10%;
    right: 10%;
    border-top: 2px dashed rgba(0, 168, 232, 0.45);
    z-index: 0;
    pointer-events: none;
  }
}

.svc-detail-steps__step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.svc-detail-steps__node {
  margin: 0 auto 0.92rem;
  width: 84px;
  height: 84px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: radial-gradient(circle at 32% 32%, rgba(255, 255, 255, 0.98), #eef4fb);
  box-shadow:
    inset 0 0 0 1px rgba(0, 59, 142, 0.1),
    0 14px 32px rgba(10, 31, 52, 0.1);
}

.svc-detail-steps__glyph {
  width: 31px;
  height: 31px;
  color: var(--primary-blue);
}

.svc-detail-steps__num {
  position: absolute;
  top: -4px;
  right: -1px;
  min-width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  font-size: 0.675rem;
  font-weight: 800;
  color: var(--dark-navy);
  background: #fff;
  border-radius: 999px;
  border: 2px solid rgba(0, 168, 232, 0.45);
}

.svc-detail-steps__label {
  margin: 0 0 0.42rem;
  font-size: 0.9575rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.svc-detail-steps__copy {
  margin: 0 auto;
  max-width: 15rem;
  font-size: 0.8375rem;
  line-height: 1.5;
  color: var(--medium-grey);
}

@media (max-width: 900px) {
  .svc-detail-steps::before {
    display: none;
  }

  .svc-detail-steps {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .svc-detail-steps__step {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1rem;
    text-align: left;
    align-items: start;
    padding: 0.55rem 0 1rem;
    border-bottom: 1px solid rgba(15, 28, 45, 0.08);
  }

  .svc-detail-steps__step:last-child {
    border-bottom: 0;
  }

  .svc-detail-steps__node {
    grid-row: span 2;
    margin: 0;
    width: 72px;
    height: 72px;
  }

  .svc-detail-steps__label {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
  }

  .svc-detail-steps__copy {
    grid-column: 2;
    grid-row: 2;
    max-width: none;
    margin: 0;
  }
}

.svc-detail-partners {
  padding: clamp(36px, 6vw, 56px) 0 clamp(28px, 5vw, 48px);
  background: var(--white);
}

.svc-detail-partners__title {
  margin: 0 0 1.35rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--medium-grey);
}

.svc-detail-partners__strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 2vw, 18px);
}

.svc-detail-partners__name {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  font-size: 0.8375rem;
  font-weight: 700;
  color: var(--dark-navy);
  background: #fafbfd;
}

.svc-detail-faq .contact-faq__header {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.svc-detail-faq .svc-detail-faq__eyebrow {
  margin-bottom: 0.5rem;
}

.svc-detail-faq .contact-faq__title {
  width: 100%;
}

.svc-detail-band-wrap {
  padding: 0 0 clamp(36px, 6vw, 56px);
  background: var(--white);
}

.svc-detail-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  padding: clamp(1.65rem, 4vw, 2.35rem) clamp(1.5rem, 4vw, 2.75rem);
  border-radius: 18px;
  background: linear-gradient(118deg, #001b3d 0%, #0a2748 55%, #0d3048 100%);
  box-shadow: 0 22px 46px rgba(0, 27, 61, 0.2);
}

.svc-detail-band__glyph {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(0, 168, 232, 0.28);
  color: #fff;
}

.svc-detail-band__glyph svg {
  width: 26px;
  height: 26px;
}

.svc-detail-band__copy {
  flex: 1;
  min-width: min(100%, 22rem);
}

.svc-detail-band__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.35rem, 3vw, 1.92rem);
  font-weight: 700;
  color: #fff;
}

.svc-detail-band__lead {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.53;
  color: rgba(255, 255, 255, 0.87);
}

.svc-detail-band__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.78rem 1.42rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
  color: #fff;
  background: var(--secondary-blue);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.svc-detail-band__cta:hover {
  background: #009bc9;
  color: #fff;
}

.svc-detail-band__cta:focus-visible {
  outline: 2px solid var(--premium-gold);
  outline-offset: 3px;
}

.svc-detail-back {
  margin: 1rem 0 0;
  text-align: center;
}

.svc-detail-back__link {
  font-weight: 600;
  color: var(--secondary-blue);
  text-decoration: none;
}

.svc-detail-back__link:hover {
  color: var(--link-hover);
}
