/* ---------- Tokens ---------- */
:root {
  --sand-50: #f0f7fa;
  --sand-100: #e4f0f5;
  --sand-200: #b8d8e8;
  --sand-300: #5ba4c4;
  --sand-400: #3d7a9e;
  --sand-500: #2a5a78;
  --ink-900: #071520;
  --ink-800: #0c1e2e;
  --ink-700: #122a3d;
  --midnight: #081a2a;
  --midnight-2: #0f2940;
  --ember: #1e96d1;
  --line: rgba(224, 240, 248, 0.14);
  --line-strong: rgba(224, 240, 248, 0.28);
  --shadow-lg: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--ink-800);
  color: var(--sand-100);
  line-height: 1.55;
  overflow-x: hidden;
  cursor: none;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: none;
}

.serif {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.mono {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- Custom cursor ---------- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--sand-100);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid var(--sand-200);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s ease,
    height 0.25s ease,
    border-color 0.25s;
}
.cursor-ring.hover {
  width: 64px;
  height: 64px;
  border-color: var(--sand-300);
}
@media (hover: none), (pointer: coarse) {
  body {
    cursor: auto;
  }
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
  button,
  a,
  .field input,
  .field select,
  .field textarea {
    cursor: auto;
  }
  a, button {
    cursor: pointer;
  }
}

/* ---------- Loading screen ---------- */
#loader {
  position: fixed;
  inset: 0;
  background: var(--ink-900);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.9s ease,
    visibility 0.9s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.logo-mark {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg {
  width: 100%;
  height: 100%;
}
.logo-mark .ring {
  stroke: var(--sand-300);
  stroke-width: 1;
  fill: none;
  transform-origin: 60px 60px;
  animation: spin 6s linear infinite;
}
.logo-mark .dune-path {
  stroke: var(--sand-200);
  stroke-width: 1.4;
  fill: none;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: draw 1.6s ease forwards;
}
.logo-mark .sun {
  fill: var(--sand-300);
  transform-origin: 60px 50px;
  animation: pulse 2.2s ease-in-out infinite;
}
.loader-text {
  position: absolute;
  bottom: -46px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--sand-300);
  font-size: 10px;
  letter-spacing: 0.4em;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.7;
  }
}

/* ---------- Top nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  transition:
    background 0.4s ease,
    padding 0.4s ease,
    border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 21, 32, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 48px;
  border-bottom-color: var(--line);
}
.nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display";
  font-size: 20px;
  letter-spacing: 0.04em;
}
.nav .brand .dot {
  width: 8px;
  height: 8px;
  background: var(--sand-300);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--sand-300);
}
.nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav ul a {
  position: relative;
  opacity: 0.78;
  transition: opacity 0.25s;
}
.nav ul a:hover {
  opacity: 1;
}
.nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 1px;
  width: 0;
  background: var(--sand-300);
  transition: width 0.3s ease;
}
.nav ul a:hover::after {
  width: 100%;
}
.nav .lang {
  font-size: 12px;
  letter-spacing: 0.2em;
  opacity: 0.7;
}
.nav .nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav .nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.nav .whatsapp-btn {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}
.nav .whatsapp-btn svg {
  width: 16px;
  height: 16px;
}
.nav .whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.22);
  border-color: rgba(37, 211, 102, 0.5);
  transform: translateY(-1px);
}
.nav .reserve-nav-btn {
  background: var(--sand-300);
  color: var(--ink-900);
}
.nav .reserve-nav-btn:hover {
  background: var(--sand-100);
  transform: translateY(-1px);
}
@media (max-width: 880px) {
  .nav ul {
    display: none;
  }
  .nav {
    padding: 16px 22px;
  }
  .nav.scrolled {
    padding: 12px 22px;
  }
  .nav .nav-cta {
    gap: 6px;
  }
  .nav .nav-btn {
    padding: 6px 12px;
    font-size: 10px;
  }
  .nav .lang {
    display: none;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  width: 100%;
  overflow: hidden;
  background: var(--ink-900);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image:
    linear-gradient(180deg, rgba(7, 21, 32, 0.2), rgba(7, 21, 32, 0.6)),
    url("https://dynamic-media-cdn.tripadvisor.com/media/photo-o/32/f5/6b/78/caption.jpg?w=2400&h=-1&s=1");
  background-size: cover;
  background-position: center 40%;
  opacity: 0;
  transition: opacity 1.6s ease;
  animation: kenburns 28s ease-in-out infinite alternate;
}
.hero-bg.ready {
  opacity: 1;
}
@keyframes kenburns {
  0% {
    transform: scale(1.05) translate(0, 0);
  }
  100% {
    transform: scale(1.18) translate(-2%, -1.5%);
  }
}
.hero-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse at 30% 30%,
      rgba(30, 150, 209, 0.3),
      transparent 55%
    ),
    radial-gradient(
      ellipse at 70% 80%,
      rgba(8, 26, 42, 0.6),
      transparent 60%
    ),
    linear-gradient(180deg, #0f2940 0%, #0c1e2e 50%, #071520 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(7, 21, 32, 0.4) 0%,
    rgba(7, 21, 32, 0.05) 35%,
    rgba(7, 21, 32, 0.88) 100%
  );
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.15;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/></svg>");
}

/* Floating parallax svg layers */
.layer {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 3;
  will-change: transform;
}
.stars {
  top: 0;
  height: 60%;
  opacity: 0.7;
}
.dunes-back {
  bottom: 0;
  height: 38%;
  opacity: 0.85;
}
.dunes-front {
  bottom: 0;
  height: 28%;
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 64px 100px;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}
.hero-eyebrow .line {
  width: 48px;
  height: 1px;
  background: var(--sand-300);
}
.hero-eyebrow .mono {
  color: var(--sand-200);
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(48px, 8.4vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0 0 36px;
  color: var(--sand-50);
  max-width: 18ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--sand-300);
  font-weight: 400;
}
.hero h1 .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding: 0 0.04em;
}
.hero h1 .word .inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.hero.ready h1 .word .inner {
  transform: translateY(0);
}
.hero h1 .word:nth-child(2) .inner {
  transition-delay: 0.1s;
}
.hero h1 .word:nth-child(3) .inner {
  transition-delay: 0.2s;
}
.hero h1 .word:nth-child(4) .inner {
  transition-delay: 0.3s;
}
.hero h1 .word:nth-child(5) .inner {
  transition-delay: 0.4s;
}
.hero h1 .word:nth-child(6) .inner {
  transition-delay: 0.5s;
}

.hero-tagline {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(224, 240, 248, 0.78);
  margin: 0 0 44px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1s ease 0.6s,
    transform 1s ease 0.6s;
}
.hero.ready .hero-tagline {
  opacity: 1;
  transform: none;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1s ease 0.85s,
    transform 1s ease 0.85s;
}
.hero.ready .hero-actions {
  opacity: 1;
  transform: none;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 30px;
  border-radius: 999px;
  background: var(--sand-100);
  color: var(--ink-800);
  border: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.4s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ember);
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.2, 1);
  z-index: -1;
}
.btn:hover {
  color: var(--sand-50);
}
.btn:hover::before {
  transform: translateY(0);
}
.btn .arrow {
  width: 18px;
  height: 10px;
  transition: transform 0.4s ease;
}
.btn:hover .arrow {
  transform: translateX(6px);
}
.btn.ghost {
  background: transparent;
  color: var(--sand-100);
  border: 1px solid var(--line-strong);
}
.btn.ghost::before {
  background: var(--sand-100);
}
.btn.ghost:hover {
  color: var(--ink-800);
}

.hero-meta {
  position: absolute;
  bottom: 36px;
  left: 64px;
  right: 64px;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: rgba(224, 240, 248, 0.65);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-meta .scroll {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-meta .scroll .bar {
  width: 1px;
  height: 48px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--sand-200),
    transparent
  );
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

@media (max-width: 880px) {
  .hero-content {
    padding: 0 24px 90px;
  }
  .hero-meta {
    left: 24px;
    right: 24px;
    bottom: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .hero-actions {
    flex-wrap: wrap;
    gap: 14px;
  }
  .btn {
    padding: 14px 24px;
    font-size: 13px;
    gap: 10px;
  }
  .btn .arrow {
    width: 14px;
    height: 8px;
  }
}
@media (max-width: 560px) {
  .hero {
    min-height: 100svh;
    min-height: 560px;
  }
  .hero-content {
    padding: 0 20px 70px;
  }
  .hero h1 {
    font-size: clamp(36px, 11vw, 52px);
    margin-bottom: 20px;
  }
  .hero-tagline {
    font-size: 15px;
    margin-bottom: 28px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
  .hero-meta {
    display: none;
  }
  .hero-eyebrow {
    margin-bottom: 18px;
  }
}

/* ---------- Section base ---------- */
section {
  position: relative;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}
.section-head .left {
  max-width: 680px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--sand-300);
}
.eyebrow .num {
  font-family: "JetBrains Mono";
  font-size: 11px;
  letter-spacing: 0.2em;
}
.eyebrow .line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--sand-300);
  opacity: 0.5;
}
.section-title {
  font-family: "Playfair Display";
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--sand-50);
}
.section-title em {
  font-style: italic;
  color: var(--sand-300);
}
.section-sub {
  margin: 24px 0 0;
  max-width: 520px;
  color: rgba(224, 240, 248, 0.7);
  font-size: 16px;
  line-height: 1.7;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}
.reveal-stagger.visible > * {
  opacity: 1;
  transform: none;
}
.reveal-stagger.visible > *:nth-child(1) {
  transition-delay: 0.05s;
}
.reveal-stagger.visible > *:nth-child(2) {
  transition-delay: 0.18s;
}
.reveal-stagger.visible > *:nth-child(3) {
  transition-delay: 0.31s;
}
.reveal-stagger.visible > *:nth-child(4) {
  transition-delay: 0.44s;
}
.reveal-stagger.visible > *:nth-child(5) {
  transition-delay: 0.57s;
}

/* ---------- WHAT WE DO ---------- */
.what {
  background: var(--ink-900);
  padding: 160px 64px;
}
.what .container {
  max-width: 1400px;
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  position: relative;
  padding: 48px 36px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(224, 240, 248, 0.03),
    rgba(224, 240, 248, 0.01)
  );
  border-radius: 4px;
  transition:
    transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.4s ease,
    background 0.4s;
  transform-style: preserve-3d;
  will-change: transform;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(91, 164, 196, 0.18),
    transparent 50%
  );
}
.feature-card:hover {
  border-color: var(--line-strong);
  background: linear-gradient(
    180deg,
    rgba(224, 240, 248, 0.06),
    rgba(224, 240, 248, 0.02)
  );
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-icon {
  width: 72px;
  height: 72px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  color: var(--sand-300);
  transition:
    transform 0.6s ease,
    border-color 0.4s;
}
.feature-card:hover .feature-icon {
  transform: rotate(8deg) scale(1.06);
  border-color: var(--sand-300);
}
.feature-icon svg {
  width: 32px;
  height: 32px;
}
.feature-num {
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: "JetBrains Mono";
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--sand-400);
}
.feature-card h3 {
  font-family: "Playfair Display";
  font-size: 30px;
  margin: 0 0 16px;
  font-weight: 500;
  color: var(--sand-50);
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(224, 240, 248, 0.65);
  margin: 0 0 auto;
}
.discover {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-200);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-strong);
  align-self: flex-start;
  transition:
    gap 0.3s ease,
    border-color 0.3s,
    color 0.3s;
}
.discover:hover {
  gap: 18px;
  color: var(--sand-300);
  border-color: var(--sand-300);
}

@media (max-width: 980px) {
  .what {
    padding: 100px 24px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50px;
  }
}
@media (max-width: 560px) {
  .what {
    padding: 70px 20px;
  }
  .section-head {
    margin-bottom: 36px;
    gap: 20px;
  }
  .section-sub {
    font-size: 14px;
  }
}

/* ---------- DESTINATIONS ---------- */
.destinations {
  background: linear-gradient(
    180deg,
    var(--ink-900) 0%,
    var(--ink-800) 100%
  );
  padding: 160px 0;
  overflow: hidden;
}
.destinations .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 64px;
}
.dest-scroll-wrap {
  position: relative;
  margin-top: 30px;
}
.dest-scroll {
  display: flex;
  gap: 24px;
  padding: 30px 64px 50px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.dest-scroll::-webkit-scrollbar {
  display: none;
}
.dest-card {
  flex: 0 0 420px;
  height: 560px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #0c1e2e;
  transition: transform 0.6s ease;
}
.dest-card:hover {
  transform: translateY(-8px);
}
.dest-card .img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.dest-card:hover .img {
  transform: scale(1.08);
}
.dest-card .grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.85) 100%
  );
}
.dest-card .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px;
  color: var(--sand-50);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.dest-card .info .left h4 {
  font-family: "Playfair Display";
  font-size: 28px;
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.dest-card .info .left .meta {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.8;
}
.price-badge {
  flex-shrink: 0;
  padding: 10px 14px;
  border: 1px solid rgba(224, 240, 248, 0.4);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  background: rgba(10, 8, 5, 0.3);
  font-size: 13px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-badge .from {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}
.price-badge strong {
  font-weight: 500;
  font-family: "Playfair Display";
  font-size: 18px;
}
.dest-card .tag {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 6px 12px;
  background: rgba(10, 8, 5, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-200);
}

.scroll-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 0 64px;
}
.scroll-nav button {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--sand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    border-color 0.3s,
    color 0.3s;
}
.scroll-nav button:hover {
  background: var(--sand-100);
  color: var(--ink-800);
  border-color: var(--sand-100);
}
.scroll-nav .track {
  flex: 1;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.scroll-nav .thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  background: var(--sand-300);
  width: 30%;
  transition:
    width 0.3s,
    transform 0.3s;
}
.scroll-nav .count {
  font-family: "JetBrains Mono";
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--sand-300);
}

@media (max-width: 980px) {
  .destinations {
    padding: 100px 0;
  }
  .destinations .container {
    padding: 0 24px;
  }
  .dest-scroll {
    padding: 30px 24px 50px;
  }
  .dest-card {
    flex: 0 0 300px;
    height: 440px;
  }
  .scroll-nav {
    padding: 0 24px;
  }
  .scroll-nav button {
    width: 44px;
    height: 44px;
  }
  .scroll-nav .btn {
    padding: 12px 20px;
    font-size: 12px;
  }
}
@media (max-width: 560px) {
  .dest-card {
    flex: 0 0 260px;
    height: 380px;
  }
  .scroll-nav {
    flex-wrap: wrap;
    gap: 12px;
  }
  .scroll-nav button {
    width: 40px;
    height: 40px;
  }
  .scroll-nav button svg {
    width: 12px;
    height: 8px;
  }
  .scroll-nav .track {
    order: 5;
    flex-basis: 100%;
  }
  .scroll-nav .count {
    font-size: 10px;
  }
  .scroll-nav .btn {
    order: 4;
    margin-left: auto;
    padding: 12px 18px;
    font-size: 11px;
    gap: 8px;
  }
}

/* ---------- WHY US ---------- */
.why {
  background: var(--ink-800);
  padding: 160px 64px;
}
.why .container {
  max-width: 1400px;
  margin: 0 auto;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 80px 0 100px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 54px 32px;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child {
  border-right: none;
}
.stat .num {
  font-family: "Playfair Display";
  font-size: clamp(60px, 8vw, 108px);
  line-height: 1;
  color: var(--sand-300);
  font-weight: 400;
  letter-spacing: -0.02em;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.stat .num .suffix {
  font-size: 0.45em;
  color: var(--sand-200);
  margin-top: 0.2em;
}
.stat .label {
  margin-top: 16px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(224, 240, 248, 0.7);
  max-width: 240px;
  line-height: 1.5;
}
.stat .tick {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: "JetBrains Mono";
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--sand-400);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-block {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition:
    transform 0.5s ease,
    border-color 0.4s;
  background: linear-gradient(
    180deg,
    rgba(224, 240, 248, 0.02),
    transparent
  );
}
.why-block:hover {
  transform: translateY(-6px);
  border-color: var(--sand-400);
}
.why-block .ico {
  width: 40px;
  height: 40px;
  color: var(--sand-300);
  margin-bottom: 24px;
  transition: transform 0.5s ease;
}
.why-block:hover .ico {
  transform: rotate(-8deg) scale(1.1);
}
.why-block h5 {
  font-family: "Playfair Display";
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--sand-50);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.why-block p {
  font-size: 14px;
  color: rgba(224, 240, 248, 0.62);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .why {
    padding: 100px 24px;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .stat:last-child {
    border-bottom: none;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- FLEET ---------- */
.fleet {
  background: linear-gradient(180deg, var(--ink-800) 0%, var(--ink-900) 100%);
  padding: 160px 64px;
  position: relative;
  overflow: hidden;
}
.fleet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(30, 150, 209, 0.06),
    transparent 60%
  );
  pointer-events: none;
}
.fleet .container {
  max-width: 1400px;
  margin: 0 auto;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.fleet-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(224, 240, 248, 0.03),
    rgba(224, 240, 248, 0.01)
  );
  transition:
    transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.4s,
    box-shadow 0.5s;
}
.fleet-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 60px -16px rgba(0, 0, 0, 0.5);
}
.fleet-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.fleet-img-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.fleet-card:hover .fleet-img-inner {
  transform: scale(1.08);
}
.fleet-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 8, 5, 0) 50%,
    rgba(10, 8, 5, 0.4) 100%
  );
}
.fleet-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 12px;
  background: rgba(10, 8, 5, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-200);
  z-index: 2;
}
.fleet-body {
  padding: 28px 32px 32px;
}
.fleet-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--sand-300);
}
.fleet-seats {
  display: flex;
  align-items: center;
  gap: 6px;
}
.fleet-seats svg {
  width: 14px;
  height: 14px;
}
.fleet-fuel {
  padding: 2px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.fleet-body h4 {
  font-family: "Playfair Display";
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--sand-50);
  letter-spacing: -0.01em;
}
.fleet-body p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(224, 240, 248, 0.6);
  margin: 0 0 24px;
}
.fleet-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.fleet-features {
  display: flex;
  gap: 8px;
}
.fleet-features span {
  padding: 4px 10px;
  background: rgba(224, 240, 248, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--sand-200);
}
.fleet-price {
  text-align: right;
}
.fleet-price .from {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand-400);
  margin-bottom: 2px;
}
.fleet-price strong {
  font-family: "Playfair Display";
  font-size: 22px;
  font-weight: 500;
  color: var(--sand-300);
}
.fleet-price strong span {
  font-size: 12px;
  font-family: "DM Sans";
  color: var(--sand-400);
  font-weight: 400;
}
.fleet-cta .btn {
  display: inline-flex;
}
.fleet-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
  padding: 24px 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(224, 240, 248, 0.02);
}
.fleet-note svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--sand-300);
}
.fleet-note p {
  margin: 0;
  font-size: 14px;
  color: rgba(224, 240, 248, 0.65);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .fleet {
    padding: 100px 24px;
  }
  .fleet-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .fleet {
    padding: 70px 20px;
  }
}

/* ---------- BOOK ---------- */
.book {
  position: relative;
  padding: 160px 64px;
  background:
    linear-gradient(
      180deg,
      rgba(7, 21, 32, 0.7) 0%,
      rgba(7, 21, 32, 0.85) 100%
    ),
    url("https://dynamic-media-cdn.tripadvisor.com/media/photo-o/32/f5/6b/78/caption.jpg?w=2000&h=-1&s=1")
      center/cover fixed;
}
.book .container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.book-card {
  position: relative;
  padding: 48px;
  border-radius: 8px;
  background: rgba(7, 21, 32, 0.6);
  backdrop-filter: blur(28px) saturate(120%);
  -webkit-backdrop-filter: blur(28px) saturate(120%);
  border: 1px solid rgba(224, 240, 248, 0.18);
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(224, 240, 248, 0.07);
}
.book-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(91, 164, 196, 0.4)
  );
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}
.field {
  position: relative;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-300);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  color: var(--sand-50);
  padding: 10px 0 12px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.3s;
  cursor: none;
}
.field textarea {
  resize: vertical;
  min-height: 80px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sand-300);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%235BA4C4' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
}
.field select option {
  background: var(--ink-800);
  color: var(--sand-100);
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(224, 240, 248, 0.32);
}

.submit-btn {
  position: relative;
  margin-top: 32px;
  width: 100%;
  padding: 20px 28px;
  border-radius: 999px;
  background: var(--sand-300);
  color: var(--ink-900);
  border: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
  isolation: isolate;
  transition:
    background 0.35s ease,
    color 0.35s ease;
}
.submit-btn .label {
  transition: opacity 0.3s;
}
.submit-btn .spinner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(10, 8, 5, 0.3);
  border-top-color: var(--ink-900);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  opacity: 0;
  transition: opacity 0.3s;
}
.submit-btn.loading .label {
  opacity: 0;
}
.submit-btn.loading .spinner {
  opacity: 1;
}
.submit-btn:hover:not(:disabled) {
  background: var(--sand-100);
}

.success-msg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(7, 21, 32, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 8px;
  padding: 48px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  transition: all 0.5s ease;
  text-align: center;
}
.success-msg.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.success-msg .checkmark {
  width: 90px;
  height: 90px;
  border: 1px solid var(--sand-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.success-msg .checkmark svg {
  width: 36px;
  height: 36px;
  color: var(--sand-300);
}
.success-msg .checkmark svg path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  transition: stroke-dashoffset 0.8s ease 0.2s;
}
.success-msg.show .checkmark svg path {
  stroke-dashoffset: 0;
}
.success-msg h4 {
  font-family: "Playfair Display";
  font-size: 32px;
  margin: 0 0 12px;
  font-weight: 500;
  color: var(--sand-50);
}
.success-msg p {
  color: rgba(224, 240, 248, 0.7);
  max-width: 340px;
  margin: 0;
}

@media (max-width: 980px) {
  .book {
    padding: 100px 24px;
  }
  .book .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .book-card {
    padding: 32px 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .book {
    padding: 70px 16px;
  }
  .book-card {
    padding: 24px 18px;
  }
  .submit-btn {
    padding: 16px 20px;
    font-size: 13px;
    letter-spacing: 0.1em;
  }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: var(--ink-900);
  padding: 160px 0;
  overflow: hidden;
  position: relative;
}
.testimonials::before,
.testimonials::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.testimonials::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink-900), transparent);
}
.testimonials::after {
  right: 0;
  background: linear-gradient(-90deg, var(--ink-900), transparent);
}
.testimonials .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 64px;
}
.test-track-wrap {
  margin-top: 80px;
}
.test-track {
  display: flex;
  gap: 24px;
  animation: scrollX 50s linear infinite;
  width: max-content;
}
.test-track:hover {
  animation-play-state: paused;
}
@keyframes scrollX {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.test-card {
  flex: 0 0 440px;
  padding: 40px 36px;
  background: rgba(224, 240, 248, 0.04);
  border: 1px solid rgba(224, 240, 248, 0.1);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.test-card .stars {
  display: flex;
  gap: 4px;
  color: var(--sand-300);
}
.test-card .stars svg {
  width: 14px;
  height: 14px;
}
.test-card blockquote {
  font-family: "Playfair Display";
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--sand-50);
  margin: 0;
  font-weight: 400;
}
.test-card .who {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.test-card .avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sand-300), var(--sand-500));
  color: var(--ink-900);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.test-card .who .name {
  font-size: 15px;
  color: var(--sand-50);
}
.test-card .who .from {
  font-size: 12px;
  color: var(--sand-300);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

@media (max-width: 980px) {
  .testimonials {
    padding: 100px 0;
  }
  .testimonials .container {
    padding: 0 24px;
  }
  .test-card {
    flex: 0 0 320px;
    padding: 30px 26px;
  }
  .test-card blockquote {
    font-size: 18px;
  }
}
@media (max-width: 560px) {
  .testimonials {
    padding: 70px 0;
  }
  .testimonials::before,
  .testimonials::after {
    width: 40px;
  }
  .test-card {
    flex: 0 0 280px;
    padding: 24px 20px;
  }
  .test-card blockquote {
    font-size: 16px;
  }
  .test-track-wrap {
    margin-top: 40px;
  }
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink-900);
  color: var(--sand-100);
  padding: 120px 64px 40px;
  border-top: 1px solid var(--line);
}
footer .container {
  max-width: 1400px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
.footer-brand h2 {
  font-family: "Playfair Display";
  font-size: 32px;
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-brand p {
  color: rgba(224, 240, 248, 0.6);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  max-width: 340px;
}
.footer-col h6 {
  font-family: "JetBrains Mono";
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-300);
  margin: 0 0 24px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}
.footer-col ul a {
  color: rgba(224, 240, 248, 0.7);
  transition:
    color 0.3s,
    transform 0.3s;
  display: inline-block;
}
.footer-col ul a:hover {
  color: var(--sand-300);
  transform: translateX(4px);
}
.newsletter {
  display: flex;
  margin-top: 6px;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 8px;
  transition: border-color 0.3s;
}
.newsletter:focus-within {
  border-color: var(--sand-300);
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--sand-50);
  padding: 10px 0;
  font-family: inherit;
  font-size: 14px;
  cursor: none;
}
.newsletter input:focus {
  outline: none;
}
.newsletter input::placeholder {
  color: rgba(224, 240, 248, 0.35);
}
.newsletter button {
  background: transparent;
  border: none;
  color: var(--sand-300);
  padding: 0 4px;
  display: flex;
  align-items: center;
  transition: transform 0.3s;
}
.newsletter button:hover {
  transform: translateX(6px);
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.socials a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
  color: var(--sand-200);
}
.socials a:hover {
  background: var(--sand-300);
  color: var(--ink-900);
  border-color: var(--sand-300);
}
.socials a svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(224, 240, 248, 0.45);
}
.footer-bottom .links {
  display: flex;
  gap: 24px;
}
@media (max-width: 980px) {
  footer {
    padding: 80px 24px 30px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}
@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 20px rgba(37, 211, 102, 0.4),
    0 8px 32px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  animation: whatsappPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow:
    0 6px 28px rgba(37, 211, 102, 0.55),
    0 12px 40px rgba(0, 0, 0, 0.35);
  animation: none;
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
}
@keyframes whatsappPulse {
  0%, 100% {
    box-shadow:
      0 4px 20px rgba(37, 211, 102, 0.4),
      0 8px 32px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow:
      0 4px 20px rgba(37, 211, 102, 0.6),
      0 8px 40px rgba(37, 211, 102, 0.2),
      0 12px 48px rgba(0, 0, 0, 0.3);
  }
}
@media (max-width: 560px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .test-track {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}
