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

:root {
  --navy:    #080e1a;
  --navy2:   #0d1628;
  --navy3:   #111f38;
  --steel:   #1a3a6e;
  --blue:    #1e6dc5;
  --blue-lt: #4a9de8;
  --gold:    #c9a84c;
  --gold-lt: #e8c96b;
  --silver:  #b0bfd4;
  --cream:   #f0f4fb;
  --sand:    #e8edf7;
  --dark:    #080e1a;
  --text:    #0d1628;
  --muted:   #5a6f8a;
  --white:   #ffffff;
  --radius:  16px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
body::before {
  content: '';
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s;
  transform: translate(-50%, -50%);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━
   NAVBAR
━━━━━━━━━━━━━━━━━━━━━━━━ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
  background: linear-gradient(180deg, rgba(8,14,26,0.85) 0%, transparent 100%);
}
.navbar.scrolled {
  background: rgba(8,14,26,0.97);
  padding: 10px 60px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30,109,197,0.2);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(30,109,197,90));
  transition: filter 0.3s;
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 14px rgba(74,157,232,.5));
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}
.nav-logo-sub {
  color: var(--gold);
  letter-spacing: 3px;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--blue-lt);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--blue-lt); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--steel));
  color: var(--white);
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid rgba(74,157,232,0.4);
  box-shadow: 0 0 20px rgba(30,109,197,0.3);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--blue-lt), var(--blue));
  transform: scale(1.04);
  box-shadow: 0 0 30px rgba(74,157,232,0.5);
}
.hamburger {
  display: none;
  background: none; border: none;
  color: white; font-size: 24px; cursor: pointer;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━
   HERO SLIDER
━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}
.slider { width: 100%; height: 100%; position: relative; }

.slide {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.9s ease, transform 1.2s ease;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,14,26,0.80) 0%,
    rgba(8,14,26,0.40) 60%,
    transparent 100%
  );
}
.slide-content {
  position: absolute;
  bottom: 140px;
  left: 10%;
  max-width: 560px;
  animation: slideUp 0.9s ease 0.3s both;
}
.slide:not(.active) .slide-content { animation: none; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.slide-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(68px, 9vw, 120px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 20px;
}
.slide-title em {
  font-style: italic;
  color: var(--gold-lt);
}
.slide-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 420px;
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--steel));
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid rgba(74,157,232,0.3);
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(30,109,197,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-lt), var(--blue));
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(74,157,232,0.45);
}
.btn-full { width: 100%; text-align: center; font-size: 16px; padding: 18px; }

.slide-meta {
  position: absolute;
  bottom: 140px;
  right: 10%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: slideUp 0.9s ease 0.5s both;
}
.slide:not(.active) .slide-meta { animation: none; }
.meta-item {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 10px 18px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
}
.arrow {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.arrow:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue-lt);
  box-shadow: 0 0 16px rgba(30,109,197,0.5);
}
.dots { display: flex; gap: 8px; align-items: center; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--blue-lt);
}

.scroll-hint {
  position: absolute;
  bottom: 50px;
  right: 10%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.3); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━
   MARQUEE
━━━━━━━━━━━━━━━━━━━━━━━━ */
.marquee-strip {
  background: var(--navy2);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(30,109,197,0.25);
  border-bottom: 1px solid rgba(30,109,197,0.25);
}
.marquee-inner {
  display: inline-flex;
  gap: 40px;
  animation: marquee 30s linear infinite;
}
.marquee-inner span {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.marquee-inner span:nth-child(even) { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━
   STATS
━━━━━━━━━━━━━━━━━━━━━━━━ */
.stats-section {
  background: var(--sand);
  padding: 80px 60px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--silver);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-card {
  background: var(--cream);
  padding: 60px 40px;
  text-align: center;
  transition: background 0.3s;
}
.stat-card:hover { background: var(--navy2); }
.stat-card:hover .stat-num { color: var(--blue-lt); }
.stat-card:hover .stat-label { color: var(--gold); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--navy2);
  line-height: 1;
  transition: color 0.3s;
}
.stat-label {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  transition: color 0.3s;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION HEADER
━━━━━━━━━━━━━━━━━━━━━━━━ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--blue); }
.section-sub {
  color: var(--muted);
  font-size: 16px;
  margin-top: 16px;
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━
   DESTINATIONS
━━━━━━━━━━━━━━━━━━━━━━━━ */
.destinations-section {
  padding: 100px 60px;
  background: var(--cream);
}
.dest-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.dest-card.tall { grid-row: span 2; }
.dest-card.wide { grid-column: span 2; }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,14,12,0.85) 0%, transparent 60%);
  transition: background 0.4s;
}
.dest-card:hover .dest-overlay {
  background: rgba(15,14,12,0.6);
}
.dest-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  transition: transform 0.4s;
}
.dest-card:hover .dest-info { transform: translateY(-10px); }
.dest-region {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.dest-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: white;
}
.dest-price {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  display: block;
}
.dest-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s;
  text-align: center;
  padding: 30px;
}
.dest-card:hover .dest-hover { opacity: 1; }
.dest-hover p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.dest-btn {
  background: var(--gold);
  color: var(--dark);
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}
.dest-btn:hover { background: var(--gold-lt); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━
   EXPERIENCES
━━━━━━━━━━━━━━━━━━━━━━━━ */
.experiences-section {
  position: relative;
  padding: 100px 60px;
  background: var(--dark);
  overflow: hidden;
}
.exp-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(100px, 18vw, 240px);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 20px;
}
.experiences-section .section-title { color: var(--white); }
.experiences-section .section-tag { border-color: var(--gold); color: var(--gold); }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.exp-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 48px 36px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.exp-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rust));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.exp-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.3);
}
.exp-card:hover::before { transform: scaleX(1); }
.exp-icon { font-size: 42px; margin-bottom: 20px; }
.exp-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: white;
  margin-bottom: 14px;
}
.exp-card p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.8;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━
   PACKAGES
━━━━━━━━━━━━━━━━━━━━━━━━ */
.packages-section {
  padding: 100px 60px;
  background: var(--sand);
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.pkg-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  transition: transform 0.4s, box-shadow 0.4s;
  position: relative;
}
.pkg-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
}
.pkg-card.featured {
  border: 2px solid var(--gold);
  transform: translateY(-12px);
}
.pkg-card.featured:hover { transform: translateY(-20px); }
.pkg-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--dark);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}
.pkg-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}
.pkg-card:hover .pkg-image { transform: scale(1.05); }
.pkg-body { padding: 28px; }
.pkg-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.pkg-tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--sand);
  padding: 4px 10px;
  border-radius: 12px;
}
.pkg-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 10px;
}
.pkg-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--sand);
}
.pkg-price { font-size: 14px; color: var(--muted); }
.pkg-price span { display: block; font-size: 11px; }
.pkg-price { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--dark); }
.btn-secondary {
  background: transparent;
  border: 2px solid var(--dark);
  color: var(--dark);
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}
.btn-secondary:hover {
  background: var(--dark);
  color: white;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS
━━━━━━━━━━━━━━━━━━━━━━━━ */
.testimonials-section {
  padding: 100px 60px;
  background: var(--cream);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 36px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.testi-quote {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 20px;
  opacity: 0.5;
}
.testi-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
}
.testi-author strong { font-size: 15px; color: var(--dark); }
.testi-author small { font-size: 12px; color: var(--muted); }
.testi-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT
━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact-section {
  padding: 100px 60px;
  background: var(--dark);
}
.contact-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.contact-inner .section-tag { border-color: var(--gold); color: var(--gold); }
.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
}
.contact-title em { font-style: italic; color: var(--gold); }
.contact-inner > p {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  margin-bottom: 48px;
}
.contact-form { text-align: left; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  padding: 16px 20px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.35); }
.form-input:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.form-input option { background: var(--dark); color: white; }
.form-textarea {
  width: 100%;
  min-height: 130px;
  resize: vertical;
  margin-bottom: 20px;
  display: block;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer {
  background: #0a0907;
  padding: 80px 60px 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 8px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 28px;
}
.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 13px; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--gold); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━
   TOAST
━━━━━━━━━━━━━━━━━━━━━━━━ */
.toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--gold);
  color: var(--dark);
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(201,168,76,0.4);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .navbar { padding: 18px 36px; }
  .navbar.scrolled { padding: 14px 36px; }
  .nav-links { gap: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-card.tall { grid-row: span 1; }
  .dest-card.wide { grid-column: span 2; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .pkg-card.featured { transform: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .navbar.scrolled { padding: 12px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .slide-content { left: 6%; bottom: 120px; }
  .slide-title { font-size: clamp(52px, 14vw, 90px); }
  .slide-meta { display: none; }
  .scroll-hint { display: none; }
  .stats-section { padding: 60px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 40px; }
  .destinations-section,
  .experiences-section,
  .packages-section,
  .testimonials-section,
  .contact-section { padding: 70px 24px; }
  .dest-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .dest-card { height: 260px; }
  .dest-card.tall, .dest-card.wide { grid-row: span 1; grid-column: span 1; }
  .exp-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer { padding: 60px 24px 28px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


/* MOBILE MENU */
@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8,14,26,0.98);
    flex-direction: column;
    gap: 24px;
    padding: 32px 0;
    display: none;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 14px;
  }

  .nav-cta {
    display: none;
  }
}
