/* === DESI DISCOVERIES — GLOBAL STYLES === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #07497b;
  --ctacolour: #0c9d62;
  --textcta: #fff;
  --ctacolour--hover: #2d6a4f;
  --primary-light: #2D6A4F;
  --primary-dark: #0D2818;
  --accent: #2ba3d5;
  --accent-light: #07497b;
  --bg: #FAF7F2;
  --bg-card: #FFFFFF;
  --text: #1C1C1C;
  --text-muted: #6B7280;
  --border: #E5E0D8;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --nav-height: 72px;
  --transition: all 0.3s ease;
  --itembelow: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-logo .logo-accent {
  color: var(--accent);
}

.nav-logo img.logo-img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links>li>a {
  padding: 8px 13px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: var(--transition);
  display: block;
}

.nav-links>li>a:hover {
  color: var(--primary);
  background: rgba(27, 67, 50, 0.07);
}

/* Dropdown */
.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown>a::after {
  content: ' ▾';
  font-size: 0.7rem;
  opacity: 0.6;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: var(--transition);
  padding: 8px;
  z-index: 200;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-section-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 8px 12px 4px;
}

.dropdown-menu a {
  display: block;
  padding: 9px 12px;
  font-size: 0.875rem;
  border-radius: 6px;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--bg);
  color: var(--primary);
}

.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 9px 18px !important;
}

.nav-cta:hover {
  background: var(--primary-light) !important;
  color: #fff !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #d4751e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 133, 43, 0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

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

.btn-green {
  background: var(--primary);
  color: #fff;
}

.btn-green:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  font-size: 1rem;
  padding: 16px 32px;
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.82rem;
}

/* ============================
   LAYOUT
   ============================ */
.section {
  padding: 96px 24px;
}

.section-sm {
  padding: 64px 24px;
}

.section-alt {
  background: #fff;
}

.section-dark {
  background: var(--primary);
  color: #fff;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-dark .section-title {
  color: #fff;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.section-header {
  margin-bottom: 52px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* ============================
   HERO
   ============================ */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero-bg.loaded {
  transform: scale(1);
}

/* Multi-stop overlay: dark at bottom for search bar readability, dark at top */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(5, 18, 35, 0.70) 0%,
      rgba(7, 30, 58, 0.50) 40%,
      rgba(5, 18, 35, 0.68) 100%
    );
}

/* Content wrapper — everything centered */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: var(--nav-height);
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  padding: 7px 20px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  animation: fadeDown 0.7s ease both;
}

/* Headline */
.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  line-height: 1.06;
  margin-bottom: 18px;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
  animation: fadeDown 0.7s ease 0.1s both;
}

.hero h1 em {
  color: #5bc8f5;
  font-style: italic;
}

/* Sub text */
.hero-sub {
  font-size: 1.05rem;
  opacity: 0.88;
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 600px;
  animation: fadeDown 0.7s ease 0.18s both;
}

.hero-sub strong {
  color: #fff;
  font-weight: 600;
}

/* =============================
   SEARCH BAR CARD
   ============================= */
.hero-search-bar {
  width: 100%;
  max-width: 820px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32), 0 4px 16px rgba(0, 0, 0, 0.12);
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease 0.26s both;
}

/* Tabs row at top of search bar */
.hero-search-tabs {
  display: flex;
  background: #f4f4f6;
  border-bottom: 1px solid #e8e8ee;
  padding: 0 6px;
}

.hsb-tab {
  flex: 1;
  padding: 13px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #6b7280;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
  border-radius: 10px 10px 0 0;
  white-space: nowrap;
  position: relative;
}

.hsb-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 10%;
  right: 10%;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.hsb-tab.active {
  color: var(--primary);
  background: #fff;
}

.hsb-tab.active::after {
  opacity: 1;
}

.hsb-tab:hover:not(.active) {
  color: var(--primary);
  background: rgba(7, 73, 123, 0.06);
}

/* Input row at bottom of search bar */
.hero-search-input-row {
  display: flex;
  align-items: center;
  padding: 6px 8px 6px 16px;
  gap: 0;
  background: #fff;
}

.hero-search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  cursor: pointer;
}

.hero-search-field:hover .hsf-inner input {
  color: var(--primary);
}

.hsf-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
  opacity: 0.7;
}

.hsf-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.hsf-inner label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  cursor: pointer;
}

.hsf-inner input {
  border: none;
  outline: none;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: transparent;
  width: 100%;
  font-weight: 500;
}

.hsf-inner input::placeholder {
  color: #adb5bd;
  font-weight: 400;
}

.hero-search-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-search-btn {
  flex-shrink: 0;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}

.hero-search-btn:hover {
  background: #0a6fbc;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(7, 73, 123, 0.38);
}

/* =============================
   FEATURE HIGHLIGHTS
   ============================= */
.hero-features {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
  animation: fadeUp 0.7s ease 0.34s both;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.hf-icon {
  font-size: 0.95rem;
}

.hf-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.1rem;
  line-height: 1;
}

/* Hero Trust Bar */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.7s ease 0.42s both;
}

.hero-trust-item {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.hero-trust-num {
  font-weight: 700;
  color: #5bc8f5;
  font-size: 1rem;
}

.hero-trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.28);
}

/* Hero Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeIn 1.2s ease 1s both;
  white-space: nowrap;
}

.hero-scroll-hint span {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.65), transparent);
  animation: scrollPulse 1.9s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.35; transform: scaleY(0.55); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================
   CARDS
   ============================ */
.card-grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.trip-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.trip-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.trip-card-img {
  height: 210px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.trip-card-img-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.trip-card:hover .trip-card-img-inner {
  transform: scale(1.05);
}

.trip-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
}

.trip-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 1;
}

.trip-card-nights {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 1;
}

.trip-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.trip-card-body h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.trip-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.55;
  flex: 1;
}

.trip-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.trip-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
}

.trip-price small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ============================
   STATS
   ============================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(7, 73, 123, 0.22);
}

.stat-item {
  background: linear-gradient(135deg, var(--primary) 0%, #0a6fbc 100%);
  color: #fff;
  padding: 44px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.18);
}

.stat-item:last-child::after {
  display: none;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(7, 73, 123, 0.35);
  z-index: 1;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #5bc8f5;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============================
   PAGE HERO (Inner pages)
   ============================ */
.page-hero {
  margin-top: var(--nav-height);
  background: var(--primary);
  padding: 72px 24px 64px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 40"><path d="M0 40 L10 20 L20 30 L30 10 L40 25 L50 5 L60 20 L70 15 L80 28 L90 8 L100 22 L100 40Z" fill="rgba(255,255,255,0.04)"/></svg>') bottom/100% auto no-repeat;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1rem;
  opacity: 0.78;
  max-width: 480px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.82rem;
  opacity: 0.65;
  margin-bottom: 12px;
}

.breadcrumb a:hover {
  opacity: 1;
  color: var(--accent-light);
}

/* ============================
   PACKAGE PAGE
   ============================ */
.package-hero {
  height: 62vh;
  min-height: 460px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 52px;
  margin-top: var(--nav-height);
}

.package-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.package-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.25) 55%, transparent 100%);
}

.package-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.package-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 14px;
}

.package-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.88rem;
}

.package-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pkg-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Package Layout */
.package-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.package-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.sidebar-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  margin-bottom: 20px;
}

.sidebar-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.sidebar-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.sidebar-price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.quick-info-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.quick-info-item:last-child {
  border-bottom: none;
}

.quick-info-label {
  color: var(--text-muted);
}

.quick-info-value {
  font-weight: 600;
  color: var(--text);
}

/* Itinerary */
.itinerary-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.itinerary-item:last-child {
  border-bottom: none;
}

.itinerary-day {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.itinerary-day strong {
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  display: block;
}

.itinerary-content h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.itinerary-content p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Inclusions */
.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.inclusion-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.87rem;
  padding: 10px 12px;
  background: rgba(27, 67, 50, 0.05);
  border-radius: 8px;
}

.exclusion-item {
  background: rgba(239, 68, 68, 0.05);
}

.inclusion-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* Enquiry Bar */
.enquiry-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  color: #fff;
  padding: 14px 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

.enquiry-bar-info strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
}

.enquiry-bar-info p {
  font-size: 0.8rem;
  opacity: 0.7;
}

.enquiry-bar-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ============================
   GALLERY
   ============================ */
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text);
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.gallery-item:hover {
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  width: 100%;
  display: block;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 67, 50, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: #fff;
  font-size: 1.5rem;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(27, 67, 50, 0.35);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  line-height: 0.6;
  margin-bottom: 16px;
  display: block;
}

.testimonial-text {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.stars {
  color: #F59E0B;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.testimonial-author-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-author-trip {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================
   CONTACT
   ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: rgba(27, 67, 50, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-icon-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}

.contact-icon-value {
  font-size: 0.95rem;
  font-weight: 500;
}

.map-embed {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 360px;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================
   WHY US
   ============================ */
.why-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.why-card:hover {
  background: #fff;
  box-shadow: var(--shadow);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: rgba(27, 67, 50, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}

.why-card h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================
   ABOUT
   ============================ */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.about-img img {
  width: 100%;
  display: block;
}

.team-card {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  color: #fff;
}

.team-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================
   DESTINATIONS PAGE
   ============================ */
.dest-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.dest-section-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.dest-section-badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.custom-trip-card {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 48px 40px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.custom-trip-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #fff;
}

.custom-trip-card p {
  font-size: 0.93rem;
  opacity: 0.8;
  max-width: 480px;
  line-height: 1.7;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: #0A1F12;
  color: rgba(255, 255, 255, 0.75);
  padding: 72px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  padding: 4px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.55;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.social-link:hover {
  background: var(--accent);
  color: #fff;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--ctacolour) 0%, var(--ctacolour--hover) 100%);
  padding: 96px 24px;
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}

.cta-section p {
  font-size: 1rem;
  opacity: 0.8;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Utilities */
.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

.tag {
  display: inline-block;
  background: rgba(27, 67, 50, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-right: 6px;
  margin-bottom: 6px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232, 133, 43, 0.1);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-layout {
    grid-template-columns: 1fr;
  }

  .package-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 20px;
  }

  /* Hero search bar stacks on mobile */
  .hero-search-input-row {
    flex-direction: column;
    padding: 12px 16px;
    gap: 0;
  }

  .hero-search-field {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }

  .hero-search-field:last-of-type {
    border-bottom: none;
  }

  .hero-search-divider {
    display: none;
  }

  .hero-search-btn {
    width: 100%;
    margin-left: 0;
    margin-top: 12px;
    justify-content: center;
    padding: 14px;
  }

  .hero-search-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hero-search-tabs::-webkit-scrollbar {
    display: none;
  }

  .hsb-tab {
    flex: 0 0 auto;
    padding: 11px 14px;
    font-size: 0.78rem;
  }

  .hero-features {
    gap: 8px;
  }

  .hf-sep {
    display: none;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    columns: 2;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .enquiry-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .custom-trip-card {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .inclusions-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    gap: 2px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    align-items: stretch;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }

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

  .hamburger {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--bg);
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin-top: 4px;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }
}

@media (max-width: 480px) {
  .gallery-masonry {
    columns: 1;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    gap: 12px;
  }

  .hero-pills {
    gap: 6px;
  }

  .hero-pill {
    font-size: 0.75rem;
    padding: 5px 12px;
  }

  .popup-modal {
    padding: 28px 20px 24px;
    border-radius: 16px;
  }
}

/* ============================
   LEAD CAPTURE POPUP
   ============================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.58);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(3px);
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  padding: 40px 36px 32px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  opacity: 0;
  overflow: hidden;
}

.popup-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #2ba3d5 100%);
}

.popup-overlay.active .popup-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}

.popup-close:hover {
  background: var(--bg);
  color: var(--text);
}

.popup-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}

.popup-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.2;
}

.popup-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.6;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.popup-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.popup-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.popup-field input {
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.popup-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(7,73,123,0.12);
  background: #fff;
}

.popup-field input::placeholder {
  color: #b0b5be;
}

.popup-submit {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.popup-submit:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.42);
}

.popup-privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}