/* ============================================================
   TRIP STAR INDIA TOURS — Design System & Component Styles
   Version: 3.0.0
   Aesthetic: Clean Oceanic, Modern Minimalist, Premium
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@500;600;700&display=swap');

/* ============================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens from design.md)
   ============================================================ */
:root {
  /* --- Blue Palette (Updated per request) --- */
  --theme-primary:  #0080c6;
  --theme-primary-dark: #006095;
  --theme-primary-light: rgba(0, 128, 198, 0.1);
  --theme-primary-glow: rgba(0, 128, 198, 0.4);
  
  --deep-navy:      #1E293B;
  --deep-abyss:     #1E293B;
  --royal-teal:     #0080c6;
  --coastal-tide:   #0080c6;
  --warm-gold:      var(--theme-primary);
  --bright-coral:   var(--theme-primary);
  --charcoal:       #1E293B;
  --slate-marine:   #1E293B;
  --white:          #FFFFFF;
  --off-white:      #EBF2F5;
  --sea-mist:       #EBF2F5;
  --crimson-strike:  #C0392B;

  /* --- Derived / Extended Palette --- */
  --deep-navy-90:   rgba(30, 41, 59, 0.9);
  --deep-navy-70:   rgba(30, 41, 59, 0.7);
  --deep-navy-50:   rgba(30, 41, 59, 0.5);
  --royal-teal-light: #3399d1;
  --royal-teal-10:  rgba(0, 128, 198, 0.1);
  --warm-gold-light: var(--theme-primary-light);
  --warm-gold-dark: var(--theme-primary-dark);
  --warm-gold-10: var(--theme-primary-light);
  --coral-glow: var(--theme-primary-glow);
}



:root {
  --gray-100:       #F1F3F5;
  --gray-200:       #E9ECEF;
  --gray-300:       #DEE2E6;
  --gray-400:       #CED4DA;
  --gray-500:       #ADB5BD;
  --gray-600:       #868E96;
  --shadow-sm:      0 1px 3px rgba(27, 58, 75, 0.08);
  --shadow-md:      0 4px 12px rgba(27, 58, 75, 0.10);
  --shadow-lg:      0 8px 30px rgba(27, 58, 75, 0.12);
  --shadow-xl:      0 16px 48px rgba(27, 58, 75, 0.16);
  --shadow-gold:    0 4px 20px rgba(232, 149, 106, 0.2);

  /* --- Typography --- */
  --font-heading:   'Plus Jakarta Sans', 'Montserrat', sans-serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-cta:       'Plus Jakarta Sans', sans-serif;

  /* --- Spacing Scale --- */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;

  /* --- Border Radius --- */
  --radius-sm:  4px;
  --radius-md:  6px;
  --radius-lg:  10px;
  --radius-xl:  14px;
  --radius-full: 50%;

  /* --- Transitions --- */
  --ease-out:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast:   150ms;
  --duration-normal: 300ms;
  --duration-slow:   500ms;

  /* --- Layout --- */
  --container-max:   1320px;
  --header-height:   80px;
  --header-height-scrolled: 64px;
}

[data-theme="dark"] {
  /* Dark mode overrides */
  --deep-navy:      #F8FAFC;
  --deep-abyss:     #F8FAFC;
  --charcoal:       #E2E8F0;
  --slate-marine:   #CBD5E1;
  --white:          #0F172A;
  --off-white:      #1E293B;
  --sea-mist:       #1E293B;
  
  --gray-100:       #1E293B;
  --gray-200:       #334155;
  --gray-300:       #475569;
  --gray-400:       #64748B;
  --gray-500:       #94A3B8;
  --gray-600:       #CBD5E1;
  
  --shadow-sm:      0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md:      0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg:      0 8px 30px rgba(0, 0, 0, 0.6);
  --shadow-xl:      0 16px 48px rgba(0, 0, 0, 0.7);
}

/* ============================================================
   2. CSS RESET & BASE STYLES
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: var(--warm-gold);
  color: var(--white);
}

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

a {
  color: var(--royal-teal);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--warm-gold);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

:focus-visible {
  outline: 2px solid var(--warm-gold);
  outline-offset: 2px;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--deep-navy);
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--deep-navy);
  letter-spacing: -0.02em;
}

h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--charcoal);
}

h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--charcoal);
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

.text-teal { color: var(--royal-teal); }
.text-gold { color: var(--warm-gold); }
.text-navy { color: var(--deep-navy); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

.section-eyebrow {
  font-family: var(--font-cta);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--warm-gold);
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 640px;
  margin: var(--space-md) auto 0;
  line-height: 1.7;
}

/* ============================================================
   4. LAYOUT & GRID
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--alt {
  background-color: var(--off-white);
}

.section--navy {
  background-color: var(--deep-navy);
  color: var(--white);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

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

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--bright-coral), var(--warm-gold-light));
  border: none;
  margin: var(--space-md) auto 0;
  border-radius: 2px;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  font-family: var(--font-cta);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--bright-coral);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(232, 149, 106, 0.25);
}

.btn--primary:hover {
  background-color: var(--warm-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 149, 106, 0.4);
  color: var(--white);
}

.btn--secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn--secondary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--deep-navy);
  border-color: var(--deep-navy);
}

.btn--outline:hover {
  background: var(--deep-navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--teal {
  background: transparent;
  color: var(--coastal-tide);
  border-color: var(--coastal-tide);
}

.btn--teal:hover {
  background: var(--coastal-tide);
  border-color: var(--coastal-tide);
  transform: translateY(-2px);
  color: var(--white);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn--whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-2px);
  color: var(--white);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
}

.btn--lg {
  padding: 1.1rem 2.75rem;
  font-size: 0.9rem;
}

.btn-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ============================================================
   6. GLOBAL HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--white);
  transition: all var(--duration-normal) var(--ease-out);
  border-bottom: 1px solid var(--gray-200);
}

.site-header.scrolled {
  height: var(--header-height-scrolled);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* --- Logo --- */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform var(--duration-normal) var(--ease-spring);
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-tripstar {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--charcoal);
  letter-spacing: 1px;
}

.logo-india {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--theme-primary);
  text-align: right;
  margin-top: -2px;
}

/* --- Desktop Navigation --- */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: var(--space-sm) var(--space-md);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-out);
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--warm-gold);
  transition: all var(--duration-normal) var(--ease-out);
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--warm-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}

.nav-link .chevron {
  font-size: 0.6rem;
  transition: transform var(--duration-fast) var(--ease-out);
  margin-left: 2px;
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
}

/* --- Mega Menu --- */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 780px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2xl);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--duration-normal) var(--ease-out);
  border: 1px solid var(--gray-200);
  z-index: 100;
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
  transform: translateX(-50%) rotate(45deg);
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.mega-menu-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-out);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.mega-menu-card:hover {
  background: var(--theme-primary-light);
  border-color: var(--theme-primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.mega-menu-card-img {
  width: 100%;
  height: 120px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.mega-menu-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-menu-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--deep-navy);
  line-height: 1.3;
}

.mega-menu-card-desc {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.mega-menu-label {
  font-family: var(--font-cta);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-500);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: var(--space-md);
  grid-column: 1 / -1;
}

/* --- Explore India Dropdown (v2.0) --- */
.nav-item--dropdown {
  position: relative;
}

.explore-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 380px;
  display: none;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(2, 48, 71, 0.08);
  border: 1px solid var(--gray-200);
  z-index: 100;
  overflow: hidden;
}

.explore-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-top: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
  transform: translateX(-50%) rotate(45deg);
}

.nav-item--dropdown:hover .explore-dropdown {
  display: block;
  animation: dropdownReveal 0.25s var(--ease-out) forwards;
}

@keyframes dropdownReveal {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.explore-dropdown-inner {
  padding: var(--space-sm);
}

.explore-dropdown-link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-radius: 8px;
  text-decoration: none;
  color: var(--charcoal);
  transition: all var(--duration-fast) var(--ease-out);
}

.explore-dropdown-link:hover {
  background: rgba(2, 48, 71, 0.04);
  color: #219EBC;
  transform: translateX(4px);
}

.explore-dropdown-icon {
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 48, 71, 0.05);
  border-radius: 10px;
  flex-shrink: 0;
}

.explore-dropdown-link:hover .explore-dropdown-icon {
  background: rgba(33, 158, 188, 0.1);
}

.explore-dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.explore-dropdown-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: #023047;
  line-height: 1.3;
}

.explore-dropdown-link:hover .explore-dropdown-title {
  color: #219EBC;
}

.explore-dropdown-desc {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* --- Catalog Controls (Filter + Grid) --- */
.catalog-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
  padding: var(--space-md) 0;
}

/* --- Filter Ribbon (Catalog Pill Buttons) --- */
.filter-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

/* --- Grid Controls --- */
.grid-controls {
  display: flex;
  gap: var(--space-xs);
  align-items: center;
}

.grid-pill {
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gray-300);
  border-radius: 100px;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.grid-pill:hover {
  border-color: #219EBC;
  color: #219EBC;
  background: rgba(33, 158, 188, 0.06);
}

.grid-pill.active {
  background: #023047;
  border-color: #023047;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 48, 71, 0.2);
}

.filter-pill {
  padding: 10px 24px;
  border: 2px solid var(--gray-300);
  border-radius: 100px;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-cta);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}

.filter-pill:hover {
  border-color: #219EBC;
  color: #219EBC;
  background: rgba(33, 158, 188, 0.06);
}

.filter-pill.active {
  background: #023047;
  border-color: #023047;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 48, 71, 0.2);
}

/* --- Language Filtering --- */
html[lang="ru"] .tour-card[data-lang="en"] {
  display: none !important;
}
html[lang="en"] .tour-card[data-lang="ru"] {
  display: none !important;
}

/* --- Tools Page --- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.tool-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 14px rgba(2, 48, 71, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(2, 48, 71, 0.1);
}
.tool-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.tool-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}
.tool-desc {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.tool-form .form-group {
  margin-bottom: 1rem;
}
.tool-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tool-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text-dark);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}
.tool-form input:focus {
  outline: none;
  border-color: var(--primary);
}
.tool-result-box {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--primary);
}
.tool-result-box.hidden {
  display: none;
}
.result-row {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}
.result-highlight {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.result-highlight .label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.result-highlight .value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.current-weather h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--text-dark);
}
.c-temp {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}
.forecast-title {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}
.forecast-row {
  display: flex;
  justify-content: space-between;
}
.forecast-day {
  text-align: center;
}
.f-date {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}
.f-emoji {
  font-size: 1.5rem;
  margin: 0.25rem 0;
}
.f-temp {
  font-size: 0.9rem;
  font-weight: 600;
}
.error-msg {
  color: #e63946;
  font-weight: 500;
}

/* --- Tour Card Grid --- */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  transition: grid-template-columns 0.4s var(--ease-out);
}

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

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

.catalog-grid.grid-cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1200px) {
  .catalog-grid.grid-cols-4,
  .catalog-grid.grid-cols-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Card Fade-In Animation for Filter Transitions --- */
@keyframes catalogFadeIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.tour-card.catalog-visible {
  animation: catalogFadeIn 0.4s var(--ease-out) forwards;
}

.tour-card.catalog-hidden {
  display: none;
}

/* --- Header Right Actions --- */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* --- Language Selector --- */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  transition: all var(--duration-fast) var(--ease-out);
}

.lang-btn:hover {
  border-color: var(--warm-gold);
  color: var(--warm-gold);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--duration-normal) var(--ease-out);
  z-index: 200;
  max-height: 320px;
  overflow-y: auto;
}

.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  width: 100%;
  padding: 10px 16px;
  text-align: left;
  color: var(--charcoal);
  font-size: 0.85rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--duration-fast);
}

.lang-option:hover {
  background: var(--off-white);
}

.lang-option.active {
  color: var(--royal-teal);
  font-weight: 600;
}

/* --- Search --- */
.search-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  border-radius: var(--radius-full);
  transition: all var(--duration-fast) var(--ease-out);
  font-size: 1.1rem;
}

.search-toggle:hover {
  color: var(--warm-gold);
  background: var(--off-white);
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20vh;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}

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

.search-overlay-inner {
  width: 100%;
  max-width: 680px;
  padding: 0 var(--space-xl);
  transform: translateY(20px);
  transition: transform var(--duration-normal) var(--ease-out);
}

.search-overlay.active .search-overlay-inner {
  transform: translateY(0);
}

.search-overlay-label {
  font-family: var(--font-cta);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--warm-gold);
  margin-bottom: var(--space-lg);
  display: block;
}

.search-input-wrap {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 1.25rem 1.5rem;
  padding-right: 60px;
  font-size: 1.25rem;
  font-family: var(--font-heading);
  color: var(--charcoal);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  outline: none;
  transition: all var(--duration-normal) var(--ease-out);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search-input:focus {
  border-color: var(--warm-gold);
  background: rgba(255, 255, 255, 0.12);
}

.search-close {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 1.5rem;
  border-radius: var(--radius-full);
  transition: all var(--duration-fast);
}

.search-close:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.search-suggestions {
  margin-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.search-tag {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--charcoal);
  border: 1px solid var(--gray-300);
  transition: all var(--duration-fast);
  text-decoration: none;
}

.search-tag:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: var(--warm-gold);
}

/* --- Hamburger (Mobile) --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px 0;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5px) translateX(5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* --- Mobile Nav Panel --- */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal);
}

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

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1060;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--charcoal);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast);
  z-index: 2;
}

.mobile-nav-close:hover {
  background: var(--warm-gold);
  color: var(--white);
  transform: scale(1.05);
}

.mobile-nav-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-2xl);
  min-height: min-content;
}

.mobile-nav-section {
  width: 100%;
  max-width: 500px;
  margin-bottom: var(--space-2xl);
  text-align: center;
}

/* ============================================================
   UNAVAILABLE (GREYED OUT) STATE
   ============================================================ */
.unavailable {
  opacity: 0.4 !important;
  filter: grayscale(100%) !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
  text-decoration: line-through !important;
}

.tour-card.unavailable {
  text-decoration: none !important;
}
.tour-card.unavailable .tour-card-title {
  text-decoration: line-through;
}
.tour-card.unavailable .tour-card-action {
  color: var(--gray-500) !important;
  text-decoration: none !important;
  content: 'Currently Unavailable';
}

/* ============================================================
   QUICK PICKS CONTAINER
   ============================================================ */
.quick-picks-container {
  position: relative;
  max-height: 400px;
  overflow: hidden;
  margin-top: var(--space-2xl);
  margin-bottom: -40px; /* pull button up slightly */
  text-align: left;
}

.quick-picks-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  z-index: 1;
  pointer-events: none;
}

.quick-picks-container {
  transition: max-height 0.6s ease-in-out;
}

.quick-picks-container.expanded {
  max-height: 2000px;
}
.quick-picks-container.expanded .quick-picks-overlay {
  display: none;
}

.mobile-nav-label {
  font-family: var(--font-cta);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--warm-gold);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--gray-200);
}

/* Primary Links Styling */
.nav-links-primary .mobile-nav-link {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 700;
  color: var(--deep-navy);
  text-decoration: none;
  padding: var(--space-sm) 0;
  transition: color var(--duration-fast);
  line-height: 1.1;
}

.nav-links-primary .mobile-nav-link:hover,
.nav-links-primary .mobile-nav-link.active {
  color: var(--warm-gold);
}

/* Contact Links Styling */
.mobile-nav-contact-link {
  display: block;
  font-size: 1.1rem;
  color: var(--charcoal);
  text-decoration: none;
  padding: var(--space-xs) 0;
  margin-bottom: var(--space-xs);
  transition: color var(--duration-fast);
}
.mobile-nav-contact-link:hover {
  color: var(--warm-gold);
}

/* Staggered Animations */
@keyframes fadeUpNav {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-nav .fade-up-item {
  opacity: 0;
}

.mobile-nav.active .fade-up-item {
  animation: fadeUpNav 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mobile-nav.active .nav-links-primary .fade-up-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav.active .nav-links-primary .fade-up-item:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav.active .nav-links-primary .fade-up-item:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav.active .nav-links-primary .fade-up-item:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav.active .nav-links-primary .fade-up-item:nth-child(5) { animation-delay: 0.5s; }
.mobile-nav.active .nav-links-secondary.fade-up-item { animation-delay: 0.6s; }
.mobile-nav.active .nav-links-contact.fade-up-item { animation-delay: 0.7s; }

/* ============================================================
   7. HERO SPLIT HEADER
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.90) 0%,
    rgba(255, 255, 255, 0.65) 45%,
    rgba(255, 255, 255, 0.30) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-4xl) var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 18px;
  background: rgba(232, 149, 106, 0.12);
  border: 1px solid rgba(232, 149, 106, 0.25);
  border-radius: 100px;
  font-family: var(--font-cta);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--bright-coral);
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(8px);
}

.hero h1 {
  color: var(--charcoal);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero h1 .text-gold-hero {
  color: var(--warm-gold);
  display: inline;
}

.hero-description {
  color: var(--charcoal);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(30, 41, 59, 0.1);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--warm-gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--charcoal);
  margin-top: 4px;
}

/* Hero visual panel (right side) */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.hero-card-stack {
  position: relative;
  width: 380px;
  height: 440px;
}

.hero-card-stack .floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  color: var(--charcoal);
  transition: transform var(--duration-slow) var(--ease-out);
}

.floating-card--1 {
  top: 0;
  right: 0;
  width: 280px;
  animation: float-1 6s ease-in-out infinite;
}

.floating-card--2 {
  bottom: 40px;
  left: 0;
  width: 260px;
  animation: float-2 7s ease-in-out infinite;
}

.floating-card-img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm);
}

.floating-card h4 {
  color: var(--charcoal);
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.floating-card p {
  font-size: 0.8rem;
  color: var(--charcoal);
  line-height: 1.5;
}

@keyframes float-1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes float-2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}

/* ============================================================
   8. PAGE HERO BANNER (Sub-pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  max-height: 520px;
  display: flex;
  align-items: flex-end;
  margin-top: var(--header-height);
  overflow: hidden;
}

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

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.70) 50%,
    rgba(255, 255, 255, 0.40) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-xl);
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.breadcrumb a {
  font-size: 0.85rem;
  color: var(--charcoal);
  text-decoration: none;
  transition: color var(--duration-fast);
}

.breadcrumb a:hover {
  color: var(--warm-gold);
}

.breadcrumb .separator {
  color: rgba(30, 41, 59, 0.5);
  font-size: 0.7rem;
}

.breadcrumb .current {
  font-size: 0.85rem;
  color: var(--warm-gold);
  font-weight: 500;
}

.page-hero h1 {
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  max-width: 720px;
}

.page-hero-subtitle {
  color: var(--charcoal);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.7;
}

.page-hero-meta {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

.page-hero-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--charcoal);
}

.page-hero-meta-item .icon {
  color: var(--warm-gold);
}

/* ============================================================
   9. PACKAGE / TOUR CARDS
   ============================================================ */
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--duration-normal) var(--ease-out);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
  color: var(--charcoal);
}

.tour-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

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

.tour-card-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--theme-primary);
  color: var(--white);
  font-family: var(--font-cta);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.tour-card-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-card-region {
  font-family: var(--font-cta);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--theme-primary);
  margin-bottom: var(--space-sm);
}

.tour-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--deep-navy);
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

.tour-card-desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--gray-200);
}

.tour-card-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tour-card-price .label {
  font-size: 0.7rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tour-card-price .amount {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--deep-navy);
}

.tour-card-price .strike {
  font-size: 0.85rem;
  color: var(--crimson-strike);
  text-decoration: line-through;
}

.tour-card-price .on-request {
  font-family: var(--font-cta);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-primary);
}

.tour-card-action {
  font-family: var(--font-cta);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--duration-fast) var(--ease-out);
}

.tour-card:hover .tour-card-action {
  gap: 10px;
}

/* ============================================================
   10. TOUR DETAIL PAGE
   ============================================================ */
.tour-detail {
  padding: var(--space-4xl) 0;
}

.tour-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-3xl);
  align-items: start;
}

.tour-detail-main h2 {
  margin-bottom: var(--space-lg);
}

.tour-detail-main p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
}

/* Experience Cards */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.experience-card {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--duration-normal) var(--ease-out);
}

.experience-card:hover {
  border-color: var(--royal-teal);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.experience-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-dark, var(--theme-primary)));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
}

.experience-card h4 {
  font-size: 1rem;
  color: var(--deep-navy);
  margin-bottom: 4px;
}

.experience-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Sidebar Booking Card */
.booking-sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--space-xl));
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.booking-card-header {
  background: var(--deep-navy);
  padding: var(--space-lg);
  text-align: center;
}

.booking-card-header h3 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.booking-card-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.booking-card-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.booking-detail {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--off-white);
  border-radius: var(--radius-md);
}

.booking-detail-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--warm-gold-10);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-gold);
  font-size: 1.1rem;
}

.booking-detail-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.booking-detail-text .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
}

.booking-detail-text .value {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--deep-navy);
}

.booking-card-actions {
  padding: 0 var(--space-lg) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.booking-card-actions .btn {
  width: 100%;
  justify-content: center;
}

/* Info box */
.info-box {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--royal-teal-10);
  border: 1px solid rgba(0, 164, 153, 0.2);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--coastal-tide);
}

.info-box h4 {
  color: var(--royal-teal);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.info-box p {
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 0;
}

/* Media Gallery */
.tour-gallery {
  width: 100%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: 0 4px 15px rgba(2, 48, 71, 0.05);
}

.gallery-item img,
.gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

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

.gallery-video {
  outline: none;
}

/* ============================================================
   11. VALUE PROPOSITIONS SECTION
   ============================================================ */
.value-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--duration-normal) var(--ease-out);
}

.value-card:hover {
  border-color: var(--warm-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  background: var(--off-white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--bright-coral);
  transition: transform var(--duration-normal) var(--ease-spring);
}

.value-card:hover .value-icon {
  transform: scale(1.08) rotate(-3deg);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--deep-navy);
  margin-bottom: var(--space-sm);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================================
   12. CTA BANNER
   ============================================================ */
.cta-banner {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 149, 106, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 164, 153, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.cta-banner p {
  color: var(--charcoal);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto var(--space-2xl);
}

/* ============================================================
   13. ABOUT PAGE
   ============================================================ */
.about-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-mosaic img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform var(--duration-slow) var(--ease-out);
}

.about-image-mosaic img:hover {
  transform: scale(1.03);
}

.about-image-mosaic img:first-child {
  grid-row: 1 / 3;
  height: 100%;
}

/* Mission/Vision cards */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.mv-card {
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.mv-card--mission {
  background: var(--deep-navy);
  color: var(--white);
}

.mv-card--vision {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
}

.mv-card .mv-label {
  font-family: var(--font-cta);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--warm-gold);
  margin-bottom: var(--space-md);
  display: block;
}

.mv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.mv-card--mission h3 { color: var(--white); }

.mv-card p {
  font-size: 1rem;
  line-height: 1.7;
}

.mv-card--mission p { color: rgba(255, 255, 255, 0.8); }

/* Core Values */
.core-value {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--duration-normal) var(--ease-out);
}

.core-value:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--warm-gold);
}

.core-value-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--warm-gold-10);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--warm-gold);
}

.core-value h4 {
  font-size: 1.05rem;
  color: var(--deep-navy);
  margin-bottom: 4px;
}

.core-value p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================================
   14. RELATED TOURS
   ============================================================ */
.related-tours {
  padding: var(--space-4xl) 0;
  background: var(--off-white);
}

/* ============================================================
   15. FLEET SECTION
   ============================================================ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--duration-normal) var(--ease-out);
}

.fleet-card:hover {
  border-color: var(--royal-teal);
  box-shadow: var(--shadow-md);
}

.fleet-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  background: var(--royal-teal-10);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--royal-teal);
}

.fleet-card h4 {
  font-size: 1rem;
  color: var(--deep-navy);
  margin-bottom: var(--space-xs);
}

.fleet-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.site-footer {
  background: var(--deep-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: var(--space-lg);
}

.site-footer .logo-tripstar {
  color: var(--white);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
  margin-bottom: var(--space-lg);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item .icon {
  color: var(--warm-gold);
  width: 18px;
  text-align: center;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--duration-fast);
}

.footer-contact-item a:hover {
  color: var(--warm-gold);
}

.footer-col h4 {
  font-family: var(--font-cta);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--warm-gold);
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all var(--duration-fast);
  padding: 4px 0;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-bottom {
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
}


.footer-lang-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-lang-list a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast);
}

.footer-lang-list a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

/* ============================================================
   17. STICKY MOBILE CONVERSION BAR
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-sm) var(--space-md);
  border-top: 1px solid var(--gray-200);
}

.sticky-cta-inner {
  display: flex;
  gap: var(--space-sm);
  max-width: var(--container-max);
  margin: 0 auto;
}

.sticky-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px;
  border-radius: var(--radius-md);
  font-family: var(--font-cta);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all var(--duration-fast);
}

.sticky-cta-btn--call {
  background: var(--theme-primary);
  color: var(--white);
  border: 1px solid var(--theme-primary);
}

.sticky-cta-btn--whatsapp {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--gray-300);
}

.sticky-cta-btn:hover {
  transform: scale(1.02);
}

/* ============================================================
   18. SCROLL ANIMATIONS
   ============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 100ms; }
.stagger-2 { transition-delay: 200ms; }
.stagger-3 { transition-delay: 300ms; }
.stagger-4 { transition-delay: 400ms; }
.stagger-5 { transition-delay: 500ms; }
.stagger-6 { transition-delay: 600ms; }

/* ============================================================
   19. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* --- Laptop / Small Desktop (< 1200px) --- */
@media (max-width: 1199px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .hero-card-stack { width: 320px; height: 380px; }
  .floating-card--1 { width: 240px; }
  .floating-card--2 { width: 220px; }
  .mega-menu { min-width: 680px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
  .tour-detail-grid { grid-template-columns: 1fr 340px; gap: var(--space-2xl); }
}

/* --- Tablet (< 992px) --- */
@media (max-width: 991px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { max-width: 100%; margin: 0 auto; }
  .hero .btn-group { justify-content: center; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .about-hero-split { grid-template-columns: 1fr; }
  .about-image-mosaic { order: -1; }
  .mv-grid { grid-template-columns: 1fr; }
  .tour-detail-grid { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }

  /* Show hamburger, hide desktop nav */
  .main-nav,
  .header-actions .search-toggle,
  .header-actions .lang-selector {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .explore-dropdown {
    display: none !important;
  }
}

/* --- Mobile (< 768px) --- */
@media (max-width: 767px) {
  :root {
    --header-height: 64px;
    --space-4xl: 3.5rem;
    --space-3xl: 2.5rem;
  }

  .container {
    padding: 0 var(--space-md);
  }

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

  .hero {
    min-height: 85vh;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
  }

  .hero-stat {
    text-align: center;
  }

  .page-hero {
    height: auto;
    min-height: 50vh;
  }

  .page-hero-content {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-2xl);
  }

  .page-hero-meta {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .section-header { margin-bottom: var(--space-2xl); }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .footer-lang-list {
    justify-content: center;
  }

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

  .experience-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  /* Show sticky CTA bar on mobile */
  .sticky-cta {
    display: block;
  }

  /* Add bottom padding for sticky bar */
  .site-footer {
    padding-bottom: 72px;
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

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

  /* Catalog grid → single column */
  .catalog-grid {
    grid-template-columns: 1fr !important;
  }

  /* Filter ribbon → horizontal scroll */
  .filter-ribbon {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: var(--space-sm) 0;
    gap: var(--space-xs);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filter-ribbon::-webkit-scrollbar { display: none; }

  .filter-pill {
    font-size: 0.7rem;
    padding: 8px 16px;
  }

  /* Hide desktop dropdown on mobile */
  .explore-dropdown {
    display: none !important;
  }
}

/* --- Small Mobile (< 480px) --- */
@media (max-width: 479px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .tour-card-body { padding: var(--space-md); }
  .booking-card-body { padding: var(--space-md); }

  .page-hero { min-height: 50vh; }
}

/* ============================================================
   19b. NORTH INDIA MEGA-MENU (Wide variant)
   ============================================================ */
.mega-menu--wide {
  min-width: 960px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
}

.nav-item:hover .mega-menu--wide {
  transform: translateX(-50%) translateY(0);
}

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

.mega-menu--wide .mega-menu-card-img {
  height: 90px;
}

.mega-menu--wide .mega-menu-card {
  padding: var(--space-sm);
}

.mega-menu--wide .mega-menu-card-title {
  font-size: 0.9rem;
}

.mega-menu--wide .mega-menu-card-desc {
  font-size: 0.75rem;
}

/* ============================================================
   19c. COMPACT TOUR CARDS (4-col grid variant)
   ============================================================ */
.tour-card--compact .tour-card-image img {
  height: 160px;
}

.tour-card--compact .tour-card-body {
  padding: var(--space-md);
}

.tour-card--compact .tour-card-title {
  font-size: 1rem;
}

.tour-card--compact .tour-card-desc {
  font-size: 0.85rem;
  -webkit-line-clamp: 2;
}

/* ============================================================
   19d. GOOGLE REVIEWS CTA
   ============================================================ */
.review-cta-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.section--alt .review-cta-box {
  background: var(--white);
}

/* ============================================================
   19e. FOOTER REVIEW LINK
   ============================================================ */
.footer-review-link {
  color: var(--warm-gold) !important;
  font-weight: 600;
  margin-top: var(--space-sm);
  display: inline-block;
}

.footer-review-link:hover {
  color: var(--warm-gold-dark) !important;
}

/* ============================================================
   19f. RESPONSIVE — North India mega-menu
   ============================================================ */
@media (max-width: 1100px) {
  .mega-menu--wide {
    min-width: 700px;
  }
  .mega-menu-grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .mega-menu--wide {
    display: none;
  }
  .tour-card--compact .tour-card-image img {
    height: 180px;
  }
}

/* ============================================================
   20. UTILITY & MISC
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.visually-hidden { 
  clip: rect(0 0 0 0); 
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap; 
  width: 1px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-500);
}

/* ============================================================
   LIGHTBOX GALLERY
   ============================================================ */
.lightbox-trigger {
  cursor: zoom-in;
  transition: transform 0.3s ease;
}
.lightbox-trigger:hover {
  transform: scale(1.02);
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-xl);
  font-size: 3rem;
  color: white;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--theme-secondary);
}

.lightbox-image {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-image {
  transform: scale(1);
}

/* ============================================================
   17. TIMELINE ACCORDION
   ============================================================ */
.timeline-accordion {
  position: relative;
  margin-top: var(--space-xl);
  padding-left: var(--space-xl);
}

.timeline-accordion::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  width: 2px;
  background: rgba(0, 0, 0, 0.1);
}
[data-theme="dark"] .timeline-accordion::before {
  background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all var(--duration-fast);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-xl) + 2px);
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--warm-gold);
  border: 2px solid var(--bg);
  z-index: 2;
}

.timeline-item-header {
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.timeline-item-header h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--theme-primary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.timeline-item-header h4 .day-label {
  color: var(--text-color);
  font-weight: 600;
}

.timeline-item-toggle {
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: transform var(--duration-fast);
}

.timeline-item.active .timeline-item-toggle {
  transform: rotate(45deg);
}

.timeline-item-body {
  padding: 0 var(--space-lg) var(--space-md);
  display: none;
  color: var(--text-color);
  line-height: 1.6;
}
.timeline-item.active .timeline-item-body {
  display: block;
}

/* ============================================================
   18. HORIZONTAL SCROLL CAROUSEL
   ============================================================ */
.horizontal-scroll-container {
  display: flex;
  overflow-x: auto;
  gap: var(--space-lg);
  padding: var(--space-sm) 0 var(--space-xl);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.horizontal-scroll-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.horizontal-scroll-item {
  scroll-snap-align: start;
  flex: 0 0 300px;
  min-width: 300px;
}
@media (max-width: 768px) {
  .horizontal-scroll-item {
    flex: 0 0 calc(50% - 16px);
  }
}

/* ------------------------------------------------------------
   Itinerary List (OCD Cleanliness)
   ------------------------------------------------------------ */
.itinerary-list {
  margin-top: 12px;
  padding-left: 20px;
  list-style-type: none;
}

.itinerary-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.itinerary-list li::before {
  content: '•';
  color: var(--warm-gold);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* ============================================================
   19. TRIP HIGHLIGHTS
   ============================================================ */
.trip-highlights {
  background: rgba(212, 175, 55, 0.05); /* Warm gold very light */
  border-left: 4px solid var(--warm-gold);
  padding: var(--space-lg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-xl) 0;
}

.trip-highlights h3 {
  margin-top: 0;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  color: var(--deep-navy);
}

[data-theme="dark"] .trip-highlights h3 {
  color: var(--white);
}

.trip-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .trip-highlights ul {
    grid-template-columns: 1fr 1fr;
  }
}

.trip-highlights li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.trip-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--warm-gold);
  font-weight: bold;
}

/* ============================================================
   TOUR MATRIX STYLES (Tables, Inclusions, Notes)
   ============================================================ */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.data-table th, .data-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem;
}

.data-table th {
  background-color: rgba(0, 128, 198, 0.05);
  color: var(--deep-navy);
  font-family: var(--font-heading);
  font-weight: 600;
  white-space: nowrap;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:nth-child(even) {
  background-color: var(--off-white);
}

.data-table tbody tr:hover {
  background-color: rgba(0, 128, 198, 0.02);
}

.pricing-table th, .pricing-table td {
  text-align: center;
}

.pricing-table th:first-child, .pricing-table td:first-child {
  text-align: left;
}

.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .inclusions-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.inclusions-col, .exclusions-col {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.inclusions-title, .exclusions-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  color: var(--deep-navy);
}

.inclusions-list, .exclusions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inclusions-list li, .exclusions-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  line-height: 1.5;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.inclusions-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #10B981;
  font-weight: bold;
}

.exclusions-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 0;
  color: #EF4444;
  font-weight: bold;
}

.info-box.alert {
  background-color: #FFFBEB;
  border-left: 4px solid #F59E0B;
  border-radius: var(--radius-sm);
}

.info-box.alert h4 {
  color: #B45309;
  margin-bottom: var(--space-sm);
}

.notes-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  color: var(--charcoal);
}
