/* ════════════════════════════════════════════════════════════════
   TRAVEL WORLD CONCIERGE — style.css
   Dark luxury · Rose-gold accents · Cormorant Garamond + Jost
   ════════════════════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --bg: #1a1612;
  --bg-mid: #0f0c0a;
  --bg-card: rgba(255, 255, 255, 0.025);
  --gold: #c9956a;
  --gold-light: #e8c4a4;
  --gold-bright: #f5dfc8;
  --gold-dim: #7a5035;
  --gold-glow: rgba(201, 149, 106, 0.15);
  --text-1: #f0e8e0;
  --text-2: #a08060;
  --text-3: #503820;
  --border: rgba(201, 149, 106, 0.12);
  --border-h: rgba(201, 149, 106, 0.38);
  --glass: rgba(16, 10, 6, 0.72);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  /* Slightly larger base font to make fine print more legible */
  font-size: 20px;
}
body {
  background: var(--bg);
  color: var(--text-1);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 2px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
}

/* ════════════ CURSOR ════════════ */
.cursor {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.08s,
    opacity 0.3s;
  mix-blend-mode: normal;
}
.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201, 149, 106, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.35s var(--ease-out),
    height 0.35s var(--ease-out),
    border-color 0.35s;
}
.cursor-ring.hovering {
  width: 52px;
  height: 52px;
  border-color: var(--gold);
}

/* ════════════ NAV ════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    padding 0.4s,
    background 0.4s,
    backdrop-filter 0.4s,
    border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  padding: 16px 60px;
  background: rgba(26, 22, 18, 0.92);
  backdrop-filter: blur(28px) saturate(180%);
  border-bottom-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  cursor: none;
}
.nav-logo-mark {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: border-color 0.3s;
}
.nav-logo:hover .nav-logo-mark {
  border-color: var(--gold);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.nav-sub {
  font-size: 0.57rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: none;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}
.nav-links a:hover {
  color: var(--gold-light);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 26px;
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  background: transparent;
  font-family: "Jost", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: none;
  text-decoration: none;
  transition:
    background 0.3s,
    border-color 0.3s,
    color 0.3s;
}
.nav-cta:hover {
  background: rgba(201, 149, 106, 0.08);
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* ════════════ HERO ════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0a0806;
}

#hero-globe-canvas {
  position: absolute;
  left: auto;
  right: 1%;
  top: 50%;
  transform: translateY(-50%);
  width: 54vw;
  height: 54vw;
  max-width: 760px;
  max-height: 760px;
  opacity: 0.82;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 0 60px;
  margin-top: 80px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s 0.3s var(--ease-out) forwards;
}
.eyebrow-line {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold-dim);
  flex-shrink: 0;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 7vw, 7.5rem);
  font-weight: 300;
  line-height: 1.04;
  color: var(--text-1);
  opacity: 0;
  animation: fadeUp 1s 0.5s var(--ease-out) forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-sub {
  margin-top: 28px;
  font-size: 1rem;
  color: var(--text-2);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.75;
  max-width: 440px;
  opacity: 0;
  animation: fadeUp 1s 0.7s var(--ease-out) forwards;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 52px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.9s var(--ease-out) forwards;
}

.btn-primary {
  padding: 16px 44px;
  background: linear-gradient(135deg, #8a5035 0%, var(--gold) 100%);
  color: var(--bg);
  font-family: "Jost", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.12));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(201, 149, 106, 0.28);
}
.btn-primary:hover::after {
  opacity: 1;
}

.btn-secondary {
  padding: 16px 44px;
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
  font-family: "Jost", sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition:
    color 0.3s,
    border-color 0.3s,
    background 0.3s;
}
.btn-secondary:hover {
  color: var(--gold-light);
  border-color: var(--border-h);
  background: rgba(201, 149, 106, 0.04);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.6s forwards;
}
.hero-scroll-hint span {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  color: var(--text-3);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: var(--gold-dim);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ════════════ SHARED SECTION STYLES ════════════ */
section {
  padding: 130px 60px;
  position: relative;
}
.max-container {
  max-width: 1240px;
  margin: 0 auto;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.6rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-dim);
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text-1);
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* ════════════ DESTINATIONS ════════════ */
#destinations {
  background: #100e0b;
  padding-bottom: 100px;
}

.dest-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 52px;
}
.dest-header-left {
  max-width: 480px;
}
.dest-intro {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.7;
}

.dest-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  position: relative;
  z-index: 10; /* keep controls and dropdown above the globe/map */
}

/* Search */
.dest-search-wrap {
  position: relative;
  width: 300px;
  /* Ensure the autocomplete dropdown sits above the globe/map SVG */
  z-index: 5;
}
.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-dim);
  pointer-events: none;
}
.dest-search {
  width: 100%;
  padding: 13px 16px 13px 44px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  color: var(--text-1);
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  outline: none;
  cursor: none;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.dest-search:focus {
  border-color: var(--border-h);
  background: rgba(201, 149, 106, 0.03);
}
.dest-search::placeholder {
  color: var(--text-3);
}
.autocomplete-drop {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  right: 0;
  background: rgba(18, 11, 7, 0.98);
  border: 1px solid var(--border-h);
  backdrop-filter: blur(24px);
  /* Sit above globe/map SVG and tooltip */
  z-index: 200;
  display: none;
  max-height: 220px;
  overflow-y: auto;
}
.autocomplete-drop.open {
  display: block;
}
.ac-item {
  padding: 11px 18px;
  font-size: 0.78rem;
  color: var(--text-2);
  cursor: none;
  transition:
    background 0.2s,
    color 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ac-item:hover {
  background: rgba(201, 149, 106, 0.07);
  color: var(--gold-light);
}
.ac-item-flag {
  font-size: 1rem;
}

/* View toggle */
.view-toggle {
  display: flex;
  gap: 2px;
  border: 1px solid var(--border);
}
.view-btn {
  padding: 8px 18px;
  background: transparent;
  border: none;
  color: var(--text-3);
  font-family: "Jost", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.3s,
    color 0.3s;
}
.view-btn.active {
  background: rgba(201, 149, 106, 0.1);
  color: var(--gold);
}
.view-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-2);
}

/* Globe/Map stage */
.globe-map-stage {
  position: relative;
  width: 100%;
  height: 600px;
  border: 1px solid var(--border);
  background: rgba(10, 6, 4, 0.6);
  overflow: hidden;
  margin-bottom: 28px;
  z-index: 0;
}

#globe-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The D3 SVG */
#globe-container svg {
  width: 100%;
  height: 100%;
}

/* Country paths — styled via JS class assignment */
.country-path {
  fill: rgba(201, 149, 106, 0.07);
  stroke: rgba(201, 149, 106, 0.22);
  stroke-width: 0.4px;
  cursor: none;
  transition:
    fill 0.25s,
    stroke 0.25s,
    stroke-width 0.25s;
}
.country-path:hover,
.country-path.hovered {
  fill: rgba(201, 149, 106, 0.3);
  stroke: rgba(201, 149, 106, 0.7);
  stroke-width: 0.8px;
}
.country-path.highlighted {
  fill: rgba(201, 149, 106, 0.45);
  stroke: var(--gold-bright);
  stroke-width: 1px;
}
.country-path.dimmed {
  fill: rgba(201, 149, 106, 0.02);
  stroke: rgba(201, 149, 106, 0.08);
}

/* Graticule */
.graticule {
  fill: none;
  stroke: rgba(201, 149, 106, 0.06);
  stroke-width: 0.4px;
}
/* Sphere bg */
.sphere {
  fill: rgba(201, 149, 106, 0.025);
  stroke: rgba(201, 149, 106, 0.15);
  stroke-width: 0.5px;
}

/* Map tooltip */
.map-tooltip {
  position: absolute;
  width: 290px;
  background: rgba(14, 9, 5, 0.96);
  border: 1px solid var(--border-h);
  backdrop-filter: blur(32px);
  padding: 26px 24px 22px;
  z-index: 50;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(201, 149, 106, 0.08);
  transition:
    opacity 0.25s,
    transform 0.25s;
  top: 24px;
  right: 24px;
}
.map-tooltip.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px) scale(0.97);
}
.map-tooltip.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}
.tooltip-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 1rem;
  cursor: none;
  line-height: 1;
  transition: color 0.2s;
}
.tooltip-close:hover {
  color: var(--text-2);
}
.tooltip-flag {
  font-size: 2rem;
  margin-bottom: 8px;
}
.tooltip-country {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 5px;
}
.tooltip-specialist {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 14px;
}
.tooltip-desc {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 20px;
}
.tooltip-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: var(--bg);
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  transition:
    opacity 0.3s,
    transform 0.2s;
}
.tooltip-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* Destination pills */
.dest-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.dest-pill {
  padding: 8px 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-3);
  font-family: "Jost", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: none;
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
}
.dest-pill:hover {
  background: rgba(201, 149, 106, 0.05);
  color: var(--text-2);
}
.dest-pill.active {
  background: rgba(201, 149, 106, 0.1);
  border-color: var(--border-h);
  color: var(--gold);
}

/* ════════════ SERVICES ════════════ */
#services {
  background: #100e0b;
}
.services-header {
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg-mid);
  padding: 48px 32px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
  transition-delay: var(--delay, 0s);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  background: rgba(20, 13, 8, 0.95);
}
.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  color: var(--gold);
  margin-bottom: 30px;
  transition: transform 0.35s var(--ease-out);
}
.service-card:hover .service-icon {
  transform: translateY(-3px);
}

.service-number {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  color: rgba(201, 149, 106, 0.05);
  line-height: 1;
  font-weight: 600;
  transition: color 0.35s;
}
.service-card:hover .service-number {
  color: rgba(201, 149, 106, 0.09);
}

.service-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: var(--text-1);
  margin-bottom: 12px;
  font-weight: 400;
}
.service-desc {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.72;
}
.service-arrow {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--gold-dim);
  transition:
    color 0.3s,
    transform 0.35s var(--ease-out);
  display: inline-block;
}
.service-card:hover .service-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

/* ════════════ HOW IT WORKS ════════════ */
#how-it-works {
  background: #0f0d0b;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-header {
  text-align: center;
  margin-bottom: 80px;
}

.steps-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.step {
  text-align: center;
  padding: 0 20px;
  transition-delay: var(--delay, 0s);
}
.step-num {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.step-num::before,
.step-num::after {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold-dim);
}
.step-icon-wrap {
  width: 54px;
  height: 54px;
  margin: 0 auto 22px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition:
    border-color 0.35s,
    background 0.35s;
}
.step:hover .step-icon-wrap {
  border-color: var(--border-h);
  background: rgba(201, 149, 106, 0.05);
}
.step-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  color: var(--text-1);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.72;
}
.step-connector {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--gold-dim);
  flex-shrink: 0;
}

/* ════════════ TRUST ════════════ */
#trust {
  background: #100e0b;
  overflow: hidden;
}
.trust-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(201, 149, 106, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 149, 106, 0.8) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Stats */
.stats-row {
  display: flex;
  border: 1px solid var(--border);
  margin-bottom: 100px;
}
.stat {
  flex: 1;
  padding: 56px 40px;
  text-align: center;
  position: relative;
}
.stat + .stat {
  border-left: 1px solid var(--border);
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--gold-light);
  display: inline;
}
.stat-suffix {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3.5rem);
  color: var(--gold);
  display: inline;
}
.stat-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 12px;
}
.stat-divider {
  display: none;
}

/* Testimonials */
.testi-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.testi-section .section-label {
  justify-content: center;
}
.testi-section .section-title {
  margin-bottom: 56px;
}

.testi-stage {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-track {
  overflow: hidden;
  flex: 1;
}
.testi-slider {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}
.testi-slide {
  min-width: 100%;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testi-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold-dim);
  margin-bottom: 28px;
  display: block;
}
.testi-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-1);
  max-width: 640px;
  font-weight: 300;
  margin-bottom: 32px;
}
.testi-author {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.testi-origin {
  font-size: 0.65rem;
  color: var(--text-3);
  letter-spacing: 0.15em;
  margin-top: 5px;
}
.testi-nav {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  color: var(--text-3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  flex-shrink: 0;
  transition:
    border-color 0.3s,
    color 0.3s,
    background 0.3s;
}
.testi-nav:hover {
  border-color: var(--border-h);
  color: var(--gold);
  background: rgba(201, 149, 106, 0.04);
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.testi-dot {
  width: 28px;
  height: 1px;
  background: var(--text-3);
  border: none;
  cursor: none;
  transition:
    background 0.3s,
    width 0.35s var(--ease-out);
}
.testi-dot.active {
  background: var(--gold);
  width: 44px;
}

/* ════════════ CONTACT ════════════ */
#contact {
  background: var(--bg);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 100px;
  align-items: start;
}

.contact-intro {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 360px;
}
.contact-details {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.cd-icon {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.cd-label {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 5px;
}
.cd-value {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* Form card */
.contact-form-card {
  background: rgba(18, 11, 7, 0.65);
  border: 1px solid var(--border);
  backdrop-filter: blur(24px);
  padding: 52px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(201, 149, 106, 0.05);
  transition-delay: var(--delay, 0s);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  color: var(--text-1);
  font-family: "Jost", sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  outline: none;
  transition:
    border-color 0.3s,
    background 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--border-h);
  background: rgba(201, 149, 106, 0.025);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-3);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a5035' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 36px;
  cursor: none;
}
.form-select option {
  background: #100e0b;
}
.form-textarea {
  resize: none;
  height: 115px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: var(--bg);
  font-family: "Jost", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  margin-top: 6px;
  transition:
    opacity 0.3s,
    transform 0.3s var(--ease-out);
}
.form-submit:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* ════════════ FOOTER ════════════ */
footer {
  background: #0a0806;
  border-top: 1px solid var(--border);
  padding: 76px 60px 44px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {
}
.footer-tagline {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.75;
  max-width: 240px;
}
.footer-logo {
  margin-bottom: 0;
}

.footer-col-title {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 22px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.78rem;
  color: var(--text-3);
  text-decoration: none;
  cursor: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 0.65rem;
  color: var(--text-3);
  letter-spacing: 0.1em;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  text-decoration: none;
  cursor: none;
  transition:
    border-color 0.3s,
    color 0.3s;
}
.footer-social:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ════════════ FLOAT ACTIONS ════════════ */
.float-actions {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  background: rgba(14, 9, 5, 0.92);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: none;
  text-decoration: none;
  transition:
    border-color 0.3s,
    transform 0.35s var(--ease-out),
    box-shadow 0.35s;
}
.float-btn:hover {
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(201, 149, 106, 0.18);
}

/* ════════════ SCROLL REVEAL ════════════ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════ KEYFRAMES ════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.15;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 0.85;
    transform: scaleY(1);
  }
}

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
@media (max-width: 900px) {
  nav {
    padding: 20px 28px;
  }
  nav.scrolled {
    padding: 14px 28px;
  }
  .nav-links {
    display: none;
  }
  section {
    padding: 80px 28px;
  }
  .hero-content {
    padding: 0 28px;
  }
  #hero-globe-canvas {
    width: 80vw;
    height: 80vw;
    opacity: 0.25;
  }
  .steps-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .step-connector {
    transform: rotate(90deg);
  }
  .stats-row {
    flex-direction: column;
  }
  .stat + .stat {
    border-left: none;
    border-top: 1px solid var(--border);
  }
  .globe-map-stage {
    height: 420px;
  }
}
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    text-align: center;
    justify-content: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .dest-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .dest-controls {
    align-items: flex-start;
    width: 100%;
  }
  .dest-search-wrap {
    width: 100%;
  }
  .testi-stage {
    gap: 8px;
  }
  .contact-form-card {
    padding: 32px 22px;
  }
}
