/* ==========================================================================
   TRAVEEXO — Premium one-page travel website
   Palette adapted to the official Traveexo logo (deep green, warm amber,
   ivory, charcoal) — Playfair Display + Inter
   ========================================================================== */

:root {
  --forest-950: #0e1f18;
  --forest-900: #142a20;
  --forest-800: #1b3629;
  --forest-700: #244636;
  --forest-600: #3a5d4c;
  --ivory: #f9f5ec;
  --cream: #fdf9f1;
  --sand: #eee4d2;
  --charcoal: #232620;
  --ink-soft: #57615a;
  --accent: #e0882c;
  --accent-2: #c96f1c;
  --gold: #d8b46e;
  --white: #ffffff;

  --font-serif: "Playfair Display", "Times New Roman", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius-lg: 1.375rem;
  --shadow-card: 0 24px 55px -25px rgba(20, 42, 32, 0.45);
  --shadow-lift: 0 34px 70px -30px rgba(20, 42, 32, 0.5);
  --header-h: 84px;
  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 14px); -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }

::selection { background: var(--accent); color: #fff; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--forest-600); border-radius: 8px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { content: ""; width: 34px; height: 2px; border-radius: 2px; background: var(--accent); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 34px; height: 2px; border-radius: 2px; background: var(--accent); }

.section-head { max-width: 720px; margin: 0 auto 3.4rem; text-align: center; }
.section-head p.lead { margin-top: 1.1rem; font-size: 1.05rem; }

h1, h2, h3 { font-family: var(--font-serif); color: var(--forest-900); line-height: 1.14; font-weight: 600; }
.h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); margin-top: 0.9rem; letter-spacing: -0.01em; }

.lead { font-size: 1.075rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--primary { background: var(--accent); color: #211a0f; box-shadow: 0 14px 30px -14px rgba(201, 111, 28, 0.75); }
.btn--primary:hover { background: var(--accent-2); color: #fff; box-shadow: 0 20px 36px -16px rgba(201, 111, 28, 0.85); }

.btn--gold { background: var(--gold); color: #241a07; box-shadow: 0 16px 34px -16px rgba(216, 178, 106, 0.8); }
.btn--gold:hover { background: #e4c27f; }

.btn--light { background: var(--white); color: var(--forest-800); box-shadow: 0 16px 34px -18px rgba(0, 0, 0, 0.45); }
.btn--light:hover { background: var(--cream); }

.btn--solid-light { border: 1.5px solid rgba(255, 255, 255, 0.75); color: #fff; background: rgba(255, 255, 255, 0.06); }
.btn--solid-light:hover { background: #fff; color: var(--forest-900); }

.btn--outline { border: 1.5px solid rgba(255, 255, 255, 0.35); color: #fff; }
.btn--outline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.12); }

.btn--block { width: 100%; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); transition-delay: var(--d, 0s); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
/* ==========================================================================
   HEADER + NAV
   ========================================================================== */
.topbar { background: var(--forest-950); color: rgba(249, 245, 236, 0.85); font-size: 0.8rem; letter-spacing: 0.02em; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; min-height: 40px; }
.topbar a { color: var(--gold); font-weight: 600; display: inline-flex; align-items: center; gap: 0.45rem; transition: color 0.3s; }
.topbar a:hover { color: #fff; }
.topbar-contact { display: flex; align-items: center; gap: 1.6rem; }
.topbar-right { display: flex; align-items: center; gap: 1.4rem; }
.topbar .badge { display: inline-flex; align-items: center; gap: 0.4rem; color: #fff; font-weight: 600; }
.topbar .badge i { width: 8px; height: 8px; border-radius: 50%; background: #7ec98a; box-shadow: 0 0 0 4px rgba(126, 201, 138, 0.18); }

/* Below 901px the topbar is hidden, so the header must sit at the very top */
@media (max-width: 900px) {
  .topbar { display: none; }
  header.site-header { top: 0; }
  html { scroll-padding-top: calc(var(--header-h) + 4px); }
}

header.site-header { position: fixed; top: 40px; left: 0; right: 0; z-index: 1000; transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease), top 0.45s var(--ease), backdrop-filter 0.45s var(--ease); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; height: var(--header-h); transition: height 0.4s var(--ease); }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand img { height: 46px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 1.7rem; }
.main-nav > li > a {
  position: relative;
  font-size: 0.9rem; font-weight: 500; color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em; padding: 0.4rem 0; transition: color 0.3s;
}
.main-nav > li > a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--accent); border-radius: 2px; transition: width 0.35s var(--ease);
}
.main-nav > li > a:hover,
.main-nav > li > a.active { color: #fff; }
.main-nav > li > a:hover::after,
.main-nav > li > a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 1rem; }

.burger {
  display: none; flex-direction: column; justify-content: center; gap: 6px;
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.06);
  align-items: center; padding: 0;
}
.burger span { width: 20px; height: 2px; border-radius: 2px; background: #fff; transition: transform 0.35s var(--ease), opacity 0.3s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Solid sticky header after scrolling */
header.site-header.is-scrolled { top: 0; background: rgba(15, 30, 23, 0.94); backdrop-filter: blur(14px); box-shadow: 0 14px 40px -22px rgba(0, 0, 0, 0.65); }
header.site-header.is-scrolled .nav-inner { height: 74px; }

/* Mobile menu panel */
.mobile-panel {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 84vw);
  background: var(--forest-900); z-index: 1200; padding: 6.4rem 2rem 2.5rem;
  transform: translateX(100%); transition: transform 0.5s var(--ease);
  display: flex; flex-direction: column; gap: 0.4rem;
  box-shadow: -30px 0 60px -30px rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}
.mobile-panel.open { transform: translateX(0); }
.mobile-panel .mp-brand { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.6rem; }
.mobile-panel img.mp-logo { height: 38px; width: auto; }
.mobile-panel a.m-link {
  font-family: var(--font-serif); color: #fff; font-size: 1.32rem; font-weight: 600;
  padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.09);
  transition: color 0.3s, padding-left 0.3s var(--ease);
}
.mobile-panel a.m-link:hover { color: var(--gold); padding-left: 0.6rem; }
.mobile-panel .mp-cta { margin-top: 1.6rem; }
.mobile-panel .mp-contact { margin-top: 2rem; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.4rem; display: grid; gap: 0.9rem; }
.mobile-panel .mp-contact a { color: rgba(255,255,255,0.82); font-size: 0.92rem; display: inline-flex; gap: 0.55rem; align-items: center; }
.mobile-panel .mp-contact a span { color: var(--gold); font-weight: 600; }

.nav-overlay {
  position: fixed; inset: 0; background: rgba(8, 16, 12, 0.6); z-index: 1100;
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
  backdrop-filter: blur(3px);
}
.nav-overlay.show { opacity: 1; visibility: visible; }
/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; isolation: isolate; }

.hero-slides { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06); transition: opacity 1.6s var(--ease), transform 7s linear;
  will-change: opacity, transform;
}
.hero-slide.active { opacity: 1; transform: scale(1.0); transition: transform 9s linear; }

.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(10, 22, 17, 0.82) 0%, rgba(12, 26, 20, 0.55) 45%, rgba(10, 22, 17, 0.25) 100%),
    linear-gradient(to top, rgba(16, 30, 24, 0.9) 0%, transparent 32%);
}

.hero-inner { padding: 168px 0 300px; max-width: 860px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.2s forwards;
}
.hero-eyebrow::before { content: ""; width: 38px; height: 2px; background: var(--accent); }

.hero h1 {
  color: #fff; margin: 1.15rem 0 1.4rem;
  font-size: clamp(2.5rem, 6.4vw, 4.9rem); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.35s forwards;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero p {
  color: rgba(255, 255, 255, 0.86); font-size: clamp(1rem, 1.6vw, 1.2rem); max-width: 620px;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.3rem; opacity: 0; animation: fadeUp 0.9s var(--ease) 0.65s forwards; }

.hero-scroll {
  position: absolute; left: 50%; bottom: 270px; transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 0.55rem;
  color: rgba(255, 255, 255, 0.75); font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  animation: fadeUp 0.9s var(--ease) 0.9s backwards;
}
.mouse { width: 22px; height: 36px; border: 2px solid rgba(255, 255, 255, 0.7); border-radius: 12px; position: relative; }
.mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; border-radius: 3px; background: var(--accent); transform: translateX(-50%); animation: wheel 1.8s infinite; }

@keyframes wheel { 0% { opacity: 1; transform: translate(-50%, 0); } 70% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

.hero-slider-dots { position: absolute; left: 50%; bottom: 246px; transform: translateX(-50%); display: flex; gap: 0.55rem; z-index: 3; }
.hero-slider-dots button { width: 26px; height: 3px; border-radius: 3px; background: rgba(255,255,255,0.35); transition: background 0.3s; }
.hero-slider-dots button.active { background: var(--accent); }

/* ==========================================================================
   QUICK ENQUIRY (overlaps hero)
   ========================================================================== */
.enquiry-wrap { position: relative; z-index: 5; margin-top: -228px; }
.enquiry-card {
  background: #fff; border-radius: 2rem; padding: 2.6rem 2.8rem 2.9rem;
  box-shadow: var(--shadow-card); border: 1px solid rgba(36, 70, 54, 0.08);
}
.enquiry-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.4rem; margin-bottom: 1.7rem; }
.enquiry-head h2 { font-size: clamp(1.55rem, 2.6vw, 2.1rem); }
.enquiry-head p { font-size: 0.93rem; margin-top: 0.4rem; }
.enquiry-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; align-items: end; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--forest-800); }
.field select,
.field input {
  width: 100%; padding: 0.8rem 1rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--sand); background: var(--cream); color: var(--charcoal);
  transition: border-color 0.3s, box-shadow 0.3s; font-size: 0.95rem; appearance: none;
}
.field select { cursor: pointer; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%2357615a' stroke-width='2' fill='none' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-position: right 0.9rem center; }
.field input:focus,
.field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(224, 136, 44, 0.16); }
.enquiry-card .btn { min-height: 48px; }
.enquiry-note { display: flex; align-items: center; gap: 0.55rem; margin-top: 1.15rem; font-size: 0.82rem; color: var(--forest-600); }
.enquiry-note svg { width: 15px; height: 15px; color: var(--accent); flex: none; }
.form-ok { display: none; margin-top: 1.1rem; padding: 0.95rem 1.2rem; background: #eaf6ec; color: #25603a; border: 1px solid #bfe3c8; border-radius: var(--radius-sm); font-size: 0.92rem; }
.form-ok.show { display: block; animation: fadeUp 0.5s var(--ease); }
/* ==========================================================================
   STATS / TRUST
   ========================================================================== */
.stats { padding: 4.6rem 0 3.2rem; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.6rem; }
.stat { text-align: center; padding: 1.4rem 0.8rem; border-radius: var(--radius-lg); transition: transform 0.4s var(--ease), background 0.4s; }
.stat:hover { transform: translateY(-6px); background: var(--cream); }
.stat .num { font-family: var(--font-serif); font-size: clamp(2.3rem, 4.5vw, 3.4rem); font-weight: 700; color: var(--forest-800); line-height: 1; display: inline-flex; align-items: baseline; }
.stat .num sup { font-size: 0.5em; color: var(--accent); margin-left: 1px; }
.stat .lbl { margin-top: 0.65rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { padding: clamp(4.5rem, 9vw, 7.5rem) 0; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1.04fr 1fr; gap: clamp(2.4rem, 5vw, 4.5rem); align-items: center; }
.about-media { position: relative; }
.about-media .main-img { border-radius: 2rem; box-shadow: var(--shadow-card); aspect-ratio: 4 / 3.6; object-fit: cover; width: 100%; }
.about-badge {
  position: absolute; bottom: -26px; right: -14px; background: var(--forest-800); color: #fff;
  padding: 1.25rem 1.5rem; border-radius: 1.25rem; box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 1rem; max-width: 240px;
}
.about-badge .big { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.about-badge small { font-size: 0.78rem; line-height: 1.4; color: rgba(255,255,255,0.85); display: block; margin-top: 0.2rem; }

.about-copy .eyebrow { margin-bottom: 0.2rem; }
.about-copy .h2 { margin-bottom: 1.4rem; max-width: 520px; }
.about-copy p { margin-bottom: 1.1rem; font-size: 1.02rem; }
.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin: 1.9rem 0 2.2rem; }
.feat-tile { display: flex; gap: 0.95rem; align-items: flex-start; padding: 1.1rem 1.15rem; background: var(--cream); border: 1px solid rgba(36, 70, 54, 0.08); border-radius: var(--radius-md); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s; }
.feat-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: rgba(224, 136, 44, 0.4); }
.feat-tile .ic { flex: none; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: rgba(224, 136, 44, 0.12); color: var(--accent); }
.feat-tile .ic svg { width: 22px; height: 22px; }
.feat-tile h4 { font-family: var(--font-serif); font-size: 1.04rem; color: var(--forest-900); margin-bottom: 0.2rem; }
.feat-tile p { font-size: 0.85rem; margin: 0; line-height: 1.55; }

/* ==========================================================================
   DESTINATIONS
   ========================================================================== */
.destinations { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.destinations .section-head { margin-bottom: 3.4rem; }
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.dest-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 340px;
  display: flex; align-items: flex-end; cursor: pointer; isolation: isolate;
  box-shadow: var(--shadow-soft); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.dest-card--tall { grid-row: span 2; min-height: 700px; }
.dest-card .bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.9s var(--ease); z-index: -2; }
.dest-card:hover .bg { transform: scale(1.08); }
.dest-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(10, 22, 17, 0.92) 0%, rgba(10, 22, 17, 0.12) 55%, transparent 100%); transition: background 0.5s; }
.dest-card .body { padding: 1.7rem; width: 100%; color: #fff; transform: translateY(0); transition: transform 0.45s var(--ease); }
.dest-card .loc { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.45rem; }
.dest-card h3 { color: #fff; font-size: 1.55rem; margin-bottom: 0.3rem; }
.dest-card p { color: rgba(255,255,255,0.82); font-size: 0.92rem; max-width: 280px; max-height: 0; opacity: 0; transition: max-height 0.5s var(--ease), opacity 0.45s, margin 0.4s; }
.dest-card:hover p { max-height: 90px; opacity: 1; }
.dest-card .enq-btn { margin-top: 0.7rem; max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.5s var(--ease), opacity 0.45s, margin 0.4s; }
.dest-card:hover .enq-btn { max-height: 60px; opacity: 1; }
.dest-card .enq-btn a {
  display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.05em; color: #fff; border-bottom: 2px solid var(--accent); padding-bottom: 0.25rem;
}
.enq-arrow { transition: transform 0.3s var(--ease); }
.enq-btn a:hover .enq-arrow { transform: translateX(5px); }
/* ==========================================================================
   HIMALAYAN FEATURE
   ========================================================================== */
.himalaya {
  min-height: 520px; display: flex; align-items: center; text-align: center; color: #fff;
  background-size: cover; background-position: center 60%;
  padding: clamp(4.5rem, 8vw, 7rem) 0; isolation: isolate;
}
.himalaya::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to right, rgba(12, 26, 20, 0.78), rgba(12, 26, 20, 0.55) 55%, rgba(12, 26, 20, 0.82)), radial-gradient(ellipse at center, transparent 40%, rgba(8, 18, 14, 0.6));
}
.himalaya .eyebrow { color: var(--gold); justify-content: center; }
.himalaya .eyebrow::before, .himalaya .eyebrow::after { background: var(--gold); }
.himalaya h2 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.3rem); max-width: 820px; margin: 1rem auto 1.2rem; }
.himalaya h2 em { font-style: italic; color: var(--gold); }
.himalaya .lead { color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto; }
.himalaya-actions { margin-top: 2.2rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.himalaya-geo { margin-top: 2.6rem; display: flex; justify-content: center; flex-wrap: wrap; gap: 0.8rem; }
.himalaya-geo span { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.22); padding: 0.5rem 1.1rem; border-radius: 999px; background: rgba(255,255,255,0.05); }

/* ==========================================================================
   EXPERIENCES
   ========================================================================== */
.experiences { padding: clamp(4.5rem, 9vw, 7.5rem) 0; background: var(--cream); }
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.exp-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(36, 70, 54, 0.07); box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.exp-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-lift); }
.exp-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.exp-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.exp-card:hover .exp-media img { transform: scale(1.08); }
.exp-tag {
  position: absolute; top: 14px; left: 14px; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: #fff;
  background: rgba(20, 42, 32, 0.82); backdrop-filter: blur(6px);
  padding: 0.4rem 0.85rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.25);
}
.exp-body { padding: 1.6rem 1.7rem 1.8rem; }
.exp-body h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.exp-body p { font-size: 0.9rem; margin-bottom: 1.1rem; }
.exp-link { font-size: 0.85rem; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 0.45rem; }
.exp-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.exp-link:hover svg { transform: translateX(5px); }

/* ==========================================================================
   FEATURED PACKAGES
   ========================================================================== */
.packages { padding: clamp(4.5rem, 9vw, 7.5rem) 0; background: var(--ivory); }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pkg-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(36, 70, 54, 0.07); box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.pkg-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-lift); }
.pkg-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.pkg-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.pkg-card:hover .pkg-media img { transform: scale(1.07); }
.pkg-flag { position: absolute; top: 14px; left: 14px; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.4rem 0.85rem; border-radius: 999px; }
.pkg-flag--bestseller { background: var(--accent); color: #211a0f; }
.pkg-flag--popular { background: #fff; color: var(--forest-800); }
.pkg-body { padding: 1.6rem 1.7rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.pkg-body h3 { font-size: 1.3rem; margin-bottom: 0.85rem; }
.pkg-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem 1rem; margin-bottom: 1.3rem; }
.pkg-meta li { display: flex; align-items: center; gap: 0.55rem; font-size: 0.84rem; color: var(--ink-soft); }
.pkg-meta svg { width: 15px; height: 15px; color: var(--accent); flex: none; }
.pkg-price { margin-top: auto; padding-top: 1.15rem; border-top: 1px dashed var(--sand); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.pkg-price span { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.pkg-price strong { font-family: var(--font-serif); font-size: 1.15rem; color: var(--forest-800); white-space: nowrap; }
.pkg-card .btn { width: 100%; margin-top: 0.6rem; }
/* ==========================================================================
   WHY TRAVEEXO
   ========================================================================== */
.why { padding: clamp(4.5rem, 9vw, 7.5rem) 0; background: var(--forest-900); color: rgba(249, 245, 236, 0.82); }
.why .eyebrow { color: var(--gold); }
.why .h2 { color: #fff; }
.why .section-head .lead { color: rgba(249, 245, 236, 0.72); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.35rem; }
.why-card {
  background: rgba(255, 255, 255, 0.045); border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg); padding: 1.9rem 1.6rem;
  transition: transform 0.45s var(--ease), background 0.4s, border-color 0.4s;
}
.why-card:hover { transform: translateY(-7px); background: rgba(255,255,255,0.08); border-color: rgba(216, 180, 110, 0.45); }
.why-card .ic { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(224,136,44,0.25), rgba(224,136,44,0.08)); color: var(--gold); margin-bottom: 1.15rem; }
.why-card .ic svg { width: 26px; height: 26px; }
.why-card h3 { color: #fff; font-size: 1.18rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.88rem; color: rgba(249, 245, 236, 0.72); line-height: 1.6; }

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how { padding: clamp(4.5rem, 9vw, 7.5rem) 0; background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step { position: relative; text-align: center; padding: 2.2rem 1.4rem 1.8rem; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); border: 1px solid rgba(36, 70, 54, 0.07); transition: transform 0.45s var(--ease); }
.step:hover { transform: translateY(-7px); }
.step .n { font-family: var(--font-serif); font-size: 2.6rem; font-weight: 700; color: var(--sand); line-height: 1; display: block; }
.step .ic { margin: 0.6rem auto 1rem; width: 60px; height: 60px; border-radius: 50%; background: var(--forest-800); color: var(--gold); display: grid; place-items: center; }
.step .ic svg { width: 26px; height: 26px; }
.step h3 { font-size: 1.14rem; margin-bottom: 0.45rem; }
.step p { font-size: 0.87rem; line-height: 1.6; }
.step::after {
  content: ""; position: absolute; top: 50%; left: calc(100% + 0.15rem); width: calc(100% - 1.4rem); height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px); opacity: 0.6;
  transform: translateY(-50%);
}
.step:last-child::after { display: none; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials { padding: clamp(4.5rem, 9vw, 7.5rem) 0; background: var(--cream); overflow: hidden; }
.testi-shell { max-width: 820px; margin: 0 auto; position: relative; }
.testi-track { display: flex; transition: transform 0.6s var(--ease); }
.testi-slide { flex: 0 0 100%; min-width: 100%; padding: 0.4rem; }
.testi-card { background: #fff; border-radius: 1.75rem; box-shadow: var(--shadow-soft); padding: 2.6rem 2.7rem; text-align: center; border: 1px solid rgba(36,70,54,0.07); }
.testi-card .quote { width: 44px; height: 44px; margin: 0 auto 1.2rem; color: var(--accent); }
.testi-card blockquote { font-family: var(--font-serif); font-size: clamp(1.1rem, 2vw, 1.42rem); line-height: 1.65; color: var(--forest-800); font-style: italic; }
.testi-stars { display: flex; gap: 0.25rem; justify-content: center; margin: 1.4rem 0 1.1rem; color: var(--gold); }
.testi-stars svg { width: 18px; height: 18px; }
.testi-person { display: flex; align-items: center; justify-content: center; gap: 0.85rem; }
.testi-person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testi-person strong { display: block; color: var(--forest-900); font-size: 0.95rem; font-weight: 700; }
.testi-person small { font-size: 0.8rem; color: var(--ink-soft); }
.testi-controls { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; }
.testi-controls button { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--sand); background: #fff; color: var(--forest-800); display: grid; place-items: center; transition: all 0.3s; }
.testi-controls button:hover { background: var(--forest-800); color: #fff; border-color: var(--forest-800); }
.testi-controls svg { width: 17px; height: 17px; }
.testi-dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 0.2rem; }
.testi-dots button { width: 9px; height: 9px; border-radius: 50%; background: var(--sand); transition: all 0.3s; }
.testi-dots button.active { background: var(--accent); width: 24px; border-radius: 9px; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.cta-band { position: relative; padding: clamp(5rem, 10vw, 8.5rem) 0; text-align: center; color: #fff; background-size: cover; background-position: center; isolation: isolate; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to bottom, rgba(16, 30, 24, 0.72), rgba(10, 22, 17, 0.88)); }
.cta-band .eyebrow { color: var(--gold); justify-content: center; }
.cta-band .eyebrow::before, .cta-band .eyebrow::after { background: var(--gold); }
.cta-band h2 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.6rem); max-width: 760px; margin: 1rem auto 1.2rem; }
.cta-band h2 em { font-style: italic; color: var(--gold); }
.cta-band p { color: rgba(255,255,255,0.86); max-width: 560px; margin: 0 auto; }
.cta-actions { margin-top: 2.4rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { padding: clamp(4.5rem, 9vw, 7.5rem) 0; background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 4vw, 3.6rem); align-items: start; }
.contact-info h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 1.1rem; }
.contact-info > p { margin-bottom: 2rem; max-width: 460px; }
.c-row { display: flex; gap: 1.1rem; padding: 1.15rem 0; border-bottom: 1px solid rgba(36, 70, 54, 0.1); }
.c-row .ic { flex: none; width: 48px; height: 48px; border-radius: 14px; background: var(--forest-800); color: var(--gold); display: grid; place-items: center; }
.c-row .ic svg { width: 21px; height: 21px; }
.c-row h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.25rem; }
.c-row a, .c-row p { color: var(--forest-900); font-weight: 500; font-size: 0.97rem; display: block; }
.c-row a:hover { color: var(--accent); }
.c-row .phones { display: flex; flex-direction: column; gap: 0.15rem; }
.contact-map { margin-top: 2.2rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid rgba(36,70,54,0.08); line-height: 0; }
.contact-map iframe { width: 100%; height: 300px; border: 0; display: block; }

.contact-card { background: #fff; border-radius: 2rem; padding: 2.5rem 2.6rem 2.8rem; box-shadow: var(--shadow-card); border: 1px solid rgba(36,70,54,0.07); }
.contact-card h3 { font-size: 1.7rem; margin-bottom: 0.4rem; }
.contact-card > p { font-size: 0.92rem; margin-bottom: 1.6rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .field--full { grid-column: 1 / -1; }
.form-grid textarea { width: 100%; min-height: 110px; resize: vertical; padding: 0.8rem 1rem; border-radius: var(--radius-sm); border: 1.5px solid var(--sand); background: var(--cream); transition: border-color 0.3s, box-shadow 0.3s; font-size: 0.95rem; }
.form-grid textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(224, 136, 44, 0.16); }
.form-notice { display: none; margin-top: 1.1rem; padding: 0.95rem 1.2rem; border-radius: var(--radius-sm); font-size: 0.92rem; animation: fadeUp 0.5s var(--ease); }
.form-notice.ok { display: block; background: #eaf6ec; color: #25603a; border: 1px solid #bfe3c8; }
.form-notice.err { display: block; background: #fdecea; color: #a3362c; border: 1px solid #f1c6c6; }
.form-grid .btn { justify-self: start; margin-top: 0.5rem; margin-bottom: 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer.site-footer { background: var(--forest-950); color: rgba(249, 245, 236, 0.72); }
.footer-main { padding: 4.4rem 0 2.6rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.6rem; }
.footer-brand img { height: 46px; width: auto; margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.9rem; max-width: 320px; }
.site-footer h4 { color: #fff; font-family: var(--font-serif); font-size: 1.06rem; margin-bottom: 1.15rem; }
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { font-size: 0.9rem; color: rgba(249, 245, 236, 0.72); transition: color 0.3s, padding-left 0.3s var(--ease); display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-col a:hover { color: var(--gold); padding-left: 0.45rem; }
.footer-col a svg { width: 14px; height: 14px; color: var(--accent); flex: none; }
.footer-contact li { display: flex; gap: 0.75rem; font-size: 0.9rem; line-height: 1.55; }
.footer-contact svg { width: 16px; height: 16px; color: var(--accent); flex: none; margin-top: 3px; }
.footer-contact a { color: inherit; }
.footer-contact a:hover { color: var(--gold); }
.social-row { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.social-row a { width: 40px; height: 40px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.16); display: grid; place-items: center; color: rgba(255,255,255,0.8); transition: all 0.3s; }
.social-row a:hover { background: var(--accent); border-color: var(--accent); color: #1a1a1a; transform: translateY(-3px); }
.social-row svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.09); padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; }
.footer-bottom a { color: var(--gold); }
.footer-credit { padding: 0 0 1.5rem; font-size: 0.78rem; letter-spacing: 0.02em; color: rgba(249, 245, 236, 0.55); text-align: center; }
.footer-credit a { color: var(--gold); font-weight: 600; }
/* ==========================================================================
   FLOATING WHATSAPP + MOBILE BAR
   ========================================================================== */
.wa-fab {
  position: fixed; right: 22px; bottom: 24px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 16px 34px -12px rgba(37, 211, 102, 0.7);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  isolation: isolate;
}
.wa-fab:hover { transform: translateY(-4px) scale(1.05); }
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: rgba(37, 211, 102, 0.5); z-index: -1; animation: pulseWa 2.4s infinite; }
@keyframes pulseWa { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.7); opacity: 0; } }

.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 850; display: none; background: rgba(14, 31, 24, 0.97); backdrop-filter: blur(8px); border-top: 1px solid rgba(255,255,255,0.1); padding: 0.45rem; }
.mobile-bar-inner { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 0.5rem; }
.mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 0.45rem; padding: 0.8rem 0.6rem; border-radius: 12px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; }
.mobile-bar svg { width: 17px; height: 17px; }
.mb-call { color: #fff; background: var(--forest-700); }
.mb-wa { color: #0b2e1b; background: #25d366; }
.mb-plan { background: var(--accent); color: #1d1607; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1160px) {
  .main-nav { gap: 1.2rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  :root { --header-h: 74px; }
  .main-nav { display: none; }
  .nav-cta .btn--ghost-light { display: none; }
  .burger { display: flex; }
  .dest-grid, .exp-grid, .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card--tall { grid-row: span 1; min-height: 380px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 620px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .enquiry-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  :root { --header-h: 66px; }
  section .container { padding: 0 20px; }
  .hero-inner { padding: 140px 0 300px; }
  .hero h1 { font-size: clamp(2.2rem, 9.5vw, 3rem); }
  .hero-scroll, .hero-slider-dots { bottom: 150px; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
  .enquiry-wrap { margin-top: -120px; }
  .enquiry-card { padding: 1.7rem 1.4rem 1.9rem; border-radius: 1.4rem; }
  .enquiry-head { flex-direction: column; align-items: flex-start; }
  .enquiry-grid { grid-template-columns: 1fr 1fr; }
  .enquiry-grid .field--full { grid-column: 1 / -1; }
  .about-feats { grid-template-columns: 1fr 1fr; }
  .about-badge { right: 8px; bottom: -20px; padding: 1rem 1.2rem; }
  h2.h2 { font-size: clamp(1.8rem, 6.5vw, 2.3rem); }
  .dest-grid, .exp-grid, .pkg-grid, .steps, .why-grid { grid-template-columns: 1fr; }
  .dest-card--tall { min-height: 320px; }
  .dest-card:hover p, .dest-card:hover .enq-btn { max-height: none; opacity: 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .field--full { grid-column: auto; }
  .testi-card { padding: 2rem 1.5rem; }
  .topbar { display: none; }
  .mobile-bar { display: block; }
  .wa-fab { right: 16px; bottom: 84px; width: 52px; height: 52px; }
}

@media (max-width: 430px) {
  .enquiry-grid { grid-template-columns: 1fr; }
  .about-feats { grid-template-columns: 1fr; }
  .cform-card { padding: 2rem 1.5rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .brand img { height: 40px; }
  .hero-scroll, .hero-slider-dots { display: none; }
}

/* ==========================================================================
   MOTION PREFERENCES
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-slide, .hero-slide.active { transition: none; }
}
