/* ═══════════════════════════════════════════
   HOLIDEX SAFARIS — COMPLETE STYLESHEET
   Luxury Dark Safari · Playfair + DM Sans
═══════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { overflow-x:hidden; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
img { display:block; max-width:100%; }
button { cursor:pointer; font-family:inherit; }

/* ── TOKENS ── */
:root {
  --gold:        #d4af37;
  --gold-light:  #e8c84a;
  --gold-dim:    rgba(212,175,55,.14);
  --gold-glow:   rgba(212,175,55,.35);
  --dark:        #080c09;
  --dark-2:      #0d1410;
  --dark-3:      #111a12;
  --green-deep:  #162112;
  --light:       #f0ede6;
  --muted:       rgba(240,237,230,.5);
  --border:      rgba(212,175,55,.13);
  --ff-display:  'Playfair Display', Georgia, serif;
  --ff-body:     'DM Sans', sans-serif;
  --ease:        cubic-bezier(.22,1,.36,1);
  --ease-in:     cubic-bezier(.4,0,1,1);
}

body {
  font-family: var(--ff-body);
  background: var(--dark);
  color: var(--light);
  -webkit-font-smoothing: antialiased;
}

.testi {
  opacity: 0;
  position: absolute;
  transition: opacity 0.5s ease;
}

.testi.active {
  opacity: 1;
  position: relative;
}

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  width: 360px; height: 360px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(212,175,55,.11) 0%, transparent 68%);
  transform: translate(-50%,-50%);
  z-index: 9999;
  mix-blend-mode: screen;
  transition: opacity .3s;
  will-change: left, top;
}

/* ── SHARED ── */
.eyebrow {
  display: block;
  font-family: var(--ff-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow--light { color: rgba(212,175,55,.75); }

.sec-head { text-align:center; margin-bottom:60px; }
.sec-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 400;
  color: var(--light);
  margin-bottom: 14px;
  letter-spacing: -.3px;
}
.sec-sub {
  font-size: .95rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal.active { opacity:1; transform:translateY(0); }

/* Buttons */
.btn-gold {
  display: inline-block;
  padding: 13px 30px;
  background: var(--gold);
  color: #000;
  font-family: var(--ff-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  transition: all .35s var(--ease);
  cursor: pointer;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px var(--gold-glow);
}
.btn-outline {
  display: inline-block;
  padding: 13px 30px;
  background: rgba(255,255,255,.07);
  color: var(--light);
  font-family: var(--ff-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  transition: all .35s var(--ease);
}
.btn-outline:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-2px);
}

/* ═══════════════════════════
   NAVBAR
═══════════════════════════ */
.navbar {
  position: fixed; top:0; left:0; width:100%;
  display: flex; align-items:center; justify-content:space-between;
  padding: 18px 72px;
  background: rgba(8,12,9,.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: padding .4s var(--ease), background .4s, border-color .4s;
}
.navbar.scrolled {
  padding: 14px 72px;
  background: rgba(8,12,9,.94);
  border-color: var(--border);
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .5px;
}
.nav-links { display:flex; gap:30px; }
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(240,237,230,.72);
  transition: color .3s;
}
.nav-links a:hover { color:var(--gold); }
.nav-btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #000;
  background: var(--gold);
  padding: 9px 22px;
  border-radius: 50px;
  transition: all .3s var(--ease);
}
.nav-btn:hover { background:var(--gold-light); transform:translateY(-1px); }

/* ── LOGO WITH TAGLINE ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Logo image */
.nav-logo-img {
  height: 52px;
  width: auto;
  transition: transform .3s var(--ease), filter .3s var(--ease);
}

.nav-logo-img:hover {
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 0 10px var(--gold-glow));
}

/* Text container */
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

/* Brand name */
.nav-logo-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .4px;
}

/* Tagline */
.nav-logo-tagline {
  font-style: italic;
  font-size: .88rem;
  letter-spacing: 1px;
}

.nav-logo-tagline,
.f-tag {
  font-family: var(--ff-display); /* switch to elegant font */
  font-style: italic;
  font-size: 11px;
  letter-spacing: .6px;
  color: rgba(240,237,230,.7); /* slightly brighter */
}

/* ═══════════════════════════
   HERO
═══════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items:center;
  padding: 0 80px;
  background: url('../images/hero-safari.jpg') center/cover no-repeat;
  overflow: hidden;
  animation: heroZoom 26s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0%   { background-size:100%; }
  100% { background-size:113%; }
}
.hero-overlay {
  position: absolute; inset:0;
  background: linear-gradient(
    100deg,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.55) 42%,
    rgba(0,0,0,.22) 72%,
    rgba(0,0,0,.08) 100%
  );
  z-index: 1;
}
.hero-overlay::after {
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 18% 55%, rgba(212,175,55,.09), transparent 52%);
}
#fireflyCanvas {
  position: absolute; inset:0;
  width:100%; height:100%;
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index:3;
  max-width: 680px;
  opacity: 0; transform: translateY(28px);
  animation: heroIn 1.5s var(--ease) .4s forwards;
}
@keyframes heroIn { to { opacity:1; transform:translateY(0); } }

.hero-pill {
  display: inline-block;
  padding: 7px 18px;
  border: 1px solid rgba(212,175,55,.4);
  border-radius: 50px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem,5.8vw,5.2rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--light);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(240,237,230,.72);
  max-width: 500px;
  margin-bottom: 34px;
}
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; }

/* ═══════════════════════════
   TRUST BAR — Modern Actionable
═══════════════════════════ */
.trust-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 60px;
  overflow-x: auto;
  scrollbar-width: none;
}
.trust-bar::-webkit-scrollbar { display:none; }
.trust-inner {
  display: flex;
  align-items: stretch;
  min-width: max-content;
  width: 100%;
}
.trust-card {
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-right: 1px solid rgba(212,175,55,.12);
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  padding: 22px 28px;
  transition: background .3s, transform .3s var(--ease);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-width: 190px;

}
.trust-card::before {
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(212,175,55,.18),
    transparent 70%
  );
  opacity: 0;
  transform: translateX(-60%);
  transition: opacity .4s var(--ease);
}

.trust-card:hover::before { transform:scaleX(1);  opacity: 1; animation: goldSweep 1.2s ease forwards; }
.trust-card:hover { background: rgba(212,175,55,.05); }
.trust-card:last-child { border-right:none; }

@keyframes goldSweep {
  0% { transform: translateX(-60%); }
  100% { transform: translateX(120%); }
}

.trust-card--featured {
  background: linear-gradient(135deg, rgba(212,175,55,.12), rgba(212,175,55,.04));
  border-right: 1px solid rgba(212,175,55,.3);
}
.trust-card--featured .trust-num { color:var(--gold); }
.trust-card--featured::before { transform:scaleX(1) !important; }

.trust-icon {
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  opacity: .9;
}
.trust-body {
  display:flex; flex-direction:column; gap:2px; flex:1;
}

.trust-num {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--light);
  line-height: 1;
}
.trust-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-arrow {
  font-size: 1rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s, transform .3s var(--ease);
}
.trust-card:hover .trust-arrow {
  opacity: 1; transform:translateX(0); transform: translateY(-3px); 
}

/* ═══════════════════════════
   EXPERIENCES
═══════════════════════════ */
.experiences {
  padding: 110px 60px;
  background: var(--dark);
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.exp-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--dark-3);
  display: flex; flex-direction:column;
  transition: transform .45s var(--ease), box-shadow .45s;
  cursor: pointer;
  transform-style: preserve-3d;
  will-change: transform;
}
.exp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(0,0,0,.6);
}
.exp-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform .7s var(--ease);
  /* Fallback gradient so card is visible without images */
  background-color: var(--green-deep);
  background-image: linear-gradient(135deg, #162112 0%, #1f3520 100%);
  transform: translateZ(40px);
}
.exp-card:hover .exp-img { transform:scale(1.06); }
.exp-content {
  padding: 24px 24px 28px;
  display: flex; flex-direction:column; gap:8px; flex:1;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 16px 16px;
}
.exp-num {
  font-family: var(--ff-display);
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .6;
  letter-spacing: 2px;
}
.exp-content h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--light);
}
.exp-content p {
  font-size: .875rem;
  line-height: 1.65;
  color: var(--muted);
  flex: 1;
}
.exp-link {
  display: inline-flex; align-items:center; gap:6px;
  margin-top: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .3s;
}
.exp-link span { transition: transform .3s var(--ease); }
.exp-link:hover span { transform:translateX(4px); }

/* ═══════════════════════════
   WHY US — Vibrant Redesign
═══════════════════════════ */
.why-us {
  position: relative;
  padding: 120px 60px;
  overflow: hidden;
  background: var(--green-deep);
}
.why-bg-pattern {
  position: absolute; inset:0; pointer-events:none; z-index:0;
  background:
    radial-gradient(ellipse 80% 60% at 0% 50%, rgba(212,175,55,.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 100% 20%, rgba(31,53,32,.8) 0%, transparent 60%);
}
.why-bg-pattern::before {
  content:'';
  position:absolute; inset:0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(212,175,55,.03) 0px,
    rgba(212,175,55,.03) 1px,
    transparent 1px,
    transparent 28px
  );
}
.why-inner {
  position: relative; z-index:1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}
/* Left */
.why-left { display:flex; flex-direction:column; gap:0; }
.why-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem,4.5vw,4rem);
  font-weight: 400;
  color: var(--light);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.why-title em { font-style:italic; color:var(--gold); }
.why-intro {
  font-size: .975rem;
  line-height: 1.8;
  color: rgba(240,237,230,.65);
  max-width: 420px;
  margin-bottom: 30px;
}
.why-cta { margin-bottom:48px; }
.why-stat-row {
  display: flex; gap:40px;
  padding-top: 40px;
  border-top: 1px solid rgba(212,175,55,.15);
}
.why-stat { display:flex; flex-direction:column; gap:4px; }
.wstat-n {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.wstat-plus {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--gold);
  vertical-align: top;
  margin-top: 4px;
}
.wstat-l {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(240,237,230,.5);
}
/* Right */
.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-card {
  position: relative;
  padding: 30px 26px 26px;
  border-radius: 18px;
  display: flex; flex-direction:column; gap:12px;
  border: 1px solid rgba(212,175,55,.15);
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
  overflow: hidden;
  cursor: default;
}
.why-card::after {
  content:'';
  position:absolute; inset:0;
  opacity:0;
  transition: opacity .4s;
  border-radius:18px;
}
.why-card:hover { transform:translateY(-6px); border-color:rgba(212,175,55,.4); }
.why-card:hover::after { opacity:1; }

.why-card--1 { background: linear-gradient(135deg, rgba(212,175,55,.1), rgba(212,175,55,.03)); }
.why-card--1:hover { box-shadow:0 20px 50px rgba(212,175,55,.15); }

.why-card--2 { background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01)); }
.why-card--2:hover { box-shadow:0 20px 50px rgba(0,0,0,.4); }

.why-card--3 {
  background: linear-gradient(135deg, rgba(31,80,40,.4), rgba(20,50,28,.2));
  border-color: rgba(80,180,80,.15);
}
.why-card--3:hover { box-shadow:0 20px 50px rgba(30,120,50,.15); border-color:rgba(80,200,80,.3); }

.why-card--4 {
  background: linear-gradient(135deg, rgba(40,60,200,.1), rgba(20,30,120,.05));
  border-color: rgba(100,140,255,.15);
}
.why-card--4:hover { box-shadow:0 20px 50px rgba(40,80,200,.15); border-color:rgba(100,140,255,.3); }

.wc-icon-wrap {
  width: 46px; height:46px;
  border-radius: 12px;
  background: rgba(212,175,55,.12);
  display: flex; align-items:center; justify-content:center;
  font-size: 1.35rem;
  transition: transform .35s var(--ease), background .3s;
}
.why-card:hover .wc-icon-wrap { transform:scale(1.1) rotate(-4deg); background:rgba(212,175,55,.2); }
.wc-text h3 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 6px;
}
.wc-text p {
  font-size: .83rem;
  line-height: 1.65;
  color: var(--muted);
}
.wc-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(212,175,55,.12);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,.2);
  margin-top: auto;
}

/* ═══════════════════════════
   DESTINATIONS
═══════════════════════════ */
#activeImage {
  min-height: 100vh;
  object-fit: cover;
}

.destinations {
  position: relative;
  width:100%; height:100vh;
  overflow: hidden;
  display: flex; align-items:center;
  padding: 80px 60px;
}
.dest-content {
  position:relative; z-index:5;
  max-width:360px;
}
.dest-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight:400; color:var(--light);
  margin-bottom:10px;
}
.dest-content p { font-size:.9rem; color:var(--muted); line-height:1.6; }
.dest-wrapper { position:absolute; inset:0; }
.dest-display { position:absolute; inset:0; z-index:1; }
.dest-display img {
  width:100%; height:100%; object-fit:cover;
  animation: slowzoom 22s ease-in-out infinite alternate;
  will-change: transform;
  background-color: var(--green-deep); /* fallback */
}
@keyframes slowzoom { 0%{transform:scale(1)} 100%{transform:scale(1.07)} }
.dest-display::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(105deg, rgba(8,12,9,.88) 0%, rgba(8,12,9,.4) 48%, rgba(8,12,9,.12) 100%);
  z-index:2;
}
.dest-overlay {
  position:absolute; bottom:72px; left:60px; z-index:3;
}
.dest-overlay h3 {
  font-family:var(--ff-display);
  font-size:3rem; font-weight:400;
  color:var(--gold); margin-bottom:8px;
  will-change:transform,opacity;
}
.dest-overlay p {
  font-size:1.05rem;
  color:rgba(240,237,230,.88);
  will-change:transform,opacity;
}
.dest-stack {
  position:absolute; bottom:56px; right:60px;
  width:200px; height:260px; z-index:10;
}
.stack-card {
  position:absolute; width:100%; height:100%;
  border-radius:14px;
  background-size:cover; background-position:center;
  background-color: var(--green-deep);
  cursor:pointer;
  box-shadow:0 20px 50px rgba(0,0,0,.8);
  will-change:transform,opacity;
  transition: box-shadow .3s;
}
.stack-card.active { box-shadow:0 0 28px rgba(212,175,55,.55),0 20px 50px rgba(0,0,0,.8); }
.stack-card:hover  { box-shadow:0 0 18px rgba(212,175,55,.35),0 28px 60px rgba(0,0,0,.9); }

/* ═══════════════════════════
   MAP
═══════════════════════════ */
.map-section { padding:110px 60px; background:var(--dark-2); }
#map {
  height:520px; border-radius:16px; overflow:hidden;
  border:1px solid var(--border);
  box-shadow:0 24px 60px rgba(0,0,0,.55);
  background: var(--dark-3);
}
/* Leaflet overrides */
.leaflet-container { background:#0a1209 !important; font-family:var(--ff-body) !important; }
.leaflet-control-zoom a {
  background:rgba(13,20,18,.9) !important; color:var(--gold) !important;
  border-color:var(--border) !important;
}
.leaflet-popup-content-wrapper {
  background:rgba(13,20,16,.95) !important;
  border:1px solid var(--border) !important;
  border-radius:12px !important;
  color:var(--light) !important;
  font-family:var(--ff-body) !important;
  font-size:13px !important;
  backdrop-filter:blur(12px);
  box-shadow:0 8px 30px rgba(0,0,0,.6) !important;
}
.leaflet-popup-tip { background:rgba(13,20,16,.95) !important; }
.leaflet-popup-close-button { color:var(--gold) !important; font-size:16px !important; }
/* gold pulse marker */
.gold-marker {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gold-dot {
  width:10px; height:10px;
  background:var(--gold); border-radius:50%;
  position:relative;
  border-radius: 50%;
  box-shadow:
    0 0 10px #d4af37,
    0 0 20px #d4af37,
    0 0 40px rgba(212,175,55,0.6);
}
.gold-dot::after {
  content:''; position:absolute;
  top:-4px; left:-4px;
  width:18px; height:18px;
  border:1.5px solid var(--gold); border-radius:50%;
  animation:mapPulse 2s ease-out infinite;
}
@keyframes mapPulse {
  0%  { transform:scale(1); opacity:.85; }
  70% { transform:scale(2.2); opacity:0; }
  100%{ opacity:0; }
}

/* ═══════════════════════════
   TESTIMONIALS
═══════════════════════════ */
.testimonials { padding:110px 60px; text-align:center; background:var(--dark); }
.testi-wrapper {
  max-width:740px; margin:0 auto 32px;
  min-height:160px; position:relative;
}
.testi { display:none; opacity:0; transition:opacity .7s ease; }
.testi.active { display:block; opacity:1; }
.testi blockquote {
  font-family:var(--ff-display);
  font-size:1.4rem; font-style:italic; font-weight:400;
  line-height:1.75; color:var(--light);
  margin-bottom:20px; position:relative; padding:0 20px;
}
.testi blockquote::before {
  content:'\201C';
  font-size:5.5rem; color:var(--gold); opacity:.22;
  position:absolute; top:-32px; left:-8px;
  font-family:Georgia,serif; line-height:1;
}
.testi cite {
  font-size:.83rem; letter-spacing:2px;
  color:var(--gold); opacity:.8;
  font-style:normal; text-transform:uppercase;
}
.testi-dots { display:flex; justify-content:center; gap:10px; }
.tdot {
  width:8px; height:8px;
  border-radius:50%; border:none;
  background:rgba(255,255,255,.18); cursor:pointer;
  transition:background .3s, transform .3s;
}
.tdot.active { background:var(--gold); transform:scale(1.35); }

/* ═══════════════════════════
   BOOKING
═══════════════════════════ */
.bgroup #gCount,
.bgroup #durationCount,
.bgroup input[name="duration"] {
  border-bottom: none;
}

.booking {
  position:relative; padding:120px 60px; overflow:hidden;
  background: linear-gradient(180deg, var(--dark) 0%, var(--green-deep) 60%, var(--dark) 100%);
}
.booking-glow {
  position:absolute; inset:0; pointer-events:none; z-index:0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212,175,55,.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 85%, rgba(20,50,25,.5) 0%, transparent 60%);
}
.booking-glow::before, .booking-glow::after {
  content:''; position:absolute; border-radius:50%;
  border:1px solid rgba(212,175,55,.05);
}
.booking-glow::before { width:700px;height:700px; top:-280px;right:-240px; }
.booking-glow::after  { width:320px;height:320px; bottom:60px;left:-100px; }
.booking-inner { position:relative; z-index:2; max-width:980px; margin:0 auto; }
.booking-head { text-align:center; margin-bottom:52px; }
.booking-head h2 {
  font-family:var(--ff-display);
  font-size:clamp(2rem,4vw,3rem); font-weight:400;
  color:var(--light); margin-bottom:14px; letter-spacing:-.3px;
}
.booking-head p { font-size:.95rem; color:var(--muted); max-width:500px; margin:0 auto; line-height:1.75; }

/* Card */
.booking-card {
  background:rgba(255,255,255,.022);
  border:1px solid var(--border);
  border-radius:22px; padding:56px 56px 48px;
  position:relative; overflow:hidden;
  backdrop-filter:blur(12px);
}
.booking-card::before {
  content:''; position:absolute; top:0; left:50%;
  transform:translateX(-50%);
  width:200px; height:1px;
  background:linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Form */
.bform { display:flex; flex-direction:column; gap:28px; }
.brow {
  display:grid; grid-template-columns:1fr 1fr; gap:32px;
}
.brow-full { grid-template-columns:1fr !important; }
.bgroup { display:flex; flex-direction:column; position:relative; }
.bgroup label {
  font-size:10px; font-weight:500; letter-spacing:2px;
  text-transform:uppercase; color:var(--gold); opacity:.9; margin-bottom:10px;
}
.req { color:var(--gold); opacity:.6; }
.bgroup input, .bgroup textarea {
  background:transparent; border:none;
  border-bottom:1px solid rgba(255,255,255,.14);
  color:var(--light); font-family:var(--ff-body);
  font-size:.95rem; padding:8px 0 10px;
  outline:none; transition:border-color .3s;
  caret-color:var(--gold);
}
.bgroup input[type="date"] { color-scheme:dark; }
.bgroup input::placeholder, .bgroup textarea::placeholder { color:rgba(255,255,255,.2); }
.bgroup input:focus, .bgroup textarea:focus { border-bottom-color:rgba(212,175,55,.5); }
.bline {
  display:block; height:1px;
  background:var(--gold);
  transform:scaleX(0); transform-origin:left;
  transition:transform .4s var(--ease); margin-top:-1px;
  font-style:normal;
}
.bgroup input:focus ~ .bline,
.bgroup textarea:focus ~ .bline,
.bselect-wrap:focus-within ~ .bline { transform:scaleX(1); }
.bgroup textarea { resize:none; line-height:1.75; }

/* Select */
.bselect-wrap { position:relative; }
.bselect-wrap select {
  width:100%; background:transparent; border:none;
  border-bottom:1px solid rgba(255,255,255,.14);
  color:var(--light); font-family:var(--ff-body);
  font-size:.95rem; padding:8px 24px 10px 0;
  outline:none; appearance:none; cursor:pointer;
  transition:border-color .3s;
}
.bselect-wrap select:focus { border-bottom-color:rgba(212,175,55,.5); }
.bselect-wrap select option { background:#0e1810; color:var(--light); }
.bsel-arr {
  position:absolute; right:2px; top:50%; transform:translateY(-50%);
  color:var(--gold); font-size:1rem; pointer-events:none; opacity:.7;
}

#duration::-webkit-outer-spin-button,
#duration::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#durationCount {
  appearance: textfield;
  -moz-appearance: textfield;
}

/* Guest counter */
.guest-row {
  display:flex; align-items:center;
  padding-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,.14);
  width:fit-content; gap:0;
}

/* Hide number input spinners (WebKit / Blink) */
#gCount::-webkit-outer-spin-button,
#gCount::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide spinners for Firefox */
#gCount {
  appearance: textfield;
  -moz-appearance: textfield;
}

.g-btn {
  width:28px; height:28px;
  background:none; border:1px solid rgba(212,175,55,.3);
  border-radius:50%; color:var(--gold);
  font-size:1.1rem; display:flex; align-items:center; justify-content:center;
  transition:all .25s;
}
.g-btn:hover { background:rgba(212,175,55,.15); border-color:var(--gold); }

#duration {
  text-align: center;
  width: 48px;
}

/* Remove bottom border from duration input (same as guest counter) */
.bgroup #durationCount {
  border-bottom: none;
}

/* Ensure guest-row containers align vertically with other inputs */
.guest-row {
  display: flex;
  align-items: center;
  gap: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.14); /* keeps underline consistent */
  width: 100%; /* makes it stretch to full width like other inputs */
}

/* Make number inputs inside guest-row have same width */
#gCount, #durationCount {
  width: 56px;          /* slightly wider for better centering */
  text-align: center;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--light);
  background: transparent;
  border: none;
  pointer-events: none;
}

/* Submit */
.bsubmit { display:flex; flex-direction:column; align-items:center; gap:14px; padding-top:6px; }
.btn-submit {
  display:inline-flex; align-items:center; gap:12px;
  padding:15px 46px; background:var(--gold); color:#000;
  border:none; border-radius:50px;
  font-family:var(--ff-body); font-size:13px; font-weight:700;
  letter-spacing:1.5px; text-transform:uppercase;
  cursor:pointer; transition:all .4s var(--ease);
  position:relative; overflow:hidden;
}
.btn-submit::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.22),transparent);
  transform:translateX(-100%); transition:transform .6s;
}
.btn-submit:hover { background:var(--gold-light); transform:translateY(-2px); box-shadow:0 14px 36px var(--gold-glow); }
.btn-submit:hover::after { transform:translateX(100%); }
.btn-submit:disabled { opacity:.7; cursor:not-allowed; transform:none; }
.sarrow { font-size:1.1rem; transition:transform .3s; }
.btn-submit:hover .sarrow { transform:translateX(5px); }
.bnote { font-size:.76rem; color:rgba(255,255,255,.28); letter-spacing:.3px; text-align:center; }

/* Success */
.booking-success {
  display:none; flex-direction:column; align-items:center;
  text-align:center; padding:60px 40px; min-height:320px;
  justify-content:center; gap:16px;
}
.booking-success.visible { display:flex; }
.bsuc-star {
  font-size:3.5rem; color:var(--gold);
  animation:starPop .7s cubic-bezier(.175,.885,.32,1.275) forwards;
}
@keyframes starPop { from{transform:scale(0) rotate(-30deg);opacity:0} to{transform:scale(1) rotate(0);opacity:1} }
.booking-success h3 {
  font-family:var(--ff-display); font-size:2rem; font-weight:400; color:var(--gold);
}
.booking-success p { color:var(--muted); line-height:1.75; max-width:420px; }

/* ═══════════════════════════
   FOOTER
═══════════════════════════ */
.site-footer { background:#050807; border-top:1px solid var(--border); }
.footer-top {
  display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:52px; padding:80px 80px 60px;
  border-bottom:1px solid rgba(255,255,255,.04);
}
/* Footer Logo image */
.f-logo-img {
  height: 56px; /* increased */
  width: auto;
  margin-bottom: 4px;
  transition: transform .3s var(--ease), filter .3s var(--ease);
}

.f-logo-img:hover {
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 0 10px var(--gold-glow));
}

.f-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start; /* keeps everything aligned cleanly */
}
.f-logo { font-family:var(--ff-display); font-size:1.35rem; font-weight:700; color:var(--gold); }
.f-tag { font-style:italic; font-size:.88rem;}
.f-desc { font-size:.83rem; color:rgba(255,255,255,.38); line-height:1.8; max-width:300px; margin-top:2px; }
.f-badges { display:flex; flex-wrap:wrap; gap:8px; margin-top:6px; }
.fbadge {
  font-size:.7rem; padding:5px 13px;
  border:1px solid rgba(212,175,55,.2); border-radius:50px;
  color:rgba(212,175,55,.72); background:rgba(212,175,55,.04);
  letter-spacing:.5px;
}
.f-col h4 {
  font-size:10px; font-weight:500; letter-spacing:3px;
  text-transform:uppercase; color:var(--gold); opacity:.85; margin-bottom:22px;
}
.f-col ul { display:flex; flex-direction:column; gap:9px; }
.f-col ul li, .f-col ul li a {
  font-size:.83rem; color:rgba(255,255,255,.4);
  transition:color .3s; cursor:default;
}
.f-col ul li a { cursor:pointer; }
.f-col ul li a:hover, .f-col ul li:hover { color:rgba(212,175,55,.8); }
.contact-items, .f-contact { display:flex; flex-direction:column; gap:13px; }
.f-citem {
  display:flex; align-items:flex-start; gap:10px;
  font-size:.82rem; color:rgba(255,255,255,.42);
  transition:color .3s; line-height:1.5;
}
.f-citem:hover { color:rgba(212,175,55,.82); }
.f-hours {
  margin-top:8px; padding-top:14px;
  border-top:1px solid rgba(255,255,255,.05);
  display:flex; flex-direction:column; gap:7px;
}
.f-hours > div {
  display:flex; justify-content:space-between; gap:20px;
  font-size:.78rem; color:rgba(255,255,255,.36);
}
.fhl { color:rgba(212,175,55,.6); min-width:62px; }
.footer-bot {
  display:flex; justify-content:space-between; align-items:center;
  padding:22px 80px; flex-wrap:wrap; gap:12px;
}
.footer-bot p { font-size:.76rem; color:rgba(255,255,255,.2); }
.fbot-links { display:flex; gap:24px; }
.fbot-links a { font-size:.76rem; color:rgba(255,255,255,.2); transition:color .3s; }
.fbot-links a:hover { color:rgba(212,175,55,.65); }

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media(max-width:1100px){
  .exp-grid { grid-template-columns:1fr 1fr; }
  .why-inner { grid-template-columns:1fr; gap:52px; }
  .why-stat-row { justify-content:flex-start; }
  .footer-top { grid-template-columns:1fr 1fr; gap:36px; padding:60px 40px 40px; }
  .f-brand { grid-column:1/-1; }
  .footer-bot { padding:20px 40px; }
}
@media(max-width:900px){
  .navbar { padding:18px 32px; }
  .navbar.scrolled { padding:12px 32px; }
  .nav-links { display:none; }
  .hero { padding:0 32px; }
  .trust-bar { padding:0 24px; }
  .experiences, .why-us, .map-section, .testimonials, .booking { padding:80px 28px; }
  .booking-card { padding:32px 22px 28px; }
  .brow { grid-template-columns:1fr; gap:22px; }
  .destinations { height:auto; min-height:100vh; }
  .dest-stack { bottom:24px; right:20px; width:150px; height:200px; }
  .dest-overlay { left:28px; bottom:200px; }
  .footer-top { grid-template-columns:1fr; padding:48px 28px 36px; gap:32px; }
  .footer-bot { padding:18px 28px; flex-direction:column; align-items:flex-start; }
}
@media(max-width:600px){
  .hero h1 { font-size:2.5rem; }
  .hero-btns { flex-direction:column; align-items:flex-start; }
  .exp-grid { grid-template-columns:1fr; }
  .why-right { grid-template-columns:1fr; }
  .trust-card { min-width:160px; padding:18px 18px; }
}
