/* ═══════════════════════════════════════════════════════════
   TOP TOURS RIVIERA MAYA — LUXURY DARK THEME
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  --gold:        #c8860a;
  --gold-light:  #f5d485;
  --gold-dark:   #9c6500;
  --bg:          #0a0a0a;
  --bg-card:     #111111;
  --bg-card-2:   #161616;
  --bg-section:  #0e0e0e;
  --border:      rgba(200, 134, 10, 0.18);
  --border-subtle: rgba(255,255,255,0.06);
  --text:        #e8e2d8;
  --text-muted:  #8a7f72;
  --text-faint:  #4a4540;
  --white:       #ffffff;
  --green:       #2ecc71;
  --red:         #e74c3c;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 0 30px rgba(200, 134, 10, 0.2);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.6);
}

/* ─── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
h4 {
  font-family: var(--font-sans);
  font-weight: 500;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: linear-gradient(135deg, var(--gold) 0%, #e8a020 50%, var(--gold) 100%);
  background-size: 200% 200%;
  color: #0a0a0a;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 134, 10, 0.45);
}
.btn-gold svg { width: 18px; height: 18px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(200, 134, 10, 0.08);
  box-shadow: 0 0 20px rgba(200, 134, 10, 0.2);
  transform: translateY(-2px);
}
.btn-outline svg { width: 18px; height: 18px; }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-light svg { width: 18px; height: 18px; }

.btn-xl {
  font-size: 1rem;
  padding: var(--sp-5) var(--sp-10);
}
.btn-xl svg { width: 20px; height: 20px; }

/* ─── SECTION HEADERS ────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-16);
}
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: var(--sp-4);
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: var(--sp-4) auto 0;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--sp-5) 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-3) 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-top {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.nav-cta svg { width: 16px; height: 16px; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.3) 0%,
    rgba(10,10,10,0.55) 40%,
    rgba(10,10,10,0.92) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(80px + var(--sp-16)) var(--sp-6) var(--sp-24);
  max-width: 900px;
  margin: 0 auto;
  animation: fadeUp 1.2s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-pre {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 500;
  margin-bottom: var(--sp-5);
  animation: fadeUp 1.2s 0.2s ease both;
  opacity: 0;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 15vw, 11rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 0.9;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  animation: fadeUp 1.2s 0.3s ease both;
  opacity: 0;
}
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin: var(--sp-6) 0;
  animation: fadeUp 1.2s 0.45s ease both;
  opacity: 0;
}
.hero-divider span {
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-divider span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-divider svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  fill: var(--gold);
}
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  animation: fadeUp 1.2s 0.5s ease both;
  opacity: 0;
}
.hero-stops {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
  animation: fadeUp 1.2s 0.65s ease both;
  opacity: 0;
}
.hero-stop {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.hero-stop svg { width: 14px; height: 14px; color: var(--gold); }
.hero-dot { color: var(--gold); font-size: 1.2rem; }
.hero-btn {
  margin-top: var(--sp-10);
  animation: fadeUp 1.2s 0.8s ease both;
  opacity: 0;
}
.hero-scroll-hint {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: bounce 2s infinite;
}
.hero-scroll-hint svg { width: 16px; height: 16px; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ─── EXPERIENCE STRIP ───────────────────────────────────── */
.exp-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-8) 0;
}
.exp-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-8);
}
.exp-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.exp-item svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}
.exp-item div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.exp-item strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}
.exp-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.exp-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ─── TOURS SECTION ──────────────────────────────────────── */
.tours-section {
  padding: var(--sp-24) 0;
  background: var(--bg);
}
.tours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: start;
}

/* Tour Card Base */
.tour-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.tour-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  transition: var(--transition);
}
.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

/* Featured Card */
.tour-featured {
  border-color: var(--border);
  background: linear-gradient(160deg, #141008 0%, var(--bg-card) 60%);
}
.tour-featured::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.tour-featured:hover {
  box-shadow: var(--shadow-gold), var(--shadow-card);
}

.tour-badge {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: 20px;
}

.tour-card-top {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.tour-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(200, 134, 10, 0.12);
  border: 1px solid rgba(200, 134, 10, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tour-icon-wrap svg { width: 22px; height: 22px; color: var(--gold); }

.tour-icon-silver {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}
.tour-icon-silver svg { color: rgba(255,255,255,0.5); }

.tour-name {
  font-size: 1.7rem;
  color: var(--white);
  margin-top: var(--sp-2);
}
.tour-tagline {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tour-langs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}
.lang-tag {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 2px var(--sp-3);
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  white-space: nowrap;
}

/* Prices */
.tour-prices {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.price-row + .price-row {
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--sp-3);
}
.price-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.price-label em {
  font-size: 0.75rem;
  font-style: normal;
  color: var(--text-faint);
}
.price-amount {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}
.price-main .price-amount { color: var(--gold-light); font-size: 1.8rem; }
.price-currency {
  font-size: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text-muted);
  margin-right: 2px;
  vertical-align: super;
}
.price-badge-free {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: rgba(46, 204, 113, 0.12);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.25);
  padding: var(--sp-1) var(--sp-3);
  border-radius: 20px;
}

/* Include/Exclude lists */
.tour-includes h4,
.tour-excludes h4 {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.tour-includes h4 { color: var(--gold); }
.tour-includes h4 svg { width: 14px; height: 14px; color: var(--gold); }
.tour-excludes h4 { color: var(--text-faint); }
.tour-excludes h4 svg { width: 14px; height: 14px; }

.tour-includes ul,
.tour-excludes ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.tour-includes li,
.tour-excludes li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.88rem;
  color: var(--text);
}
.tour-includes li svg {
  width: 14px; height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}
.tour-excludes li {
  color: var(--text-muted);
}
.tour-excludes li svg {
  width: 14px; height: 14px;
  color: var(--text-faint);
  flex-shrink: 0;
}

.tour-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ─── ITINERARY ──────────────────────────────────────────── */
.itinerary-section {
  padding: var(--sp-24) 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border-subtle);
}
.itinerary-timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border) 10%, var(--border) 90%, transparent);
}
.timeline-item {
  display: grid;
  grid-template-columns: 100px 24px 1fr;
  gap: 0 var(--sp-6);
  margin-bottom: var(--sp-12);
  align-items: start;
}
.timeline-time {
  text-align: right;
  padding-top: 2px;
}
.timeline-time span {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  font-style: italic;
}
.timeline-dot {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--bg-section);
  box-shadow: 0 0 0 2px var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-dot-last {
  background: var(--bg-section);
  border-color: var(--gold);
}
.timeline-content {
  padding-bottom: var(--sp-4);
}
.timeline-content h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: var(--sp-3);
}
.timeline-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.timeline-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: var(--sp-4);
  border: 1px solid var(--border-subtle);
  height: 220px;
}
.timeline-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.timeline-img-wrap:hover img { transform: scale(1.04); }
.timeline-tip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
  font-size: 0.78rem;
  color: var(--gold);
  background: rgba(200, 134, 10, 0.08);
  border: 1px solid rgba(200, 134, 10, 0.2);
  padding: var(--sp-2) var(--sp-4);
  border-radius: 20px;
}
.timeline-tip svg { width: 13px; height: 13px; }

/* ─── WHAT TO BRING ──────────────────────────────────────── */
.bring-section {
  padding: var(--sp-24) 0;
  background: var(--bg);
}
.bring-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.bring-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: var(--sp-6);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.bring-item:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.bring-item-highlight {
  border-color: rgba(200, 134, 10, 0.3);
  background: linear-gradient(160deg, #130f05 0%, var(--bg-card) 70%);
}
.bring-item-highlight:hover {
  box-shadow: var(--shadow-gold);
}
.bring-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(200, 134, 10, 0.1);
  border: 1px solid rgba(200, 134, 10, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
  transition: var(--transition);
}
.bring-item:hover .bring-icon {
  background: rgba(200, 134, 10, 0.18);
  transform: scale(1.1);
}
.bring-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}
.bring-item h3 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--sp-2);
}
.bring-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.bring-item p strong { color: var(--gold); }

/* ─── GALLERY STRIP ──────────────────────────────────────── */
.gallery-strip {
  display: flex;
  height: 320px;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.gallery-item {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.gallery-item-wide { flex: 1.5; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.75) saturate(0.85);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.9) saturate(1);
}

/* ─── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: var(--sp-24) 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.6);
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.7) 0%,
    rgba(30,15,0,0.6) 50%,
    rgba(10,10,10,0.7) 100%
  );
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: var(--sp-5);
}
.cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto var(--sp-10);
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.cta-note {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}
.cta-note svg { width: 13px; height: 13px; color: var(--gold); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #060606;
  border-top: 1px solid var(--border);
}
.footer-inner {
  padding: var(--sp-16) var(--sp-6);
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: var(--sp-10);
}
.footer-logo-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin-bottom: var(--sp-3);
}
.footer-logo-name span {
  font-size: 0.7rem;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--text-muted);
}
.footer-tagline {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  font-family: var(--font-serif);
  margin-bottom: var(--sp-4);
}
.footer-location {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-location svg { width: 14px; height: 14px; color: var(--gold); }
.footer-contact h4,
.footer-tours h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
}
.footer-contact ul,
.footer-tours ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.footer-contact li a,
.footer-tours li a,
.footer-contact li span,
.footer-tours li span {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-contact li a:hover,
.footer-tours li a:hover { color: var(--gold); }
.footer-contact li svg,
.footer-tours li svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: var(--sp-6) var(--sp-6);
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

/* ─── FLOATING WHATSAPP ──────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-wa 3s infinite;
}
.whatsapp-float:hover {
  background: #20bd5a;
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  animation: none;
}
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50%      { box-shadow: 0 4px 35px rgba(37, 211, 102, 0.7); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* ─── Tablet 768px ── */
@media (max-width: 1024px) {
  .bring-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .tours-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .itinerary-timeline::before { display: none; }
  .timeline-item {
    grid-template-columns: 70px 20px 1fr;
    gap: 0 var(--sp-4);
  }
  .bring-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-strip-inner { gap: var(--sp-5); }
  .exp-sep { display: none; }
  .gallery-strip {
    flex-wrap: wrap;
    height: auto;
  }
  .gallery-item { flex: 0 0 50%; height: 180px; }
  .gallery-item-wide { flex: 0 0 100%; height: 200px; }
  .cta-btns { flex-direction: column; align-items: stretch; text-align: center; }
  .btn-gold.btn-xl, .btn-outline-light.btn-xl { justify-content: center; }
  .hero-title { letter-spacing: 0.06em; }
}

/* ─── Mobile 360px ── */
@media (max-width: 480px) {
  .nav-cta span { display: none; }
  .nav-cta { padding: var(--sp-2) var(--sp-4); }
  .hero-stops { flex-direction: column; gap: var(--sp-2); }
  .hero-dot { display: none; }
  .bring-grid { grid-template-columns: 1fr; }
  .gallery-item { flex: 0 0 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 60px 16px 1fr; }
  .tour-prices .price-amount { font-size: 1.3rem; }
  .price-main .price-amount { font-size: 1.5rem; }
}