/* ══════════════════════════════════════════════════════
   BHARATI TOURS — style.css
   HikeAHoliday-inspired layout with Himalayan branding
══════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ─────────────────────────────────── */
:root {
  --primary: #1a6b4a;
  --primary-light: #2d9165;
  --primary-teal: #0d9488;
  --accent: #c8973b;
  --accent-light: #e6b96a;
  --dark: #0d1f18;
  --surface: #f7f4ef;
  --text: #1c2b24;
  --muted: #6b7f74;
  --white: #ffffff;
  --hero-overlay: rgba(10, 28, 20, 0.52);

  /* Mega-menu */
  --menu-bg: #ffffff;
  --menu-shadow: 0 24px 60px rgba(0, 0, 0, .14);
  --menu-border: #e5e0d8;
}

/* ── RESET ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--surface);
  color: var(--text);
  overflow-x: hidden;
}

body {
  font-family: "Barlow", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ── PRELOADER ─────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease;
}

#preloader.hide {
  opacity: 0;
  pointer-events: none;
}

.loader-ring {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(200, 151, 59, .2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── TOPBAR ────────────────────────────────────────── */
.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, .7);
  font-size: .78rem;
  padding: 7px 0;
  letter-spacing: .03em;
}

.topbar a {
  color: var(--accent-light);
  text-decoration: none;
}

.topbar a:hover {
  color: #fff;
}

.topbar .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .6);
  font-size: .8rem;
  transition: all .25s;
}

.topbar .social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ══════════════════════════════════════════════════════
   NAVBAR  (HikeAHoliday-style)
══════════════════════════════════════════════════════ */
/* .site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--menu-border);
  transition: box-shadow .3s;
} */
/* ── HikeAHoliday-style sticky dark pill nav ──────── */



.site-nav {
  position: sticky;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;

  /* Default White Background */
  background: rgba(255, 255, 255, 0.92);

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 60px;

  max-width: 1245px;
  width: calc(100% - 48px);
  margin: 16px auto 0;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);

  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    max-width 0.4s ease,
    transform 0.3s ease;
}

/* Scroll Effect */
.site-nav.scrolled {
  background: #0f1e2b;

  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.38);

  max-width: 1200px;

  transform: translateY(-2px);
}

.nav-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 16px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 60px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.nav-logo-text em {
  color: var(--primary);
  font-style: normal;
}

/* Nav links container */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  list-style: none;
  justify-content: center;
}

/* Individual nav item */
.nav-item {
  position: relative;
}

/* Default White Navbar */
.nav-btn,
.nav-btn a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  height: 70px;

  font-size: .875rem;
  font-weight: 500;

  color: #0f1e2b;

  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;

  transition:
    color .3s ease,
    background .3s ease;
}

/* Hover on White Background */
.nav-btn:hover,
.nav-btn.open {
  color: #0f1e2b;
  background: rgba(15, 30, 43, 0.06);
}

/* When Navbar Scrolled */
.site-nav.scrolled .nav-btn,
.site-nav.scrolled .nav-btn a {
  color: rgba(255, 255, 255, 0.88);
}

/* Hover on Dark Background */
.site-nav.scrolled .nav-btn:hover,
.site-nav.scrolled .nav-btn.open {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-btn svg {
  width: 14px;
  height: 14px;
  transition: transform .25s;
}

.nav-btn.open svg {
  transform: rotate(180deg);
}

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

/* Default White Navbar */
.btn-login {
  padding: 9px 20px;
  border-radius: 50px;

  font-size: .85rem;
  font-weight: 600;

  color: #0f1e2b;

  border: 1.5px solid var(--dark);

  background: rgba(15, 30, 43, 0.04);

  cursor: pointer;
  text-decoration: none;

  transition:
    border-color .3s ease,
    color .3s ease,
    background .3s ease;
}

/* Hover on White Background */
.btn-login:hover {
  border-color: rgba(15, 30, 43, 0.35);

  color: #0f1e2b;

  background: rgba(15, 30, 43, 0.08);
}

/* Scrolled Dark Navbar */
.site-nav.scrolled .btn-login {
  color: rgba(255, 255, 255, 0.92);

  border-color: rgba(255, 255, 255, 0.28);

  background: rgba(255, 255, 255, 0.04);
}

/* Hover on Dark Navbar */
.site-nav.scrolled .btn-login:hover {
  border-color: rgba(255, 255, 255, 0.6);

  color: #fff;

  background: rgba(255, 255, 255, 0.1);
}

.btn-plan {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  background: #0d9488;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.btn-plan:hover {
  background: #0f7d72;
  transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

/* Scrolled Navbar */
.site-nav.scrolled .nav-toggle span {
  background: #fff;
}

/* ── MEGA MENU SHARED ──────────────────────────────── */
.mega-wrap {
  position: absolute;
  top: 76px;
  left: 0;
  background: var(--menu-bg);
  border: 1px solid var(--menu-border);
  border-radius: 16px;
  box-shadow: var(--menu-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease;
  z-index: 9000;
  min-width: 580px;
}

.mega-wrap.active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

/* ── EXPLORE DESTINATIONS mega (two-panel) ─────────── */
.mega-destinations {
  display: flex;
  min-width: 580px;
}

#destinations {
  padding: 80px 0px;
}

.mega-dest-list {
  width: 220px;
  flex-shrink: 0;
  padding: 16px 0;
  border-right: 1px solid var(--menu-border);
}

.mega-dest-list .list-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 20px 10px;
}

.dest-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background .15s;
}

.dest-row:hover,
.dest-row.active {
  background: rgba(13, 148, 136, .06);
}

.dest-row.active .dest-row-name {
  color: var(--primary-teal);
  font-weight: 600;
}

.dest-code {
  width: 30px;
  height: 22px;
  background: #f3f4f6;
  border-radius: 4px;
  font-size: .68rem;
  font-weight: 700;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dest-row.active .dest-code {
  background: rgba(13, 148, 136, .12);
  color: var(--primary-teal);
}

.dest-row-name {
  font-size: .875rem;
  color: #374151;
}

.dest-active-bar {
  width: 3px;
  height: 100%;
  background: var(--primary-teal);
  margin-left: auto;
  border-radius: 2px;
  opacity: 0;
}

.dest-row.active .dest-active-bar {
  opacity: 1;
}

.mega-dest-detail {
  flex: 1;
  padding: 20px 24px;
}

.mega-dest-detail h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.mega-dest-detail .detail-sub {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.city-list {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}

.city-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  font-size: .88rem;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
}

.city-list li:last-child {
  border-bottom: none;
}

.city-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--primary-teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.city-list li:hover {
  color: var(--primary-teal);
}

.view-all-link {
  font-size: .83rem;
  font-weight: 600;
  color: var(--primary-teal);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.view-all-link:hover {
  color: var(--primary);
}

/* ── BROWSE PACKAGES mega (two-column grid) ────────── */
.mega-packages {
  min-width: 640px;
  padding: 20px 0 16px;
}

.mega-pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pkg-col {
  padding: 0 28px;
}

.pkg-col:first-child {
  border-right: 1px solid var(--menu-border);
}

.pkg-col-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.pkg-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: .88rem;
  color: #374151;
  border-bottom: 1px solid #f9f9f9;
  transition: color .15s;
}

.pkg-link:last-child {
  border-bottom: none;
}

.pkg-link .pkg-code {
  width: 28px;
  height: 20px;
  background: #f3f4f6;
  border-radius: 4px;
  font-size: .65rem;
  font-weight: 700;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pkg-link:hover {
  color: var(--primary-teal);
}

.pkg-link:hover .pkg-code {
  background: rgba(13, 148, 136, .1);
  color: var(--primary-teal);
}

.mega-pkg-footer {
  padding: 14px 28px 0;
  border-top: 1px solid var(--menu-border);
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pkg-count {
  font-size: .8rem;
  color: var(--muted);
}

.view-all-link-sm {
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary-teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.view-all-link-sm:hover {
  color: var(--primary);
}

/* ── EXPERIENCES mega (simple list) ───────────────── */
.mega-experiences {
  min-width: 340px;
  padding: 16px 0;
}

.exp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 24px;
  cursor: pointer;
  transition: background .15s;
}

.exp-item:hover {
  background: rgba(13, 148, 136, .05);
}

.exp-icon {
  width: 36px;
  height: 36px;
  background: rgba(13, 148, 136, .09);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary-teal);
  flex-shrink: 0;
}

.exp-item:hover .exp-icon {
  background: rgba(13, 148, 136, .16);
}

.exp-label {
  font-size: .88rem;
  color: #374151;
  font-weight: 500;
}

.exp-desc {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -118px;
  background-color: #fff;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 8s ease forwards;
}

.hero-slide:nth-child(1) {
  background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/bhutan.jpg');
}

.hero-slide:nth-child(2) {
  background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/Punakha-Dzong.jpg');
}

.hero-slide:nth-child(3) {
  background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/bhutan-tshechu-festivel-700-51.jpg');
}

.startcolor {
  color: rgba(247, 183, 8, 0.772) !important;
}

.totm-winner-loc {
  padding: 12px 0;
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 28, 20, 0.72);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  /* max-width: 800px; */
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 30px;
}

.hero-badge {
  display: inline-block;
  background: rgba(200, 151, 59, .18);
  border: 1px solid rgba(200, 151, 59, .45);
  color: var(--accent-light);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  animation: fadeUp .8s .2s both;
}

.hero h1 {
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 20px;
  animation: fadeUp .8s .4s both;
}

.hero h1 span {
  color: var(--accent-light);
  /* font-style: italic; */
}

.hero p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, .82);
  max-width: 680px;
  margin: 0 auto 36px;
  font-weight: 600;
  line-height: 1.7;
  animation: fadeUp .8s .6s both;
}

.hero-btns {
  animation: fadeUp .8s .8s both;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero search bar */
.hero-search {
  position: relative;
  z-index: 2;
  margin-top: 36px;
  animation: fadeUp .8s 1s both;
}

.hero-search-inner {
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 60px;
  padding: 8px 8px 8px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 540px;
  margin: 0 auto;
}

.hero-search-inner input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: .9rem;
}

.hero-search-inner input::placeholder {
  color: rgba(255, 255, 255, .6);
}

.hero-search-inner button {
  background: var(--primary-teal);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 9px 22px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}

.hero-search-inner button:hover {
  background: var(--primary);
}

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: all .3s;
  border: none;
}

.hero-dot.active {
  background: var(--accent);
  width: 26px;
  border-radius: 4px;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 3;
  color: rgba(255, 255, 255, .55);
  font-size: .75rem;
  writing-mode: vertical-rl;
  letter-spacing: .15em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.scroll-hint::before {
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .4));
  animation: scrollLine 1.5s ease infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    opacity: .3
  }

  50% {
    opacity: 1
  }
}

/* ── HERO BUTTONS ──────────────────────────────────── */
.btn-hero-primary {
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  font-size: .9rem;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  transition: all .3s;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
}

.btn-hero-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 151, 59, .4);
  color: var(--dark);
}

.btn-hero-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .5);
  color: #fff;
  font-weight: 500;
  font-size: .9rem;
  padding: 13px 34px;
  border-radius: 50px;
  transition: all .3s;
  letter-spacing: .05em;
  text-transform: uppercase;
  display: inline-block;
}

.btn-hero-outline:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ══════════════════════════════════════════════════════
   QUICK SEARCH CARD (below hero)
══════════════════════════════════════════════════════ */
.search-bar-wrap {
  position: relative;
  z-index: 5;
  margin-top: -40px;
}

.search-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .13);
  padding: 28px 32px;
}

.search-card .form-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  display: block;
}

.search-card select,
.search-card input[type=date] {
  width: 100%;
  border: 1.5px solid #e5e0d8;
  border-radius: 10px;
  height: 48px;
  font-size: .9rem;
  color: var(--text);
  background: var(--surface);
  padding: 0 12px;
  outline: none;
  transition: border-color .2s;
}

.search-card select:focus,
.search-card input[type=date]:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 107, 74, .12);
}

.btn-search {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  height: 48px;
  width: 100%;
  font-weight: 600;
  letter-spacing: .05em;
  transition: all .3s;
  cursor: pointer;
  font-size: .9rem;
}

.btn-search:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(26, 107, 74, .3);
}

/* ══════════════════════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════════════════════ */
.section-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  font-style: normal;
}

.section-title em {
  color: var(--primary);
  font-style: normal;
}

.divider-line {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
  margin: 18px 0 0;
}

/* ══════════════════════════════════════════════════════
   DESTINATION CARDS
══════════════════════════════════════════════════════ */
.dest-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
  transition: transform .4s ease, box-shadow .4s ease;
}

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
}

.dest-card img {
  width: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.dest-card:hover img {
  transform: scale(1.08);
}

.dest-card-tall img {
  height: 420px;
}

.dest-card-short img {
  height: 195px;
}

.dest-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(10, 28, 20, .9) 0%, transparent 100%);
  color: #fff;
}

.dest-overlay .tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 6px;
}

.dest-overlay h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.dest-overlay p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.5;
}

.dest-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .9rem;
  transition: background .2s, transform .2s;
}

.dest-card:hover .dest-arrow {
  background: var(--accent);
  transform: rotate(45deg);
}

/* ══════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════ */
.stats-section {
  background: var(--primary);
}

.stat-item {
  text-align: center;
  padding: 10px 0;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-top: 16px;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, .15);
  align-self: stretch;
}

.custom-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tredingsection,
.howitsection,
.popularsec,
.travelsec,
.outdoorsection,
.padding-cls {
  padding: 80px 0px;
}

/* Tablet */
@media (max-width: 991px) {
  .custom-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  #destinations,
  .tredingsection,
  .howitsection,
  .popularsec,
  .travelsec,
  .outdoorsection,
  .padding-cls {
    padding: 40px 0;
  }

  .hero {
    margin-top: -90px;
  }

  .site-nav {
    position: sticky;
    top: 0;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .custom-steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-content {
    padding-top: 0px;
  }
}

.custom-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Tablet */
@media (max-width: 991px) {
  .custom-pkg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .custom-pkg-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ══════════════════════════════════════════════════════
   PACKAGES
══════════════════════════════════════════════════════ */
.pkg-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .07);
  transition: transform .3s, box-shadow .3s;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .14);
}

.pkg-img {
  position: relative;
  overflow: hidden;
}

.pkg-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .5s;
}

.pkg-card:hover .pkg-img img {
  transform: scale(1.06);
}

.pkg-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary-teal);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.pkg-badge.gold {
  background: var(--accent);
  color: var(--dark);
}

.pkg-body {
  padding: 20px;
}

.pkg-dest {
  font-size: .75rem;
  color: var(--primary-teal);
  font-weight: 600;
  margin-bottom: 8px;
}

.pkg-body h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.pkg-meta {
  display: flex;
  gap: 14px;
  font-size: .78rem;
  color: var(--muted);
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.pkg-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f0ebe3;
}

.pkg-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.pkg-price small {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  color: var(--muted);
  font-weight: 400;
  display: block;
  margin-top: -4px;
}

.btn-pkg {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: .8rem;
  font-weight: 600;
  transition: all .2s;
  cursor: pointer;
}

.btn-pkg:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  color: #fff;
}

/* ══════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════ */
.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
  position: relative;
  transition: transform .3s;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(26, 107, 74, .1);
  line-height: 1;
  margin-bottom: 10px;
}

.step-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.step-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════════════ */
.why-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  transition: transform .3s;
}

.why-card:hover {
  transform: translateY(-4px);
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(26, 107, 74, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 14px;
}

.why-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════
   ACTIVITIES
══════════════════════════════════════════════════════ */
.activities-section {
  background: linear-gradient(135deg, var(--dark) 0%, #163b2a 100%);
}

.activity-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .85);
  font-size: .88rem;
  font-weight: 500;
  transition: all .25s;
  cursor: pointer;
}

.activity-pill:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
.testi-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .07);
  position: relative;
}

.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--primary);
  opacity: .15;
  line-height: .5;
  margin-bottom: 14px;
}

.testi-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--surface);
}

.testi-name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
}

.testi-trip {
  font-size: .75rem;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 28, 20, .72);
}

.cta-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.btn-cta {
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: all .3s;
}

.btn-cta:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.btn-cta-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .5);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 500;
  font-size: .9rem;
  transition: all .3s;
}

.btn-cta-outline:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
footer {
  background: #101010;
  color: rgba(255, 255, 255, .65);
}

.footer-brand span {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand span em {
  color: var(--accent);
  font-style: normal;
}

footer h6 {
  color: #fff;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 18px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 9px;
}

footer ul li a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  font-size: .88rem;
  transition: color .25s;
}

footer ul li a:hover {
  color: var(--accent-light);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: .9rem;
  transition: all .25s;
  margin-right: 6px;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
}

/* ══════════════════════════════════════════════════════
   FLOATING ELEMENTS
══════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  text-decoration: none;
  transition: transform .3s;
  animation: pulse 2s ease infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  }

  50% {
    box-shadow: 0 6px 40px rgba(37, 211, 102, .7);
  }
}

#backTop {
  position: fixed;
  bottom: 92px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(26, 107, 74, .3);
  opacity: 0;
  transform: translateY(10px);
  transition: all .3s;
  border: none;
}

#backTop.show {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.stagger .reveal:nth-child(1) {
  transition-delay: 0s;
}

.stagger .reveal:nth-child(2) {
  transition-delay: .12s;
}

.stagger .reveal:nth-child(3) {
  transition-delay: .24s;
}

.stagger .reveal:nth-child(4) {
  transition-delay: .36s;
}

.counter {
  transition: all .5s;
}

.mobile-drawer {
  display: none;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 991px) {

  .nav-links,
  .nav-right .btn-login,
  .nav-right .btn-plan {
    display: none;
  }

  .mobile-drawer {
    display: block;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-right {
    gap: 12px;
  }

  .nav-right .btn-plan {
    display: block;
    font-size: .78rem;
    padding: 8px 14px;
  }

  /* Mobile nav drawer */
  .mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, .5);
  }

  .mobile-nav.open {
    display: block;
  }

  .mobile-drawer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: #fff;
    padding: 20px;
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0, 0, 0, .2);

    transform: translateX(100%);
    transition: transform 0.3s ease;
    will-change: transform;
  }

  .mobile-nav.open .mobile-drawer {
    transform: translateX(0);
  }

  .mobile-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    float: right;
  }

  .mobile-nav a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    color: var(--text);
    font-size: .95rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .dest-card-tall img {
    height: 300px;
  }

  .mega-wrap {
    display: none !important;
  }

  .search-card {
    padding: 20px;
  }
}

/* Grid helpers */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.row .col-lg-4 {
  width: 33.333%;
  padding: 0 12px;
}

.row .col-lg-5 {
  width: 41.666%;
  padding: 0 12px;
}

.row .col-lg-6 {
  width: 50%;
  padding: 0 12px;
}

.row .col-lg-7 {
  width: 58.333%;
  padding: 0 12px;
}

.row .col-md-6 {
  padding: 0 12px;
}

.g-3 {
  gap: 24px 0;
}

.g-4 {
  gap: 32px 0;
}

@media (max-width:991px) {

  .row .col-lg-4,
  .row .col-lg-5,
  .row .col-lg-6,
  .row .col-lg-7 {
    width: 100%;
  }

  .row .col-md-6 {
    width: 50%;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:576px) {
  .row .col-md-6 {
    width: 100%;
  }

  .container {
    padding: 0px 10px;
  }

  .page-section {
    padding: 40px 0px !important;
  }
}