/* ============================================================
   WANDERLUST TRAVEL — VIBRANT TRAVEL BLUE DESIGN SYSTEM
   Primary: Deep Travel Blue (#1f3c88)
   Accents: Yellow (#f7b500), Orange (#ff7a00), Green (#3dbb6f), Sky Blue (#3aa7ff)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
  /* Core palette */
  --blue-deep:       #1f3c88;
  --blue-mid:        #2a4ea6;
  --blue-light:      #3a6fd8;
  --blue-pale:       #e8eef8;
  --blue-xpale:      #f0f4fc;

  /* Accents */
  --yellow:          #f7b500;
  --yellow-light:    #ffd04d;
  --yellow-dark:     #d99e00;
  --orange:          #ff7a00;
  --orange-light:    #ff9533;
  --orange-dark:     #cc6200;
  --green:           #3dbb6f;
  --green-light:     #5dd18a;
  --green-dark:      #2a9254;
  --sky:             #3aa7ff;
  --sky-light:       #6fc1ff;
  --sky-dark:        #1a8ae0;

  /* Backgrounds */
  --cream:           #f0f4fc;    /* was warm sand — now pale blue tint */
  --warm-white:      #f8faff;    /* was warm cream — now cool white */
  --sand:            #dce6f7;    /* was sandy — now light blue-grey */

  /* Primary action (was terracotta — now deep blue) */
  --terracotta:      #1f3c88;
  --terracotta-light:#2a4ea6;
  --terracotta-dark: #162d6a;

  /* Dark sections (was deep-brown — now deep navy) */
  --deep-brown:      #0d1f4e;
  --mid-brown:       #1f3c88;

  /* Utility (was olive — now green accent) */
  --olive:           #3dbb6f;

  /* Was navy — now richer blue */
  --navy:            #0d1f4e;

  /* Was gold — now yellow accent */
  --gold:            #f7b500;
  --gold-light:      #ffd04d;

  /* Text */
  --text-primary:    #0d1f4e;
  --text-secondary:  #3a5080;
  --text-light:      #7a90b8;

  /* Border */
  --border:          #c8d8f0;

  /* Shadows (blue-tinted) */
  --shadow-sm: 0 2px 12px rgba(31, 60, 136, 0.08);
  --shadow-md: 0 8px 32px rgba(31, 60, 136, 0.14);
  --shadow-lg: 0 24px 64px rgba(31, 60, 136, 0.20);

  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'poppins', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
} 

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display-xl { font-family: var(--font-display); font-size: clamp(3.5rem, 7vw, 7rem); font-weight: 600; line-height: 0.95; letter-spacing: -0.02em; }
.display-lg { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 600; line-height: 1.05; }
.display-md { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: 600; line-height: 1.1; }
.section-title { font-family: var(--font-body); font-size: clamp(1rem, 3vw, 2.8rem); font-weight: 400; }
.label-sm { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav-logo{
  width: 100px;
  height: 100px;
}
.nav.scrolled {
  background: rgba(248, 250, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
}

.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--blue-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 16px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--deep-brown);
  letter-spacing: 0.02em;
}

.nav-logo-text span { color: var(--orange); }

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--blue-deep); }

.nav-cta {
  background: var(--orange);
  color: white !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 0.78rem !important;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }

.nav-mobile-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  width: 28px; padding: 4px;
}

.nav-mobile-toggle span {
  display: block; height: 1.5px; background: var(--deep-brown);
  transition: all var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}

.hero-slider {
  position: absolute; inset: 0;
  display: flex; transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.hero-slide {
  min-width: 100%; position: relative;
}

.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active img { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 31, 78, 0.65) 0%,
    rgba(31, 60, 136, 0.35) 50%,
    rgba(58, 167, 255, 0.12) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  padding: 120px 2rem 2rem;
  max-width: 1400px; margin: 0 auto; width: 100%;
}

.hero-label {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--yellow-light);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-label::before {
  content: '';
  display: block; width: 40px; height: 1px; background: var(--yellow-light);
}

.hero-title {
  color: var(--warm-white);
  margin-bottom: 1.5rem;
  max-width: 700px;
  animation: fadeInUp 0.8s 0.15s ease both;
}

.hero-title em {
  font-style: italic; color: var(--gold-light);
  font-family: 'Playfair Display', serif;
}

.hero-subtitle {
  color: rgba(255, 252, 248, 0.75);
  font-size: 1.05rem; font-weight: 300;
  max-width: 480px;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-stats {
  display: flex; gap: 3rem;
  animation: fadeInUp 0.8s 0.45s ease both;
}

.hero-stat {
  color: white;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 300;
  line-height: 1;
  color: var(--yellow-light);
}

.hero-stat-label {
  font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.hero-nav-dots {
  position: absolute; bottom: 200px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}

.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: all var(--transition);
  cursor: pointer;
}

.hero-dot.active { background: white; width: 24px; border-radius: 3px; }

/* ============================================================
   SEARCH FORM
   ============================================================ */
.search-section {
  position: relative; z-index: 10;
  margin-top: -80px;
  padding: 0 2rem 4rem;
}

.search-card {
  max-width: 1100px; margin: 0 auto;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.search-card-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 1.5rem;
}

.search-card-title {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--deep-brown);
}

.search-tabs {
  display: flex; gap: 0;
  background: var(--cream);
  border-radius: 6px;
  padding: 4px;
  margin-left: auto;
}

.search-tab {
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.search-tab.active {
  background: var(--blue-deep);
  color: white;
}

.search-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  align-items: end;
}

.form-group {
  display: flex; flex-direction: column; gap: 8px;
}

.form-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-label span { color: var(--orange); }

.form-input, .form-select {
  height: 52px;
  padding: 0 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--warm-white);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  width: 100%;
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--blue-deep);
  box-shadow: 0 0 0 3px rgba(31, 60, 136, 0.12);
}

.form-select-wrapper {
  position: relative;
}

.form-select-wrapper::after {
  content: '▾';
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  color: var(--text-secondary);
  pointer-events: none;
  font-size: 0.75rem;
}

.pax-input {
  display: flex; gap: 12px;
}

.pax-group {
  flex: 1;
  position: relative;
}

.pax-group label {
  position: absolute; top: -20px; left: 0;
  font-size: 0.68rem; color: var(--text-light);
  letter-spacing: 0.1em;
}

.pax-counter {
  display: flex; align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  height: 52px;
  overflow: hidden;
}

.pax-btn {
  width: 44px; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  color: var(--text-secondary);
  font-size: 1.2rem; font-weight: 300;
  transition: background var(--transition);
  flex-shrink: 0;
}

.pax-btn:hover { background: var(--sand); color: var(--blue-deep); }

.pax-value {
  flex: 1; text-align: center;
  font-size: 1rem; font-weight: 500;
  color: var(--text-primary);
}

.search-btn {
  height: 52px;
  background: var(--blue-deep);
  color: white;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all var(--transition);
  min-width: 160px;
}

.search-btn:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.35);
}

/* Live Price Preview in search */
.price-preview {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--blue-xpale), rgba(31,60,136,0.07));
  border: 1.5px solid rgba(31,60,136,0.22);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
  display: none;
}

.price-preview.visible { display: flex; }

.price-preview-label { font-size: 0.78rem; color: var(--text-secondary); letter-spacing: 0.06em; }
.price-preview-amount { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--orange); }
.price-preview-note { font-size: 0.72rem; color: var(--text-light); }

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.section { padding: 5rem 2rem; }
.section-sm { padding: 3rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.container-wide { max-width: 1400px; margin: 0 auto; }

.section-header {
  margin-bottom: 3rem;
}

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

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: currentColor;
}

/* ============================================================
   DESTINATION CARDS
   ============================================================ */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.destination-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  flex-shrink: 0;
}

.destination-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-card:hover img { transform: scale(1.08); }

.destination-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,18,8,0.8) 0%, rgba(30,18,8,0.1) 60%, transparent 100%);
}

.destination-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  color: white;
}

.destination-card-name {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 300;
  margin-bottom: 4px;
}

.destination-card-count {
  font-size: 0.75rem; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
}

.destination-card-tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--sky);
  color: white; padding: 6px 14px;
  border-radius: 2px; font-size: 0.7rem;
  letter-spacing: 0.1em; font-weight: 600;
  text-transform: uppercase;
}

/* ============================================================
   PACKAGE CARDS
   ============================================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

.package-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.package-card-img {
  position: relative;
  height: 240px; overflow: hidden;
}

.package-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}

.package-card:hover .package-card-img img { transform: scale(1.06); }

.package-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255, 252, 248, 0.95);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 2px;
  font-size: 0.72rem; letter-spacing: 0.1em;
  font-weight: 600; text-transform: uppercase;
  color: var(--deep-brown);
}

.package-card-rating {
  position: absolute; top: 14px; right: 14px;
  background: var(--yellow);
  color: var(--blue-deep); padding: 6px 12px;
  border-radius: 2px;
  font-size: 0.78rem; font-weight: 700;
}

.package-card-body {
  padding: 1.5rem;
  flex: 1; display: flex; flex-direction: column;
}

.package-card-dest {
  font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sky-dark);
  font-weight: 600; margin-bottom: 6px;
}

.package-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 400;
  margin-bottom: 4px;
}

.package-card-tagline {
  font-size: 0.85rem; color: var(--text-secondary);
  margin-bottom: 1rem;
}

.package-highlights {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 1.25rem;
}

.package-highlight {
  background: var(--cream);
  padding: 5px 12px;
  border-radius: 2px;
  font-size: 0.75rem; color: var(--text-secondary);
  border: 1px solid var(--border);
}

.package-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.package-card-price { }

.package-card-from { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.08em; }

.package-card-amount {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 400;
  color: var(--orange);
}

.package-card-duration {
  font-size: 0.78rem; color: var(--text-light);
  display: flex; align-items: center; gap: 6px;
}

.package-card-btn {
  background: var(--blue-deep);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.package-card-btn:hover {
  background: var(--orange);
  transform: translateX(3px);
}

/* ============================================================
   FILTERS
   ============================================================ */
.filters-bar {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: flex-end;
}

.filter-group { display: flex; flex-direction: column; gap: 8px; min-width: 160px; }
.filter-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--text-secondary); }
.filter-select { height: 42px; padding: 0 12px; border: 1.5px solid var(--border); border-radius: var(--radius); background: white; font-size: 0.88rem; appearance: none; }
.filter-select:focus { outline: none; border-color: var(--blue-deep); }

.filter-chips {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
}

.filter-chip {
  padding: 8px 18px; border: 1.5px solid var(--border);
  border-radius: 2px; font-size: 0.78rem; font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
  background: white;
}

.filter-chip.active {
  border-color: var(--blue-deep);
  background: var(--blue-deep);
  color: white;
}

/* ============================================================
   PACKAGE DETAILS PAGE
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-main { grid-row: 1 / 3; }

.gallery-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.gallery-img:hover { transform: scale(1.04); }

.gallery-item { overflow: hidden; }

.detail-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start;
}

.detail-sticky { position: sticky; top: 90px; }

.price-card {
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.price-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem; margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.price-form-group { margin-bottom: 1.25rem; }

.price-breakdown {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0;
  font-size: 0.88rem; color: var(--text-secondary);
}

.price-row.total {
  border-top: 1.5px solid var(--border);
  margin-top: 8px; padding-top: 12px;
  font-weight: 600; font-size: 1rem;
  color: var(--text-primary);
}

.price-total-amount {
  font-family: var(--font-display);
  font-size: 1.8rem; color: var(--orange);
}

.btn-primary {
  width: 100%; padding: 16px;
  background: var(--blue-deep);
  color: white; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: all var(--transition);
  margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}

.btn-primary:hover { background: var(--orange); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,122,0,0.35); }

.btn-whatsapp {
  width: 100%; padding: 14px;
  background: #25D366;
  color: white; border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}

.btn-whatsapp:hover { background: #128C7E; }

/* Itinerary */
.itinerary-list { display: flex; flex-direction: column; gap: 0; }

.itinerary-day {
  display: flex; gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

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

.itinerary-day-marker {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}

.itinerary-day-num {
  width: 48px; height: 48px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.9rem;
}

.itinerary-day-line {
  width: 1px; flex: 1; background: var(--border); min-height: 40px;
}

.itinerary-day-content { flex: 1; padding-top: 10px; }

.itinerary-day-title {
  font-family: var(--font-display);
  font-size: 1.25rem; margin-bottom: 8px;
}

.itinerary-day-desc {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 12px;
}

.itinerary-day-meals {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: var(--olive);
  font-weight: 600; letter-spacing: 0.06em;
}

/* Inclusions */
.inc-exc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}

.inc-list, .exc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.inc-list li, .exc-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5;
}

.inc-list li::before {
  content: '✓'; flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.65rem; font-weight: 700;
  margin-top: 1px;
}

.exc-list li::before {
  content: '×'; flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--sand); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: 0.75rem; font-weight: 700;
  margin-top: 1px;
}

/* Hotels */
.hotels-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem;
}

.hotel-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
}

.hotel-city { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sky-dark); font-weight: 600; margin-bottom: 4px; }
.hotel-name { font-weight: 600; margin-bottom: 4px; }
.hotel-stars { color: var(--yellow); font-size: 0.85rem; }
.hotel-type { font-size: 0.78rem; color: var(--text-secondary); margin-top: 4px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem;
}

.review-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform var(--transition);
}

.review-card:hover { transform: translateY(-3px); }

.review-stars { color: var(--yellow); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 3px; }

.review-text {
  font-family: var(--font-display);
  font-size: 1.05rem; font-style: italic; font-weight: 300;
  line-height: 1.7; color: var(--text-primary);
  margin-bottom: 1.5rem;
}

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

.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: var(--blue-deep);
  flex-shrink: 0;
}

.review-name { font-weight: 600; font-size: 0.9rem; }
.review-trip { font-size: 0.78rem; color: var(--text-light); }

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--blue-deep) 0%, #0d1f4e 100%);
  padding: 5rem 2rem;
}

.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  text-align: center;
}

.stat-item {}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 300;
  color: var(--yellow-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.75rem; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   CUSTOM TRIP PLANNER
   ============================================================ */
.planner-section {
  background: linear-gradient(135deg, #0d1f4e 0%, var(--blue-deep) 60%, #163070 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.planner-section::before {
  content: 'PLAN';
  position: absolute; right: -2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 20rem; font-weight: 300;
  color: rgba(255,255,255,0.03);
  pointer-events: none; line-height: 1;
}

.planner-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
}

.planner-text { color: white; }

.planner-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--cream);
}

.planner-title em { color: var(--yellow-light); font-style: italic; }

.planner-subtitle {
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem; font-size: 1rem;
}

.planner-form {
  background: rgba(255,252,248,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.planner-form .form-input,
.planner-form .form-select,
.planner-form textarea {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: white;
}

.planner-form .form-input::placeholder { color: rgba(255,255,255,0.4); }
.planner-form .form-label { color: rgba(255,255,255,0.6); }
.planner-form .form-select option { background: var(--deep-brown); color: white; }

.planner-form textarea {
  width: 100%; min-height: 100px; padding: 14px 16px;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--radius); resize: vertical;
  background: rgba(255,255,255,0.08);
  color: white; font-size: 0.95rem;
}

.planner-form .form-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}

/* ============================================================
   SEARCH RESULTS PAGE
   ============================================================ */
.results-header {
  background: linear-gradient(135deg, #0d1f4e, var(--blue-deep));
  padding: 8rem 2rem 3rem;
  color: white;
}

.results-title {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 300;
  margin-bottom: 8px;
}

.results-meta { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

.results-layout {
  display: grid; grid-template-columns: 280px 1fr; gap: 2rem;
  padding: 2rem;
  max-width: 1300px; margin: 0 auto;
  align-items: start;
}

.filters-sidebar {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky; top: 90px;
}

.sidebar-title {
  font-family: var(--font-display);
  font-size: 1.2rem; margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}

.sidebar-section { margin-bottom: 2rem; }
.sidebar-label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--text-secondary); margin-bottom: 1rem; }

.range-inputs { display: flex; align-items: center; gap: 8px; }
.range-inputs input[type="number"] {
  flex: 1; height: 42px; padding: 0 10px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 0.88rem;
}

input[type="range"] {
  width: 100%; accent-color: var(--blue-deep);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 60px; height: 60px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  animation: whatsappPulse 2s infinite;
  cursor: pointer;
  transition: transform var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover { transform: scale(1.12); animation: none; box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5); }

.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.12); }
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(30,18,8,0.7);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}

.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  max-width: 600px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(20px);
  transition: transform var(--transition);
  padding: 2.5rem;
}

.modal-overlay.open .modal { transform: translateY(0); }

.modal-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 2rem;
}

.modal-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--text-secondary);
  flex-shrink: 0;
  transition: background var(--transition);
}

.modal-close:hover { background: var(--sand); color: var(--text-primary); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem; color: var(--cream);
  margin-bottom: 1rem;
}

.footer-brand-name span { color: var(--yellow); }

.footer-desc { font-size: 0.88rem; line-height: 1.8; margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: 12px; }

.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.85rem;
  transition: all var(--transition);
}

.social-btn:hover { background: var(--sky); color: white; }

.footer-heading { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); font-weight: 600; margin-bottom: 1.25rem; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--sky-light); }

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

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1; transform: translateY(0);
}

/* Staggered delays */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* ============================================================
   NOTIFICATION TOAST
   ============================================================ */
.toast {
  position: fixed; top: 90px; right: 2rem; z-index: 3000;
  background: var(--blue-deep);
  color: white; padding: 14px 24px;
  border-radius: var(--radius);
  border-left: 4px solid var(--yellow);
  font-size: 0.88rem;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 320px;
}

.toast.show { transform: translateX(0); }
.toast.success { border-left-color: var(--green); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sticky { position: static; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 300px; }
  .gallery-main { grid-row: 1; }
  .gallery-item:not(.gallery-main) { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .planner-grid { grid-template-columns: 1fr; }
  .results-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .search-form { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .packages-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .inc-exc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .planner-form .form-grid-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-stat-number { font-size: 1.8rem; }
  .destinations-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 1rem; }
  .search-card { padding: 1.5rem; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-terracotta { color: var(--terracotta); }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none !important; }

/* Horizontal scroll for mobile destination cards */
.destinations-scroll {
  display: flex; gap: 1.5rem;
  overflow-x: hidden;
  padding-bottom: 1rem;
}

.destinations-scroll .destination-card {
  min-width: 280px; 
  height: 380px;
}


/* Featured badge */
.featured-badge {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: white; font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 700;
  padding: 4px 12px; border-radius: 2px;
  display: inline-flex; align-items: center; gap: 6px;
}

/* Loading spinner */
.spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--sand);
  border-top-color: var(--blue-deep);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 3rem auto;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* No results */
.no-results {
  text-align: center; padding: 4rem 2rem;
}

.no-results-icon { font-size: 4rem; margin-bottom: 1rem; opacity: 0.4; }
.no-results-title { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 0.75rem; }
.no-results-text { color: var(--text-secondary); }

.animate-on-scroll {
  opacity: 1; 
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

@media (max-width: 480px) {
  
.search-tabs {
    display: none;
}
}
