/* ════════════════════════════════════════════════
   COOL SAILING BCN · DESIGN SYSTEM
   Aesthetic: Mediterranean luxury editorial
   Palette: Deep ocean navy + golden hour amber + salt white
   Typography: Cormorant Garamond (display) + DM Sans (body)
════════════════════════════════════════════════ */

:root {
  --navy:       #07111f;
  --navy2:      #0d1e35;
  --navy3:      #122745;
  --ocean:      #1a3a5c;
  --sky:        #2d6a9f;
  --horizon:    #5b9bd5;
  --foam:       #c8dff0;
  --salt:       #f0f5fa;
  --white:      #ffffff;
  --gold:       #c8932a;
  --gold2:      #e8b044;
  --gold-light: #f5d080;
  --gold-pale:  #fdf3dc;
  --coral:      #e07060;
  --text:       #1a2a3a;
  --text2:      #3d5068;
  --muted:      #7a93a8;
  --border:     rgba(93,155,213,0.18);
  --border2:    rgba(200,147,42,0.25);

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --radius:   12px;
  --radius-lg: 20px;
  --shadow:   0 4px 24px rgba(7,17,31,0.12);
  --shadow-lg: 0 12px 48px rgba(7,17,31,0.2);
  --glow:     0 0 40px rgba(200,147,42,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--ocean); border-radius: 3px; }

/* ── SELECTION ── */
::selection { background: var(--gold); color: var(--navy); }

/* ════ NAVIGATION ════ */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(7,17,31,0.72) 0%, rgba(7,17,31,0) 100%);
  backdrop-filter: blur(4px);
  transition: background .35s, backdrop-filter .35s, box-shadow .35s;
}
#mainNav.scrolled {
  background: rgba(7,17,31,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(93,155,213,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(200,147,42,0.35);
}
.nav-logo-img {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .02em;
  line-height: 1;
}
.nav-logo-text span {
  display: block;
  font-family: var(--font-mono);
  font-size: .5rem;
  font-weight: 400;
  color: var(--gold2);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links li a {
  display: inline-block;
  padding: .45rem .8rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--foam);
  text-decoration: none;
  border-radius: 6px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links li a:hover { color: var(--white); background: rgba(255,255,255,.07); }
.nav-links li a.active { color: var(--gold2); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy) !important;
  font-weight: 600 !important;
  border-radius: 8px;
  font-size: .78rem !important;
  box-shadow: 0 4px 16px rgba(200,147,42,0.35);
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,147,42,0.5) !important;
  background: linear-gradient(135deg, var(--gold2), var(--gold-light)) !important;
}

/* ── NAV DROPDOWN ── */
.has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .5rem;
  padding-top: calc(.5rem + 8px);
  min-width: 260px;
  box-shadow: 0 20px 60px rgba(7,17,31,.75);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 1100;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .85rem;
  border-radius: 7px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-dropdown-item:hover { background: rgba(93,155,213,.1); color: var(--foam); }
.nav-dropdown-item .nd-price {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: .6rem;
  color: var(--gold2);
  letter-spacing: .05em;
}
.nav-dropdown-sep {
  height: 1px;
  background: var(--border);
  margin: .25rem .5rem;
}
/* Dropdown arrow indicator on parent link */
.has-dropdown > a::after {
  content: '▾';
  font-size: .6rem;
  margin-left: .3rem;
  opacity: .7;
  vertical-align: middle;
}

/* Language switcher — dropdown */
.nav-lang {
  position: relative;
  margin-right: .5rem;
}
.lang-trigger {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-mono);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--foam);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 7px;
  cursor: pointer;
  padding: .35rem .65rem;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.lang-trigger:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(200,147,42,.35);
  color: var(--gold2);
}
.lang-trigger .lang-flag { font-size: .85rem; }
.lang-trigger .lang-chevron {
  font-size: .5rem;
  color: var(--muted);
  transition: transform .25s;
}
.nav-lang.open .lang-trigger .lang-chevron { transform: rotate(180deg); }
.nav-lang.open .lang-trigger { border-color: rgba(200,147,42,.4); color: var(--gold2); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .5rem;
  min-width: 190px;
  box-shadow: 0 20px 60px rgba(7,17,31,.7);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s;
  z-index: 1100;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .25rem;
}
.nav-lang.open .lang-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.lang-opt {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .65rem;
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .05em;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: background .15s, color .15s;
  text-align: left;
  white-space: nowrap;
}
.lang-opt:hover { background: rgba(93,155,213,.1); color: var(--foam); }
.lang-opt.active { background: rgba(200,147,42,.12); color: var(--gold2); }
.lang-opt .lo-flag { font-size: .9rem; }
.lang-opt .lo-name { font-size: .6rem; }

/* Mobile nav toggle */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--foam);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ════ HERO SECTION ════ */
#hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(29,90,155,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(200,147,42,0.12) 0%, transparent 50%),
    linear-gradient(160deg, var(--navy) 0%, #0a1d35 40%, #071525 100%);
  z-index: 0;
}

/* Animated wave lines */
.hero-waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  z-index: 1;
  overflow: hidden;
}
.wave {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 80px;
  background: linear-gradient(transparent, rgba(93,155,213,0.06));
  border-radius: 50%;
  animation: waveAnim 8s ease-in-out infinite;
}
.wave:nth-child(2) { animation-delay: -2s; animation-duration: 11s; opacity: .6; bottom: 10px; }
.wave:nth-child(3) { animation-delay: -5s; animation-duration: 14s; opacity: .3; bottom: 20px; }
@keyframes waveAnim {
  0%, 100% { transform: translateX(-50%) scaleY(1); }
  50% { transform: translateX(-30%) scaleY(1.15); }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold2);
  opacity: 0;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: .6; transform: translateY(-20px) scale(1); }
  90% { opacity: .3; }
  100% { opacity: 0; transform: translateY(-120px) scale(.5); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .9rem;
  background: rgba(200,147,42,.12);
  border: 1px solid rgba(200,147,42,.3);
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold2);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.8); }
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -.01em;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold2);
}
.hero-h1 strong {
  font-weight: 600;
  display: block;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--foam);
  opacity: .85;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-weight: 600;
  font-size: .9rem;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(200,147,42,0.4);
  transition: transform .2s, box-shadow .2s;
  border: none; cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200,147,42,0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-weight: 500;
  font-size: .9rem;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.2);
  transition: background .2s, border-color .2s;
  cursor: pointer;
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.4);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--muted);
}
.trust-item strong { color: var(--white); }
.trust-icon { display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.stars { color: var(--gold2); font-size: .85rem; letter-spacing: .05em; }

/* Hero right: visual card stack */
.hero-visual {
  position: relative;
  height: 480px;
}
.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-card-main {
  width: 340px; height: 380px;
  top: 0; right: 0;
  background: linear-gradient(160deg, var(--ocean) 0%, var(--navy2) 100%);
  border: 1px solid rgba(93,155,213,0.25);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,17,31,.85) 0%, rgba(7,17,31,.1) 60%);
}
.hero-card-content { position: relative; z-index: 1; }
.hero-card-tag {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: .5rem;
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: .5rem;
}
.hero-card-price {
  font-size: .85rem;
  color: var(--foam);
}
.hero-card-price strong { color: var(--gold2); font-size: 1.1rem; }

.hero-card-sm {
  width: 200px; height: 140px;
  background: linear-gradient(135deg, rgba(200,147,42,.15), rgba(7,17,31,.9));
  border: 1px solid rgba(200,147,42,.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem;
  animation: cardFloat2 7s ease-in-out infinite;
}
@keyframes cardFloat2 {
  0%,100% { transform: translateY(-6px) rotate(-1deg); }
  50% { transform: translateY(6px) rotate(1deg); }
}
.hero-card-sm-1 { bottom: 20px; left: 0; }
.hero-card-sm-2 { top: 60px; left: 20px; animation-delay: -3s; }

.mini-stat {
  font-size: 1.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold2);
  line-height: 1;
}
.mini-label {
  font-size: .65rem;
  color: var(--muted);
  margin-top: .3rem;
  font-family: var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Ocean scene illustration */
.ocean-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.ocean-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, #07111f 0%, #0d2340 30%, #1a4a7a 60%, #2d7abf 85%, #5ba8d8 100%);
}
.ocean-sun {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 70px;
  background: radial-gradient(circle, #ffd060 0%, #f5a020 40%, transparent 75%);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(245,160,32,.6), 0 0 80px rgba(245,160,32,.2);
}
.ocean-sea {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(0deg, #071525 0%, #0d2d4a 60%, transparent 100%);
}
.ocean-sea-shimmer {
  position: absolute;
  bottom: 35%;
  left: 0; right: 0;
  height: 80px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    rgba(93,168,216,.08) 2px,
    transparent 4px,
    transparent 20px
  );
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer { 0% { transform: translateX(0); } 100% { transform: translateX(20px); } }

/* Sailboat SVG */
.sailboat {
  position: absolute;
  bottom: 34%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  animation: sailSway 4s ease-in-out infinite;
}
@keyframes sailSway {
  0%,100% { transform: translateX(-50%) rotate(-.5deg); }
  50% { transform: translateX(-50%) rotate(.5deg); }
}

/* ════ SECTION BASE ════ */
.section-wrap {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 1rem;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold2));
}
.section-eyebrow::after { background: linear-gradient(90deg, var(--gold2), transparent); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: .75rem;
  letter-spacing: -.01em;
}
.section-title em { font-style: italic; color: var(--gold2); }

.section-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ════ EXPERIENCIAS / TOURS SECTION ════ */
#tours {
  padding: 4rem 0;
  background: var(--navy);
}

/* Tour filter tabs */
.tour-tabs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.tour-tab {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem 1.1rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}
.tour-tab:hover { border-color: var(--horizon); color: var(--foam); }
.tour-tab.active {
  background: rgba(200,147,42,.12);
  border-color: var(--gold);
  color: var(--gold2);
}

/* Tour cards grid */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.tour-card {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: pointer;
}
.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(7,17,31,.5);
  border-color: rgba(93,155,213,.35);
}
.tour-card.featured {
  border-color: rgba(200,147,42,.3);
  background: linear-gradient(160deg, var(--navy3) 0%, var(--navy2) 100%);
}

.tour-card-header {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--navy2);
}
.tour-card-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tour-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
  display: block;
}
.tour-card:hover .tour-photo { transform: scale(1.06); }
.tour-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,17,31,.75) 0%, rgba(7,17,31,.15) 55%, transparent 100%);
  z-index: 1;
}

.tour-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  padding: .3rem .7rem;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
}
.badge-popular { background: rgba(200,147,42,.9); color: var(--navy); }
.badge-new { background: rgba(93,155,213,.9); color: var(--white); }
.badge-romantic { background: rgba(192,64,96,.9); color: var(--white); }
.badge-group { background: rgba(104,160,80,.9); color: var(--white); }
.badge-private { background: rgba(7,17,31,.9); color: var(--gold2); border: 1px solid var(--gold); }

.tour-card-duration {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  color: rgba(255,255,255,.8);
  background: rgba(7,17,31,.6);
  backdrop-filter: blur(8px);
  padding: .3rem .65rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.1);
}

.tour-card-body {
  padding: 1.5rem;
}
.tour-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}
.tour-card-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.tour-card-features {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .65rem;
  padding: .25rem .6rem;
  border-radius: 4px;
  background: rgba(93,155,213,.08);
  border: 1px solid rgba(93,155,213,.15);
  color: var(--horizon);
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.tour-price {
  display: flex;
  flex-direction: column;
}
.price-from {
  font-size: .6rem;
  color: var(--muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold2);
  line-height: 1;
}
.price-unit {
  font-size: .65rem;
  color: var(--muted);
}

.tour-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem 1.1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-weight: 600;
  font-size: .78rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 12px rgba(200,147,42,.3);
}
.tour-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,147,42,.45);
}

/* ════ BOOKING MODAL ════ */
#bookingModal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s, visibility .25s;
}
#bookingModal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,17,31,.85);
  backdrop-filter: blur(12px);
}
.modal-box {
  position: relative;
  z-index: 1;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  visibility: visible;
  max-width: 760px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 40px 120px rgba(7,17,31,.8);
  display: flex;
  flex-direction: column;
}
.modal-header { display: none; }
.modal-eyebrow {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: .35rem;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
}
.modal-close {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  cursor: pointer;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: background .2s, color .2s;
}
.modal-close:hover { background: rgba(255,255,255,.1); color: var(--white); }
.modal-body { padding: 2rem; }

.turitop-wrap {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  min-height: 300px;
}

/* ════ CELEBRACIONES SECTION ════ */
#celebraciones {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 50%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
#celebraciones::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(200,147,42,.06) 0%, transparent 60%);
  pointer-events: none;
}

.celebraciones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.celeb-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  text-align: center;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.celeb-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(200,147,42,.04) 100%);
  opacity: 0;
  transition: opacity .3s;
  z-index: 2;
}
.celeb-card:hover::before { opacity: 1; }
.celeb-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(7,17,31,.5), 0 0 0 1px rgba(200,147,42,.2);
  border-color: rgba(200,147,42,.25);
}
.celeb-photo-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.celeb-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s ease;
}
.celeb-card:hover .celeb-photo { transform: scale(1.06); }
.celeb-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,17,31,.8) 0%, rgba(7,17,31,.2) 60%, transparent 100%);
}
.celeb-body {
  padding: 1.5rem 1.5rem 1.75rem;
  position: relative;
  z-index: 1;
}
.celeb-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.3));
}
.celeb-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.celeb-desc {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.celeb-book-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold2);
  text-decoration: none;
  padding: .5rem .9rem;
  border: 1px solid rgba(200,147,42,.3);
  border-radius: 7px;
  background: rgba(200,147,42,.08);
  transition: all .2s;
  cursor: pointer;
}
.celeb-book-btn:hover {
  background: rgba(200,147,42,.15);
  border-color: rgba(200,147,42,.5);
}

/* ════ WHY US SECTION ════ */
#nosotros {
  padding: 4rem 0;
  background: var(--navy2);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-visual {
  position: relative;
}
.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.why-stat-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform .3s;
}
.why-stat-card:hover { transform: translateY(-3px); }
.why-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: .35rem;
}
.why-stat-label {
  font-size: .72rem;
  color: var(--muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.why-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(200,147,42,.1);
  border: 1px solid rgba(200,147,42,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--gold);
}
.why-feature-title {
  font-weight: 600;
  font-size: .9rem;
  color: var(--white);
  margin-bottom: .25rem;
}
.why-feature-desc {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ════ REVIEWS SECTION ════ */
#reviews {
  padding: 4rem 0;
  background: var(--navy);
  overflow: hidden;
}

.reviews-track-wrap {
  overflow: hidden;
  margin: 0 -2rem;
  padding: 0 2rem;
}
.reviews-track {
  display: flex;
  gap: 1.25rem;
  animation: slideReviews 30s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes slideReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.review-stars { color: var(--gold2); font-size: .85rem; margin-bottom: .75rem; letter-spacing: .1em; }
.review-text {
  font-size: .85rem;
  line-height: 1.65;
  color: var(--foam);
  margin-bottom: 1rem;
  font-style: italic;
  font-family: var(--font-display);
}
.review-author {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.review-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--sky));
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: .8rem; color: var(--white); }
.review-meta { font-size: .65rem; color: var(--muted); }

/* ════ FAQ SECTION ════ */
#faq {
  padding: 4rem 0;
  background: var(--navy2);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-size: .85rem;
  font-weight: 500;
  font-family: var(--font-body);
  transition: background .2s;
}
.faq-question:hover { background: rgba(93,155,213,.05); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--gold2);
  font-size: .9rem;
  transition: transform .3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.25rem 1.1rem;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ════ CONTACT / CTA SECTION ════ */
#contacto {
  padding: 4rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#contacto::before {
  content: '';
  position: absolute;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 600px;
  background: radial-gradient(ellipse, rgba(29,90,155,.25) 0%, transparent 60%);
  pointer-events: none;
}

.contact-card {
  background: linear-gradient(135deg, var(--navy3) 0%, var(--ocean) 100%);
  border: 1px solid rgba(93,155,213,.3);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(7,17,31,.5);
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold2), transparent);
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: .75rem;
  line-height: 1.2;
}
.contact-title em { font-style: italic; color: var(--gold2); }

.contact-desc {
  font-size: .95rem;
  color: var(--foam);
  opacity: .8;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.75rem;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.5); }

.contact-info {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--foam);
  opacity: .7;
}

/* ════ FOOTER ════ */
#footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 1rem 0 1.25rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: .5rem;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(93,155,213,.08);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: all .2s;
}
.social-btn svg { display: block; flex-shrink: 0; }
.social-btn:hover { background: rgba(200,147,42,.15); color: var(--gold2); border-color: var(--gold); }

.footer-col-title {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 1.1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-links li a {
  font-size: .82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-links li a:hover { color: var(--foam); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: .62rem;
  color: var(--muted);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-family: var(--font-mono);
  font-size: .6rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: .05em;
}
.footer-legal a:hover { color: var(--foam); }

/* ════ SCROLL REVEAL ════ */
.sr {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.sr.visible { opacity: 1; transform: none; }

/* ════ FLOATING WA BUTTON ════ */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
  text-decoration: none;
  color: white;
  transition: transform .2s, box-shadow .2s;
  animation: waPulse 3s ease infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,.5); }
  50% { box-shadow: 0 8px 40px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.1); }
}

/* ════ MOBILE NAV ════ */
@media (max-width: 900px) {
  #ubicacion .container > div > div[style*="grid-template-columns"],
  #privado-12-personas .container > div {
    grid-template-columns: 1fr !important;
  }
  #ubicacion iframe { min-height: 300px !important; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-lang { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 5rem 1.5rem 3rem;
    text-align: center;
  }
  .hero-visual { display: none; }
  .hero-trust { justify-content: center; }
  .hero-actions { justify-content: center; }

  .tours-grid { grid-template-columns: 1fr; }
  .celebraciones-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-card { padding: 2.5rem 1.5rem; }
  .modal-body { padding: 1.25rem; }
}

@media (max-width: 540px) {
  .celebraciones-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile menu overlay */
#mobileMenu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(7,17,31,.97);
  backdrop-filter: blur(20px);
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
#mobileMenu.open { display: flex; }
#mobileMenu a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--foam);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
  letter-spacing: .01em;
}
#mobileMenu a:hover { color: var(--gold2); }
#mobileMenu .mob-sub {
  font-size: 1rem;
  font-family: var(--font-body);
  padding: .5rem 0 .5rem 1.5rem;
  color: var(--muted);
  border-bottom: none;
}
#mobileMenu .mob-sub:hover { color: var(--gold2); }
#mobileMenu .mob-cta {
  margin-top: 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
}
#menuClose {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
}

/* RTL support for Arabic */
[lang="ar"] body, body.rtl {
  direction: rtl;
  text-align: right;
}
[lang="ar"] .hero-inner,
[lang="ar"] .footer-grid,
[lang="ar"] .why-grid { direction: rtl; }
[lang="ar"] .nav-links { flex-direction: row-reverse; }
[lang="ar"] .section-eyebrow::before { background: linear-gradient(90deg, transparent, var(--gold2)); }
[lang="ar"] .section-eyebrow::after { background: linear-gradient(90deg, var(--gold2), transparent); }

/* Hindi / Devanagari font enhancement */
[lang="hi"] body { font-family: 'Noto Sans Devanagari', var(--font-body), sans-serif; }
/* Chinese font enhancement */
[lang="zh"] body { font-family: 'PingFang SC', 'Microsoft YaHei', var(--font-body), sans-serif; }

/* ════ GALLERY STRIP ════ */
@keyframes slideGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
#galleryStrip:hover { animation-play-state: paused; }

/* ════ LANDING PAGE SPECIFIC ════ */
/* Page hero (landing pages) */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,17,31,.92) 0%, rgba(7,17,31,.5) 50%, rgba(7,17,31,.25) 100%);
  z-index: 1;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 9rem 2rem 0;
  width: 100%;
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 1rem;
  padding: .4rem .9rem;
  background: rgba(200,147,42,.12);
  border: 1px solid rgba(200,147,42,.3);
  border-radius: 20px;
}
.page-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -.01em;
  max-width: 700px;
}
.page-hero-h1 em { font-style: italic; color: var(--gold2); }
.page-hero-sub {
  font-size: 1rem;
  color: var(--foam);
  opacity: .85;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.page-hero-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.page-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  font-size: .75rem;
  color: var(--foam);
  backdrop-filter: blur(8px);
}

/* Booking section */
.booking-section {
  padding: 3rem 0;
  background: var(--navy2);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .booking-grid { grid-template-columns: 1fr; }
  .page-hero-h1 { font-size: clamp(2rem, 7vw, 3rem); }
}

.booking-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.booking-info h2 em { font-style: italic; color: var(--gold2); }
.booking-info p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.included-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: var(--foam);
}
.included-list li::before {
  content: '✓';
  color: var(--gold2);
  font-weight: 700;
  flex-shrink: 0;
}

.price-box {
  background: var(--navy);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.price-box-from {
  font-family: var(--font-mono);
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: .25rem;
}
.price-box-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold2);
  line-height: 1;
}
.price-box-unit {
  font-size: .8rem;
  color: var(--muted);
  margin-top: .2rem;
}

.booking-widget-wrap {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  min-height: 400px;
}
.booking-widget-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

/* ══════════════════════════════════════════════
   LANDING PAGES — Shared styles
══════════════════════════════════════════════ */

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .6s; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* Button variants */
.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.5rem;
  border: 1px solid var(--border);
  color: var(--foam);
  border-radius: 10px;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  transition: background .2s, border-color .2s;
}
.btn-ghost:hover { background: rgba(93,155,213,.1); border-color: var(--foam); }

/* LP Hero */
.lp-hero {
  position: relative;
  min-height: 90svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
  overflow: hidden;
}
.lp-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  animation: hero-zoom 14s ease-out forwards;
  transform: scale(1.05);
}
.lp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,17,31,1) 0%, rgba(7,17,31,.5) 50%, rgba(7,17,31,.2) 100%);
}
.lp-hero-content { position: relative; z-index: 2; max-width: 800px; }
.lp-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(200,147,42,.15);
  border: 1px solid rgba(200,147,42,.3);
  color: var(--gold2);
  border-radius: 99px;
  padding: .4rem 1rem;
  font-size: .72rem;
  font-family: var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.lp-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: #f0f5fa;
  margin-bottom: 1.25rem;
}
.lp-h1 em { color: var(--gold2); font-style: italic; display: block; }
.lp-sub { font-size: 1.05rem; color: rgba(200,223,240,.75); line-height: 1.65; margin-bottom: 2rem; max-width: 600px; }
.lp-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2.5rem; }
.lp-meta-item { display: flex; flex-direction: column; gap: .2rem; }
.lp-meta-label { font-size: .62rem; font-family: var(--font-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.lp-meta-value { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: #f0f5fa; }
.lp-meta-value em { color: var(--gold2); font-style: normal; }

/* Section helpers */
.section-tag {
  display: inline-block;
  font-size: .65rem;
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: .75rem;
}
.section-lead { font-size: 1rem; color: var(--muted); line-height: 1.7; max-width: 600px; margin: 0 auto 2rem; }
.text-center { text-align: center; }

/* Includes grid */
.includes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.include-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(13,30,53,.6);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
}
.include-icon { font-size: 1.75rem; flex-shrink: 0; }
.include-text h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #f0f5fa; margin-bottom: .4rem; }
.include-text p { font-size: .84rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.step {
  background: rgba(13,30,53,.6);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
}
.step-num {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; color: var(--navy);
  margin-bottom: 1rem;
}
.step h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #f0f5fa; margin-bottom: .5rem; }
.step p { font-size: .84rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* Pricing box */
.pricing-box {
  background: rgba(13,30,53,.6);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.pricing-tag { font-size: .72rem; font-family: var(--font-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--gold2); margin-bottom: 1rem; }
.pricing-amount { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: #f0f5fa; margin-bottom: .5rem; line-height: 1; }
.pricing-amount sup { font-size: 1.5rem; vertical-align: top; margin-top: .6rem; }
.pricing-amount small { font-family: var(--font-body); font-size: .85rem; color: var(--muted); font-weight: 400; }
.pricing-note { font-size: .84rem; color: var(--muted); margin-bottom: 1.5rem; }

/* Booking / TuriTop placeholder */
.booking-section { background: var(--navy2); }
.booking-box { background: rgba(7,17,31,.5); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.booking-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.booking-header h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: #f0f5fa; margin: 0; }
.booking-body { padding: 2rem; }
.tt-placeholder { text-align: center; padding: 3rem 2rem; }
.tt-placeholder-icon { font-size: 3rem; margin-bottom: 1rem; }
.tt-placeholder h3 { font-family: var(--font-display); font-size: 1.4rem; color: #f0f5fa; margin-bottom: .75rem; }
.tt-placeholder p { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }
.tt-placeholder-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* LP Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.rev-card { background: rgba(13,30,53,.6); border: 1px solid var(--border); border-radius: 14px; padding: 1.75rem; }
.rev-stars { color: var(--gold2); font-size: 1rem; margin-bottom: .75rem; }
.rev-text { font-size: .9rem; color: rgba(200,223,240,.8); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.rev-author { display: flex; flex-direction: column; gap: .15rem; }
.rev-author strong { font-size: .85rem; color: #f0f5fa; }
.rev-author span { font-size: .72rem; color: var(--muted); font-family: var(--font-mono); }

/* LP FAQ */
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: .75rem; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  color: #f0f5fa; font-size: .95rem; font-weight: 600;
  cursor: pointer; gap: 1rem;
  font-family: var(--font-body);
}
.faq-arrow { flex-shrink: 0; transition: transform .25s; color: var(--gold2); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 1.5rem 1.25rem; font-size: .88rem; color: var(--muted); line-height: 1.7; margin: 0; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* Related tours */
.related { background: var(--navy); padding: 3rem 0; }
.related-grid { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.related-card {
  display: flex; align-items: center; gap: 1.25rem;
  background: rgba(13,30,53,.6);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.related-card:hover { border-color: var(--gold2); background: rgba(200,147,42,.08); }
.related-icon { font-size: 1.75rem; flex-shrink: 0; }
.related-info { flex: 1; }
.related-info h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #f0f5fa; margin-bottom: .2rem; }
.related-info p { font-size: .82rem; color: var(--muted); margin: 0; }
.related-price { font-family: var(--font-mono); font-size: .82rem; color: var(--gold2); flex-shrink: 0; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 100%);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  text-align: center;
}
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); color: #f0f5fa; margin-bottom: .75rem; }
.cta-banner h2 em { color: var(--gold2); font-style: italic; }
.cta-banner p { color: var(--muted); font-size: .95rem; margin-bottom: 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
