/* West Flight Inter Group — Design System */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@500;600;700;800&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --navy: #07111f;
  --navy-2: #0c1a2e;
  --ink: #101828;
  --muted: #5b6b7f;
  --line: rgba(15, 30, 55, 0.1);
  --paper: #f5f8fc;
  --white: #ffffff;
  --blue: #1d6bff;
  --blue-bright: #3b8aff;
  --ruby: #e11d48;
  --ruby-soft: #ff4d6d;
  --sky: #dceaff;
  --glow: rgba(29, 107, 255, 0.35);
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px rgba(7, 17, 31, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 78px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.section-lead {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42ch;
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  /* Keep filter/backdrop off the header itself — they create a containing
     block that traps position:fixed mobile menu when scrolled. */
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: transparent;
  box-shadow: none;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled::before {
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.site-header > .nav {
  position: relative;
  z-index: 1;
}

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 110;
}

.brand img {
  height: 46px;
  width: auto;
  max-width: min(220px, 52vw);
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

.brand-text {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 550;
  position: relative;
  transition: color 0.25s ease;
}

.nav-item {
  position: relative;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 550;
  cursor: pointer;
  padding: 0;
}

.nav-parent i {
  font-size: 0.65rem;
  transition: transform 0.25s var(--ease);
}

.nav-item.is-open .nav-parent i,
.nav-item:hover .nav-parent i {
  transform: rotate(180deg);
}

.nav-item.active .nav-parent,
.nav-parent:hover {
  color: #fff;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  padding: 0.55rem;
  border-radius: 14px;
  background: rgba(7, 17, 31, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s var(--ease), visibility 0.25s;
  z-index: 120;
}

.nav-item:hover .nav-submenu,
.nav-item.is-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-submenu a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  white-space: nowrap;
}

.nav-submenu a::after {
  display: none !important;
}

.nav-submenu a:hover,
.nav-submenu a.active {
  background: rgba(29, 107, 255, 0.18);
  color: #fff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--ruby), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue) 0%, #4f46e5 55%, var(--ruby) 140%);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 10px 28px var(--glow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(225, 29, 72, 0.3);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: 0.3s var(--ease);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #5b5cf0 60%, var(--ruby));
  color: #fff;
  box-shadow: 0 14px 36px var(--glow);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(225, 29, 72, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(7, 17, 31, 0.18);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s var(--ease) forwards;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.55) 0%, rgba(7, 17, 31, 0.25) 38%, rgba(7, 17, 31, 0.78) 100%),
    linear-gradient(90deg, rgba(7, 17, 31, 0.55) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 3rem) 0 4.5rem;
}

.hero-brand {
  height: clamp(72px, 12vw, 110px);
  width: auto;
  margin-bottom: 1.75rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
  animation: riseIn 0.9s var(--ease) both;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6.2vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 12ch;
  animation: riseIn 0.9s 0.1s var(--ease) both;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, #fff 20%, #9ec0ff 55%, #ff8aa8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  margin-top: 1.15rem;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  animation: riseIn 0.9s 0.2s var(--ease) both;
}

.hero-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
  animation: riseIn 0.9s 0.25s var(--ease) both;
}

.hero-flag {
  --flag-delay: 0s;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem 0.45rem 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  animation:
    flagIn 0.85s var(--flag-delay) var(--ease) both,
    flagFloat 4.8s calc(var(--flag-delay) + 0.9s) ease-in-out infinite;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.hero-flag:nth-child(1) { --flag-delay: 0.05s; }
.hero-flag:nth-child(2) { --flag-delay: 0.12s; }
.hero-flag:nth-child(3) { --flag-delay: 0.19s; }
.hero-flag:nth-child(4) { --flag-delay: 0.26s; }
.hero-flag:nth-child(5) { --flag-delay: 0.33s; }

.hero-flag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 48%,
    transparent 62%
  );
  transform: translateX(-130%);
  animation: flagShine 5.5s calc(var(--flag-delay) + 1.4s) ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-flag::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(59, 138, 255, 0.7),
    rgba(255, 255, 255, 0.15),
    rgba(225, 29, 72, 0.55)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
  animation: flagBorderPulse 3.8s calc(var(--flag-delay) + 1s) ease-in-out infinite;
}

.hero-flag img {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 22px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow:
    0 3px 10px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  transform-origin: center;
  animation: flagWave 3.6s calc(var(--flag-delay) + 1.1s) ease-in-out infinite;
}

.hero-flag span {
  position: relative;
  z-index: 1;
}

.hero-flag:hover {
  transform: translateY(-4px) scale(1.04);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(29, 107, 255, 0.18));
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow:
    0 16px 36px rgba(29, 107, 255, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation-play-state: paused;
}

.hero-flag:hover img {
  animation: flagWaveFast 0.7s ease-in-out infinite;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.45),
    0 0 18px rgba(59, 138, 255, 0.45);
}

.hero-flag:hover::after {
  opacity: 1;
  animation: none;
}

@keyframes flagIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.88);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes flagFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes flagWave {
  0%, 100% { transform: rotate(-2deg) skewX(0deg); }
  50% { transform: rotate(2.5deg) skewX(-2deg); }
}

@keyframes flagWaveFast {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

@keyframes flagShine {
  0%, 70%, 100% { transform: translateX(-130%); }
  85% { transform: translateX(130%); }
}

@keyframes flagBorderPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-flag,
  .hero-flag img,
  .hero-flag::before,
  .hero-flag::after {
    animation: none !important;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
  animation: riseIn 0.9s 0.3s var(--ease) both;
}

.hero-actions .btn {
  padding: 0.8rem 1.2rem;
  font-size: 0.88rem;
}

.hero-orbit {
  position: absolute;
  right: -8%;
  bottom: 12%;
  width: min(38vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
  animation: spinSlow 40s linear infinite;
  z-index: 1;
  opacity: 0.55;
}

.hero-orbit::before,
.hero-orbit::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-bright), var(--ruby));
}

.hero-orbit::before {
  width: 10px;
  height: 10px;
  top: 12%;
  left: 18%;
}

.hero-orbit::after {
  width: 7px;
  height: 7px;
  bottom: 20%;
  right: 14%;
  opacity: 0.7;
}

/* —— Trust strip —— */
.trust {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--ruby));
}

/* —— Services —— */
.services-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2.75rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-item {
  position: relative;
  isolation: isolate;
  min-height: 280px;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transition: transform 0.4s var(--ease);
}

.service-item:hover {
  transform: translateY(-6px);
}

.service-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.7s var(--ease);
}

.service-item:hover img {
  transform: scale(1.08);
}

.service-item::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 20%, rgba(7, 17, 31, 0.88) 100%);
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.service-item p {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  max-width: 34ch;
}

.service-item .link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
}

.service-item .link svg {
  transition: transform 0.25s var(--ease);
}

.service-item:hover .link svg {
  transform: translateX(4px);
}

/* —— Destinations —— */
.destinations {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.destinations::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 107, 255, 0.22), transparent 65%);
  top: -120px;
  right: -80px;
  pointer-events: none;
}

.dest-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.dest-head .section-lead {
  color: rgba(255, 255, 255, 0.68);
}

.dest-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 1rem;
  position: relative;
}

.dest-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
}

.dest-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.dest-tile:hover img {
  transform: scale(1.1);
}

.dest-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.2rem;
  background: linear-gradient(transparent, rgba(7, 17, 31, 0.9));
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.dest-tile span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  opacity: 0.75;
  margin-top: 0.2rem;
}

/* —— Process —— */
.process-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.process-visual {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  min-height: 460px;
}

.process-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.process-steps {
  display: grid;
  gap: 1.35rem;
  margin-top: 2rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--ruby));
}

.step h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

/* —— Packages —— */
.packages {
  background:
    radial-gradient(ellipse at top left, rgba(220, 234, 255, 0.9), transparent 50%),
    var(--paper);
}

.package-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.75rem;
}

.package {
  background: #fff;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(15, 30, 55, 0.06);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease);
}

.package:hover {
  transform: translateY(-6px);
}

.package-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.package-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.package:hover .package-media img {
  transform: scale(1.06);
}

.package-body {
  padding: 1.4rem 1.45rem 1.55rem;
}

.package-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ruby);
  margin-bottom: 0.55rem;
}

.package h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.package p {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0.55rem 0 1.1rem;
}

.package ul {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.package li {
  font-size: 0.9rem;
  color: var(--ink);
  padding-left: 1.15rem;
  position: relative;
}

.package li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--ruby));
}

/* —— Why us —— */
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.why-panel {
  background: var(--navy);
  color: #fff;
  border-radius: calc(var(--radius) + 10px);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.why-panel::before {
  content: '';
  position: absolute;
  inset: auto -20% -40% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.35), transparent 70%);
}

.why-panel img.logo-mark {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  width: auto;
  height: 48px;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.95;
}

.why-panel h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  position: relative;
  max-width: 14ch;
}

.why-panel p {
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 34ch;
  position: relative;
}

.why-list {
  display: grid;
  gap: 1.15rem;
}

.why-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 750;
  margin-bottom: 0.3rem;
}

.why-item p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* —— Testimonials —— */
.quotes {
  background: var(--navy-2);
  color: #fff;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 2.5rem;
}

.quote {
  padding: 1.6rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quote p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.65;
}

.quote footer {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.quote-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.quote strong {
  display: block;
  font-size: 0.92rem;
}

.quote span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

/* —— CTA band —— */
.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.cta-band-media {
  position: absolute;
  inset: 0;
}

.cta-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7, 17, 31, 0.92) 10%, rgba(29, 107, 255, 0.55) 55%, rgba(225, 29, 72, 0.45) 100%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.cta-inner p {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 38ch;
}

/* —— Page hero (inner) —— */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 4.5rem) 0 4rem;
  color: #fff;
  overflow: hidden;
  background: var(--navy);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(29, 107, 255, 0.35), transparent 45%),
    radial-gradient(ellipse at 10% 90%, rgba(225, 29, 72, 0.22), transparent 40%);
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 14ch;
}

.page-hero .btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

/* —— Service detail —— */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.detail-block {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(15, 30, 55, 0.07);
}

.detail-block h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 750;
  margin-bottom: 0.6rem;
}

.detail-block p,
.detail-block li {
  color: var(--muted);
  font-size: 0.96rem;
}

.detail-block ul {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.detail-block li {
  padding-left: 1rem;
  position: relative;
}

.detail-block li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--blue);
}

/* —— Contact —— */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.contact-info > p {
  margin-top: 0.85rem;
  color: var(--muted);
}

.contact-meta {
  margin-top: 2rem;
  display: grid;
  gap: 1.1rem;
}

.meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.meta-item span,
.meta-item a {
  color: var(--muted);
  font-size: 0.95rem;
}

.meta-item a:hover {
  color: var(--blue);
}

.contact-form {
  background: #fff;
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(15, 30, 55, 0.07);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1.5px solid rgba(15, 30, 55, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  background: #fbfcfe;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(29, 107, 255, 0.12);
}

.form-note {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(29, 107, 255, 0.08);
  color: var(--blue);
  font-weight: 600;
  font-size: 0.92rem;
}

.form-success.is-visible {
  display: block;
}

/* —— Footer —— */
.site-footer {
  background: #050b14;
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  height: 64px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 32ch;
  font-size: 0.92rem;
  line-height: 1.65;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.55rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.4rem;
  font-size: 0.82rem;
}

/* —— Reveal animations —— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

/* —— Responsive —— */
@media (max-width: 980px) {
  .service-grid,
  .package-row,
  .quote-grid,
  .detail-grid,
  .why,
  .process-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dest-track:not(.dest-showcase) {
    grid-template-columns: repeat(3, 1fr);
  }

  .dest-track:not(.dest-showcase) .dest-tile:nth-child(4),
  .dest-track:not(.dest-showcase) .dest-tile:nth-child(5) {
    display: none;
  }

  .dest-showcase {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 105;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.35rem;
    padding: calc(var(--nav-h) + 1.25rem) 1.25rem 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(5, 11, 20, 0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links > a {
    display: block;
    width: 100%;
    padding: 0.85rem 0.5rem;
    font-size: 1.2rem;
    color: #fff;
    text-align: left;
  }

  .nav-links > a::after {
    display: none;
  }

  .nav-item {
    width: 100%;
    text-align: left;
  }

  .nav-parent {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 0.5rem;
    font-size: 1.2rem;
    color: #fff;
  }

  /* Kill desktop dropdown transforms — they fight the accordion */
  .nav-submenu,
  .nav-item:hover .nav-submenu {
    position: static;
    left: auto;
    top: auto;
    min-width: 0;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
  }

  .nav-submenu {
    display: none;
    margin: 0 0 0.35rem;
    padding: 0.25rem 0 0.35rem 0.75rem;
    border: 0;
    border-left: 2px solid rgba(29, 107, 255, 0.45);
    border-radius: 0 12px 12px 0;
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-item.is-open .nav-submenu {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-submenu a {
    white-space: normal;
    font-size: 1rem;
    text-align: left;
    padding: 0.7rem 0.85rem;
  }

  .nav-cta {
    margin-top: 0.75rem;
    width: 100%;
    justify-content: center;
    border-radius: 14px;
  }

  .service-grid,
  .package-row,
  .quote-grid,
  .detail-grid,
  .why,
  .process-grid,
  .contact-layout,
  .form-grid,
  .footer-grid,
  .dest-track {
    grid-template-columns: 1fr;
  }

  .dest-track .dest-tile {
    aspect-ratio: 16 / 10;
  }

  .dest-track .dest-tile:nth-child(4),
  .dest-track .dest-tile:nth-child(5) {
    display: block;
  }

  .process-visual {
    min-height: 320px;
  }

  .hero-orbit {
    display: none;
  }

  .brand img {
    height: 38px;
    max-width: min(170px, 48vw);
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .hero-actions {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-actions .btn {
    flex: 1 1 calc(50% - 0.7rem);
    min-width: 140px;
  }

  .btn {
    width: auto;
  }

  .hero-actions .btn-primary {
    flex: 1 1 100%;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 0.85rem;
    border-radius: 50%;
  }
}

/* —— WhatsApp float —— */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 46px rgba(37, 211, 102, 0.55);
}

.whatsapp-float .fa-whatsapp {
  font-size: 1.55rem;
  line-height: 1;
}

/* —— Article / detail —— */
.prose-block {
  max-width: 72ch;
}

.prose-block h2,
.prose-block h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 1.75rem 0 0.65rem;
}

.prose-block p,
.prose-block li {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.prose-block ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.content-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.content-aside {
  background: #fff;
  border: 1px solid rgba(15, 30, 55, 0.07);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}

.content-aside h3 {
  font-family: var(--font-display);
  margin-bottom: 0.75rem;
}

.content-aside li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
}

.content-aside li:last-child {
  border-bottom: 0;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 2.5rem;
}

.guide-card {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15, 30, 55, 0.06);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease);
  color: inherit;
}

.guide-card:hover {
  transform: translateY(-6px);
}

.guide-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.guide-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-card-body {
  padding: 1.2rem 1.25rem 1.4rem;
}

.guide-card-body .flag {
  font-size: 1.35rem;
}

.guide-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0.35rem 0;
}

.guide-card-body p {
  color: var(--muted);
  font-size: 0.92rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.chip {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(29, 107, 255, 0.08);
  color: var(--blue);
}

.alert-success {
  margin-bottom: 1rem;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(29, 107, 255, 0.1);
  color: var(--blue);
  font-weight: 600;
}

@media (max-width: 980px) {
  .content-hero-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .content-aside {
    position: static;
  }
}

