/* ==========================================================================
   Devbhoomi Expeditions - Himalayan Treks & Tours Design System
   Modern, Ultra-Crisp, Responsive Vanilla CSS
   ========================================================================== */

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

:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Himalayan Color Palette */
  --primary: #064e3b;
  --primary-light: #0d9488;
  --primary-lighter: #ccfbf1;
  --primary-dark: #022c22;
  
  --secondary: #0284c7;
  --secondary-light: #e0f2fe;

  --accent: #f59e0b;
  --accent-hover: #d97706;
  --accent-light: #fef3c7;

  --danger: #ef4444;
  --danger-light: #fee2e2;
  --success: #10b981;
  --success-light: #d1fae5;

  --bg-main: #f8fafc;
  --bg-dark: #091e19;
  --bg-card: #ffffff;
  --surface: #ffffff;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  --border: #e2e8f0;
  --border-focus: #0d9488;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(6, 78, 59, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 35px -8px rgba(6, 78, 59, 0.14), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(6, 78, 59, 0.25);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  transition: all var(--transition-fast);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.badge-emerald {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.badge-saffron {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #fff;
  box-shadow: 0 4px 10px rgba(234, 88, 12, 0.3);
}

.badge-blue {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #fff;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
}

.badge-cyan {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #fff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #065f46 100%);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(6, 78, 59, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #04382a 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 78, 59, 0.35);
  color: var(--text-white);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #e58e07 0%, #b45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text-main);
  background: #ffffff;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-lighter);
}

.btn-outline-white {
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--primary-dark);
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.825rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff !important;
  border: 1px solid #20ba5a;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  text-decoration: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: #128C7E;
  border-color: #0e7266;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: var(--radius-sm);
  background: #25D366;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  text-decoration: none;
  border: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-whatsapp-icon:hover {
  background: #128C7E;
  transform: scale(1.08);
  color: #ffffff !important;
}

/* Floating WhatsApp Quick Action & Multi-Guide Widget */
.whatsapp-widget-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}

.floating-whatsapp-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition-fast);
  text-decoration: none;
  border: none;
  cursor: pointer;
  outline: none;
}

.floating-whatsapp-btn:hover,
.whatsapp-widget-container.open .floating-whatsapp-btn {
  background: #128C7E;
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
  color: #ffffff !important;
}

.floating-whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: #0f172a;
  color: #ffffff;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.floating-whatsapp-btn:hover .floating-whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-popup-card {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 310px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  border: 1px solid var(--border);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.95);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-widget-container.open .whatsapp-popup-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-popup-header {
  background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
  color: #ffffff;
  padding: 0.85rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-popup-body {
  padding: 0.5rem 0;
}

.whatsapp-contact-item {
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-decoration: none;
  transition: background 0.15s ease;
  border-bottom: 1px solid #f8fafc;
}

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

.whatsapp-contact-item:hover {
  background: #f0fdf4;
}

.wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.wa-chat-badge {
  background: #25D366;
  color: #ffffff;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.3);
}

.wa-chat-badge:hover {
  background: #128C7E;
}

/* Header & Top Bar */
.top-notice-bar {
  background: var(--bg-dark);
  color: #94a3b8;
  font-size: 0.8rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sdrf-badge {
  color: #fca5a5;
  font-weight: 600;
}

/* Sticky Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(245, 158, 11, 0.4);
  transition: transform var(--transition-normal);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.08) rotate(5deg);
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 12px rgba(6, 78, 59, 0.25);
}

.brand-text h1 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-text span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-hover);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

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

.nav-link {
  font-weight: 600;
  font-size: 0.925rem;
  color: #334155;
  transition: color var(--transition-fast);
  position: relative;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.action-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: #f1f5f9;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all var(--transition-fast);
}

.action-btn:hover {
  background: var(--primary-lighter);
  color: var(--primary);
  transform: translateY(-1px);
}

.cart-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-toggle {
  display: none;
  font-size: 1.35rem;
  color: #1e293b;
}

/* ==========================================================================
   Hero Section & Search Widget
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(2, 44, 34, 0.72), rgba(9, 30, 25, 0.85)), url('https://images.unsplash.com/photo-1589182373726-e4f658ab50f0?auto=format&fit=crop&w=1920&q=85') center/cover no-repeat;
  color: #ffffff;
  padding: 4.5rem 0 5rem 0;
  overflow: hidden;
}

.hero-overlay-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.25) 0%, rgba(6, 78, 59, 0) 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fef08a;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  background: linear-gradient(135deg, #fed7aa 0%, #fef08a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #e2e8f0;
  margin-bottom: 2.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Floating Search Widget */
.search-widget {
  background: #ffffff;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  color: var(--text-main);
  max-width: 1050px;
  margin: 0 auto;
}

.search-form {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1.2fr 1.1fr auto;
  gap: 0.85rem;
  align-items: center;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.search-field:focus-within {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px var(--primary-lighter);
}

.search-field i {
  color: var(--primary);
  font-size: 1.1rem;
}

.search-input-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
}

.search-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.search-input {
  border: none;
  outline: none;
  background: transparent;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.95rem;
  width: 100%;
}

.search-select {
  border: none;
  outline: none;
  background: transparent;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.9rem;
  width: 100%;
  cursor: pointer;
}

.search-submit-btn {
  height: 100%;
  min-height: 52px;
  padding: 0 1.75rem;
  font-size: 1rem;
}

/* Hero Stats Bar */
.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 950px;
  margin: 2.75rem auto 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

.stat-number {
  font-size: 1.85rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #fef08a;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: #cbd5e1;
  font-weight: 500;
}

/* ==========================================================================
   Category & Region Filter Pills
   ========================================================================== */
.category-pills-section {
  padding: 2.5rem 0 1.5rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.pills-scroll-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}

.pills-scroll-wrap::-webkit-scrollbar {
  height: 4px;
}
.pills-scroll-wrap::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.35rem;
  background: #f1f5f9;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.category-pill:hover {
  background: var(--primary-lighter);
  color: var(--primary);
}

.category-pill.active {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(6, 78, 59, 0.25);
}

/* ==========================================================================
   Main Catalog & Filters Layout
   ========================================================================== */
.catalog-section {
  padding: 4rem 0;
}

.section-header {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-subtitle {
  color: var(--primary-light);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: flex-start;
}

/* Filters Sidebar */
.filters-sidebar {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.filter-header h3 {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reset-btn {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

.reset-btn:hover {
  text-decoration: underline;
}

.filter-group {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f1f5f9;
}

.filter-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.filter-group-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: #475569;
  cursor: pointer;
  user-select: none;
}

.filter-checkbox-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--primary);
  border-radius: 4px;
}

.price-range-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-slider {
  width: 100%;
  accent-color: var(--primary);
}

.price-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Package Grid */
.catalog-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  background: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.results-count {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
}

.sort-select-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sort-select {
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #f8fafc;
  font-weight: 600;
  color: var(--text-main);
  outline: none;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

/* Package Card */
.trek-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.trek-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 148, 136, 0.4);
}

.trek-card-media {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.trek-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.card-top-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.wishlist-toggle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.wishlist-toggle-btn:hover, .wishlist-toggle-btn.saved {
  background: #ffffff;
  color: #ef4444;
  transform: scale(1.1);
}

.card-altitude-pill {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.trek-card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #b45309;
  font-weight: 700;
}

.rating-badge i {
  color: #f59e0b;
}

.trek-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  line-height: 1.3;
  color: var(--text-main);
  transition: color var(--transition-fast);
}

.trek-card-title:hover {
  color: var(--primary);
}

.trek-card-tagline {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trek-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
}

.spec-box {
  display: flex;
  flex-direction: column;
}

.spec-label {
  color: #94a3b8;
  font-size: 0.68rem;
  text-transform: uppercase;
  font-weight: 700;
}

.spec-val {
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trek-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.price-container {
  display: flex;
  flex-direction: column;
}

.price-original {
  font-size: 0.8rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.price-current {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  font-family: var(--font-heading);
}

.price-unit {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.card-actions {
  display: flex;
  gap: 0.5rem;
}

/* Empty State */
.empty-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
}

.empty-results i {
  font-size: 3rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.empty-results h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Live Uttarakhand Mountain Weather Bar
   ========================================================================== */
.weather-section {
  background: linear-gradient(135deg, #091e19 0%, #064e3b 100%);
  color: #ffffff;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.weather-header {
  text-align: center;
  margin-bottom: 2rem;
}

.weather-header h2 {
  color: #ffffff;
  font-size: 1.85rem;
}

.weather-header p {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.weather-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.weather-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all var(--transition-fast);
}

.weather-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.weather-city {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.weather-alt {
  font-size: 0.72rem;
  color: #fef08a;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.weather-icon-large {
  font-size: 1.85rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
}

.weather-temp {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.weather-cond {
  font-size: 0.78rem;
  color: #e2e8f0;
}

/* ==========================================================================
   Safety, Acclimatization & Why Choose Us Section
   ========================================================================== */
.safety-section {
  padding: 4.5rem 0;
  background: #ffffff;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.safety-card {
  padding: 1.75rem 1.5rem;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
}

.safety-card:hover {
  background: #ffffff;
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-4px);
}

.safety-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--primary-lighter);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.safety-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.safety-card p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.55;
}

/* ==========================================================================
   Reviews & Testimonials Carousel / Grid
   ========================================================================== */
.reviews-section {
  padding: 4.5rem 0;
  background: #f8fafc;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-lighter);
}

.review-author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.review-author-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.review-trek-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-lighter);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.review-comment {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
  font-style: italic;
}

/* ==========================================================================
   Custom Trip / Corporate Inquiry CTA Banner
   ========================================================================== */
.custom-cta-section {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.custom-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 3rem;
}

.custom-cta-text h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.custom-cta-text p {
  color: #cbd5e1;
  font-size: 1.05rem;
  max-width: 600px;
}

/* ==========================================================================
   Modals & Overlays
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

.modal-container {
  background: #ffffff;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 880px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(0.97);
  transition: all var(--transition-normal);
  position: relative;
}

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

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 10;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* Trek Detail Modal Styles */
.detail-hero {
  position: relative;
  height: 320px;
  overflow: hidden;
}

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

.detail-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(9, 30, 25, 0.95) 0%, rgba(9, 30, 25, 0) 100%);
  color: #ffffff;
}

.detail-hero-content h2 {
  color: #ffffff;
  font-size: 1.85rem;
  margin-bottom: 0.35rem;
}

.detail-body {
  padding: 2rem;
}

.detail-specs-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
}

.detail-spec-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.detail-spec-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--primary-lighter);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.detail-tabs-nav {
  display: flex;
  gap: 1rem;
  border-bottom: 1.5px solid var(--border);
  margin-bottom: 1.5rem;
}

.detail-tab-btn {
  padding: 0.6rem 0.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: #64748b;
  border-bottom: 3px solid transparent;
  transition: all var(--transition-fast);
}

.detail-tab-btn:hover, .detail-tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.detail-tab-content {
  display: none;
}

.detail-tab-content.active {
  display: block;
}

/* Itinerary Timeline */
.itinerary-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  position: relative;
  padding-left: 2.25rem;
  border-left: 2px solid var(--primary-light);
}

.timeline-dot {
  position: absolute;
  left: -8px;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid #ffffff;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.timeline-desc {
  font-size: 0.875rem;
  color: #475569;
}

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

.inc-box, .exc-box {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.inc-box h4 {
  color: var(--success);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.exc-box h4 {
  color: var(--danger);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.inc-list, .exc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #334155;
}

.inc-list li {
  display: flex;
  gap: 0.5rem;
}

.inc-list i {
  color: var(--success);
  margin-top: 3px;
}

.exc-list li {
  display: flex;
  gap: 0.5rem;
}

.exc-list i {
  color: var(--danger);
  margin-top: 3px;
}

/* ==========================================================================
   Multi-Step Booking Modal Engine
   ========================================================================== */
.booking-modal-container {
  max-width: 960px;
}

.booking-header {
  padding: 1.5rem 2rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.booking-trek-brief {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.booking-trek-brief img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.booking-trek-brief h3 {
  font-size: 1.2rem;
  margin-bottom: 0.15rem;
}

.booking-trek-brief span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Stepper Bar */
.booking-stepper {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 1.25rem 2rem;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.booking-stepper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 3rem;
  right: 3rem;
  height: 2px;
  background: var(--border);
  z-index: 1;
  transform: translateY(-50%);
}

.step-indicator {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  background: #ffffff;
  padding: 0 0.5rem;
}

.step-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 2px solid var(--border);
  color: #64748b;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.step-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}

.step-indicator.active .step-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 0 0 4px var(--primary-lighter);
}

.step-indicator.active .step-name {
  color: var(--primary);
  font-weight: 700;
}

.step-indicator.completed .step-circle {
  background: var(--success);
  border-color: var(--success);
  color: #ffffff;
}

/* Booking Body Grid */
.booking-body-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  min-height: 480px;
}

.booking-step-pane {
  padding: 2rem;
  display: none;
}

.booking-step-pane.active {
  display: block;
}

.step-pane-title {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.step-pane-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Batch Dates List */
.batches-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.batch-radio-card {
  position: relative;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: #f8fafc;
}

.batch-radio-card:hover {
  border-color: var(--primary-light);
  background: #ffffff;
}

.batch-radio-card.selected {
  border-color: var(--primary);
  background: var(--primary-lighter);
  box-shadow: 0 0 0 2px var(--primary);
}

.batch-date {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  display: block;
  margin-bottom: 0.25rem;
}

.batch-seats {
  font-size: 0.78rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.batch-status-pill {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.batch-status-pill.fast-filling {
  background: #fef3c7;
  color: #b45309;
}

.batch-status-pill.almost-full {
  background: #fee2e2;
  color: #b91c1c;
}

.batch-status-pill.available {
  background: #d1fae5;
  color: #065f46;
}

/* Traveler Quantity Counter */
.traveler-counter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: #f8fafc;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.counter-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--border);
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-btn:hover {
  background: var(--primary-lighter);
  border-color: var(--primary);
  color: var(--primary);
}

.counter-num {
  font-size: 1.15rem;
  font-weight: 800;
  min-width: 24px;
  text-align: center;
}

/* Add-ons List */
.addons-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.addon-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: #f8fafc;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.addon-card:hover {
  background: #ffffff;
  border-color: var(--primary-light);
}

.addon-card.selected {
  background: var(--primary-lighter);
  border-color: var(--primary);
}

.addon-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.addon-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.addon-info h4 {
  font-size: 0.925rem;
  margin-bottom: 0.15rem;
}

.addon-info p {
  font-size: 0.75rem;
  color: #64748b;
}

.addon-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-dark);
}

/* Traveler Form */
.traveler-form-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

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

.form-grid-3 {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 0.85rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
}

.form-control {
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  font-size: 0.875rem;
  color: var(--text-main);
  outline: none;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-lighter);
}

/* Booking Price Summary Sidebar */
.booking-summary-sidebar {
  background: #f8fafc;
  border-left: 1px solid var(--border);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.summary-title {
  font-size: 1.15rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.summary-rows {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  color: #475569;
}

.summary-row.total-row {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  padding-top: 0.75rem;
  border-top: 1.5px solid var(--border);
  margin-top: 0.5rem;
}

/* Coupon Box */
.coupon-input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.coupon-input {
  flex: 1;
  padding: 0.55rem 0.75rem;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
}

.coupon-applied-tag {
  background: var(--success-light);
  color: #065f46;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

/* Payment Mode Selectors */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.payment-tab {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.5rem;
  text-align: center;
  cursor: pointer;
  background: #ffffff;
  transition: all var(--transition-fast);
}

.payment-tab.active {
  border-color: var(--primary);
  background: var(--primary-lighter);
  box-shadow: 0 0 0 2px var(--primary);
}

.payment-tab i {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
  display: block;
}

.payment-tab span {
  font-size: 0.78rem;
  font-weight: 700;
}

/* Step Footer Nav */
.booking-pane-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* ==========================================================================
   Voucher / Trek Pass Print View
   ========================================================================== */
.voucher-container {
  background: #ffffff;
  border: 2px dashed #0d9488;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 1rem 0;
  position: relative;
}

.voucher-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.voucher-id {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-lighter);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
}

.voucher-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}

.voucher-qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}

.voucher-qr-code {
  width: 130px;
  height: 130px;
  background: #ffffff;
  padding: 8px;
  border: 1px solid #cbd5e1;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   My Bookings & Wishlist Drawers
   ========================================================================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

.drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  z-index: 2600;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.drawer-overlay.active .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}

.drawer-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
}

.drawer-card-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.drawer-card-info {
  flex: 1;
}

.drawer-card-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.drawer-card-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Toast Notification System
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: #0f172a;
  color: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  animation: toastSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  border-left: 4px solid var(--primary-light);
}

.toast.toast-success {
  border-left-color: var(--success);
}

.toast.toast-error {
  border-left-color: var(--danger);
}

@keyframes toastSlideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #022c22;
  color: #cbd5e1;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: #fef08a;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 4px;
}

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

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  .filters-sidebar {
    position: static;
  }
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .weather-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .search-form {
    grid-template-columns: 1fr 1fr;
  }
  .search-submit-btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-menu {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .package-grid {
    grid-template-columns: 1fr;
  }
  .weather-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .safety-grid {
    grid-template-columns: 1fr;
  }
  .custom-cta-box {
    flex-direction: column;
    padding: 2rem;
    text-align: center;
  }
  .booking-body-grid {
    grid-template-columns: 1fr;
  }
  .booking-summary-sidebar {
    border-left: none;
    border-top: 1px solid var(--border);
  }
  .batches-select-grid {
    grid-template-columns: 1fr;
  }
  .inc-exc-grid {
    grid-template-columns: 1fr;
  }
  .detail-specs-bar {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Print Rules for Voucher */
@media print {
  body * {
    visibility: hidden;
  }
  #voucherModal, #voucherModal * {
    visibility: visible;
  }
  #voucherModal {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
  .modal-close-btn, .voucher-print-btn {
    display: none !important;
  }
}

/* Supabase Database Status & Sync UI */
.supabase-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(62, 207, 142, 0.15);
  color: #10b981;
  border: 1px solid rgba(62, 207, 142, 0.35);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 500;
  margin-left: 0.5rem;
  transition: all var(--transition-fast);
}

.supabase-status-tag i {
  color: #3ecf8e;
}

.bookings-sync-bar {
  display: flex;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}

.sync-input-wrap {
  position: relative;
  flex: 1;
}

.sync-input-wrap i {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.8rem;
}

.sync-input {
  width: 100%;
  padding: 0.45rem 0.65rem 0.45rem 2rem;
  font-size: 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text-main);
  outline: none;
  font-family: inherit;
}

.sync-input:focus {
  border-color: var(--primary);
}

.supabase-cloud-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: #059669;
  background: #ecfdf5;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  border: 1px solid #a7f3d0;
}

/* ==========================================================================
   WhatsApp Buttons & Interactive 24x7 Guide Widget
   ========================================================================== */
.btn-whatsapp {
  background: #25D366;
  color: #ffffff !important;
  border: 1px solid #20bd5a;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.15rem;
  font-size: 0.875rem;
}

.btn-whatsapp:hover {
  background: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  color: #ffffff !important;
}

.btn-whatsapp.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.78rem;
}

.btn-whatsapp-icon {
  background: #25D366;
  color: #ffffff !important;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 1px solid #20bd5a;
  flex-shrink: 0;
}

.btn-whatsapp-icon:hover {
  background: #1eb956;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  color: #ffffff !important;
}

/* Floating 24x7 Multi-Coordinator WhatsApp Widget */
.whatsapp-widget-container {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 2200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.floating-whatsapp-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  border: 2px solid #ffffff;
  position: relative;
  transition: all var(--transition-fast);
  animation: waPulse 2.5s infinite;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  background: #1eb956;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.floating-whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #0f172a;
  color: #ffffff;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.floating-whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #0f172a;
}

.floating-whatsapp-btn:hover .floating-whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 68px;
}

.whatsapp-popup-card {
  width: 320px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.95);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom right;
}

.whatsapp-widget-container.open .whatsapp-popup-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-popup-header {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
  color: #ffffff;
  padding: 1.15rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.whatsapp-popup-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: #f8fafc;
}

.whatsapp-contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.whatsapp-contact-item:hover {
  border-color: #25D366;
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.15);
}

.wa-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-lighter);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.wa-chat-badge {
  background: #25D366;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}


