/* 
   LehConnect Premium Travel Booking CSS Theme
   Fully Overhauled to Match MakeMyTrip's Landing Page Layout exactly
*/

:root {
  --primary-color: #0061ae;
  --primary-rgb: 13, 110, 253;
  --secondary-color: #ffcc29;
  --secondary-rgb: 255, 107, 0;
  --bg-color: #F5f7fa;
  --text-color: #1A1A1A;
  --white: #FFFFFF;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;

  /* MakeMyTrip Exact Styling Tokens */
  --leh-blue-dark: #031424;
  --leh-blue-light: #122c47;
  --leh-brand-blue: #0061ae;
  --leh-hover-blue: #eaf5ff;

  --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.03);
  --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.05);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.12);

  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;

  --transition-speed: 0.3s;
}

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

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

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-speed) ease;
}

/* Main Premium Layout */
.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
}

/* Header & Sticky Navbar */
.premium-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: var(--leh-blue-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 0;
  transition: all var(--transition-speed) ease;
}

.premium-header .navbar-brand {
  color: var(--white) !important;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
}

.premium-header .navbar-brand span {
  color: var(--secondary-color);
}

.premium-header .nav-link {
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 0.5rem 0.8rem !important;
}

.premium-header .nav-link:hover {
  color: var(--white) !important;
}

.premium-header .btn-login-outline {
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  background: transparent;
  transition: all var(--transition-speed) ease;
}

.premium-header .btn-login-outline:hover {
  background-color: var(--white);
  color: var(--leh-blue-dark) !important;
}

/* MakeMyTrip Scenic Background Hero Section */
.leh-hero-section {
  background-image: linear-gradient(180deg, rgba(3, 20, 36, 0.85) 0%, rgba(18, 44, 71, 0.95) 70%, var(--bg-color) 100%), url('/images/gallery/gallery-scenic-ladakh.jpg');
  background-size: cover;
  background-position: center;
  padding: 4rem 0 10rem 0;
  position: relative;
  text-align: center;
}

.leh-hero-title {
  color: var(--white);
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.leh-hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* Overlapping LEH Booking Card Container */
.leh-booking-container {
  position: relative;
  margin-top: -140px;
  z-index: 100;
  margin-bottom: 6rem;
}

.leh-booking-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
  padding: 3rem 2rem 3.5rem 2rem;
  position: relative;
  border: 1px solid var(--gray-200);
}

/* MakeMyTrip Tab Headers Navigation - Floats and merges with the booking card */
.leh-tab-nav-bar {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 105;
  top: -24px;
  padding: 10px 15px;
  border: 1px solid var(--gray-200);
  overflow-x: auto;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.leh-tab-nav-bar::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.leh-tab-nav-bar-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-600);
  border: none;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-speed) ease;
}

/* Circle shape for icons */
.leh-tab-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  font-size: 1.2rem;
  color: var(--gray-600);
  transition: all var(--transition-speed) ease;
}

.leh-tab-nav-bar-link:hover .leh-tab-icon-circle {
  background-color: var(--gray-200);
  color: var(--leh-brand-blue);
}

.leh-tab-nav-bar-link.active {
  color: var(--leh-brand-blue) !important;
}

.leh-tab-nav-bar-link.active .leh-tab-icon-circle {
  background-color: var(--leh-brand-blue);
  color: var(--white) !important;
  box-shadow: 0 4px 10px rgba(0, 140, 255, 0.25);
}

/* MakeMyTrip Input Grid (Unified bordered container) */
.leh-input-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr 1.1fr;
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  overflow: visible;
  background-color: var(--white);
  position: relative;
}

.leh-input-col {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  border-right: 1px solid var(--gray-200);
  transition: background-color var(--transition-speed) ease;
  position: relative;
  text-align: left;
}

.leh-input-col:last-child {
  border-right: none;
}

.leh-input-col:hover {
  background-color: var(--leh-hover-blue);
}

/* LEH INDIVIDUAL SEPARATE CARDS LAYOUT */
.leh-input-card-grid {
  display: flex;
  gap: 12px;
  width: 100%;
  position: relative;
}

.leh-input-card {
  background-color: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  position: relative;
  text-align: left;
  flex: 1;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.leh-input-card:hover {
  border-color: var(--leh-brand-blue);
  box-shadow: 0 4px 15px rgba(0, 140, 255, 0.08);
}

.leh-input-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.leh-input-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.leh-input-card-placeholder {
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-top: 2px;
  display: block;
}

.leh-input-card-bold {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1.1;
  margin-top: 4px;
  margin-bottom: 4px;
}

.leh-input-card-subtext {
  font-size: 0.72rem;
  color: var(--gray-600);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Inner border box inside card */
.leh-inner-box {
  /* border: 1px solid var(--gray-300); */
  border-radius: 8px;
  padding: 6px 12px;
  background-color: var(--white);
  width: 100%;
  margin-top: 6px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-speed) ease;
}

.leh-inner-box:hover,
.leh-inner-box:focus-within {
  border-color: var(--leh-brand-blue);
}

/* FLIGHTS MULTI-CITY SPECIFIC DESIGN CLASSES */
.leh-multicity-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  width: 100%;
  margin-bottom: 15px;
  position: relative;
}

.leh-add-city-btn {
  background: var(--white);
  border: 1.5px solid var(--leh-brand-blue);
  color: var(--leh-brand-blue);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 6px;
  padding: 8px 24px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  margin: 10px auto 25px auto;
  display: block;
}

.leh-add-city-btn:hover {
  background-color: var(--leh-hover-blue);
  box-shadow: 0 4px 10px rgba(0, 140, 255, 0.15);
}

.leh-multicity-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  margin-top: 10px;
}

/* Swapper for separate cards */
.leh-swap-btn-card {
  position: absolute;
  top: 50%;
  left: 20%;
  /* Positioned between card 1 and card 2 */
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-300);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--leh-brand-blue);
  cursor: pointer;
  z-index: 20;
  transition: all var(--transition-speed) ease;
}

.leh-swap-btn-card:hover {
  transform: translate(-50%, -50%) rotate(180deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.leh-select-input {
  background: transparent;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  width: 100%;
  outline: none;
  cursor: pointer;
}

/* UNIFIED DATE-TIME PICKER DROPDOWN */
.leh-datetime-picker {
  display: flex;
  background-color: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  box-shadow: var(--shadow-premium);
  position: absolute;
  top: 105%;
  left: 0;
  width: 480px;
  z-index: 500;
  overflow: hidden;
}

.leh-datepicker-left {
  width: 280px;
  padding: 1rem;
  border-right: 1px solid var(--gray-200);
  text-align: center;
}

.leh-datepicker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.leh-datepicker-arrow-btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--gray-600);
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
}

.leh-datepicker-arrow-btn:hover {
  background-color: var(--gray-100);
  color: var(--leh-brand-blue);
}

.leh-calendar-grid-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.leh-calendar-grid-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.leh-calendar-day-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-800);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.leh-calendar-day-cell:hover {
  background-color: var(--leh-hover-blue);
  color: var(--leh-brand-blue);
}

.leh-calendar-day-cell.active {
  background-color: var(--leh-brand-blue) !important;
  color: var(--white) !important;
  border: 1px solid #0061ae;
}

.leh-datepicker-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  border-top: 1px solid var(--gray-200);
  padding-top: 10px;
}

.leh-datepicker-footer-btn {
  background: none;
  border: none;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--leh-brand-blue);
  cursor: pointer;
}

/* Time Picker Right Section */
.leh-timepicker-right {
  display: flex;
  flex: 1;
  background-color: #fafbfc;
  padding: 8px 4px;
}

.leh-time-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 220px;
  overflow-y: auto;
  scrollbar-width: none;
  /* Hide scrollbar for clean layout */
}

.leh-time-column::-webkit-scrollbar {
  display: none;
}

.leh-time-cell {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.leh-time-cell:hover {
  background-color: var(--gray-200);
}

.leh-time-cell.active {
  background-color: var(--leh-brand-blue) !important;
  color: var(--white) !important;
  font-weight: 700;
}

/* MakeMyTrip Exact Fare/Option Pill Badges */
.leh-fare-tag {
  background-color: var(--white);
  border: 1px solid var(--gray-300);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-speed) ease;
}

.leh-fare-tag:hover {
  background-color: var(--gray-100);
}

.leh-fare-tag.active {
  background-color: var(--leh-hover-blue);
  border-color: var(--leh-brand-blue);
  color: var(--leh-brand-blue);
}

.leh-fare-tag-check {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  display: inline-block;
  position: relative;
}

.leh-fare-tag.active .leh-fare-tag-check {
  border-color: var(--leh-brand-blue);
  background-color: var(--leh-brand-blue);
}

.leh-fare-tag.active .leh-fare-tag-check::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 4px;
  height: 4px;
  background: var(--white);
  border-radius: 50%;
}

/* Absolute Floating LEH Search Button - Blue */
.leh-search-btn-floating {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    background: linear-gradient(93deg, #0061ae, #0061ae);
    color: var(--white) !important;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    padding: 7px 30px;
    border-radius: 50px;
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    z-index: 20;
}

.leh-search-btn-floating:hover {
  transform: translate(-50%, 45%) scale(1.03);
}

/* Under Card Option Selectors */
.leh-undercard-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 0 0.5rem;
  align-items: center;
}

/* MODE TOGGLE BUTTONS - enquiry vs booking */
.leh-service-toggle-container {
  display: flex;
  gap: 12px;
  margin-bottom: 1.25rem;
  justify-content: flex-start;
  align-items: center;
}

.leh-toggle-pill {
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  border: 1px solid var(--gray-300);
}

.leh-toggle-pill-active {
  background-color: #0061ae;
  color: var(--white) !important;
  border-color: #0061ae;
  box-shadow: 0 3px 10px rgba(0, 102, 204, 0.2);
}

.leh-toggle-pill-inactive {
  background-color: var(--white);
  color: var(--gray-700);
  border-color: var(--gray-300);
}

.leh-toggle-pill-inactive:hover {
  background-color: var(--gray-100);
}

/* Light blue radio capsule selection wrapper */
.leh-radio-pill {
  background-color: #eaf5ff;
  border: 1px solid #cce5ff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0061ae;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-speed) ease;
}

.leh-radio-pill-inactive {
  background-color: transparent;
  border: 1px solid transparent;
  color: var(--gray-600);
}

.leh-radio-pill input[type="radio"] {
  accent-color: #0061ae;
}

/* LEH Offers Section */
.leh-offers-container {
  background: var(--white);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-soft);
  margin-bottom: 4rem;
}

.leh-offers-tabs {
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.leh-offers-tabs::-webkit-scrollbar {
  display: none;
}

.leh-offers-tab-btn {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gray-600);
  border: none;
  background: transparent;
  cursor: pointer;
  padding-bottom: 0.75rem;
  position: relative;
}

.leh-offers-tab-btn.active {
  color: var(--leh-brand-blue);
}

.leh-offers-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--leh-brand-blue);
}

.leh-offer-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  display: flex;
  height: 170px;
  transition: all var(--transition-speed) ease;
}

.leh-offer-card:hover {
  box-shadow: var(--shadow-medium);
}

.leh-offer-card-img {
  width: 130px;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.leh-offer-card-body {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  text-align: left;
}

/* Partner Airlines Carousel */
.leh-partners-section {
  background: var(--white);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  margin-bottom: 4rem;
}

.leh-partner-card {
  background: var(--gray-100);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-speed) ease;
}

.leh-partner-card:hover {
  transform: translateY(-5px);
  background-color: var(--white);
  box-shadow: var(--shadow-medium);
}

/* App Download Promotion Section */
.leh-app-promo {
  background: linear-gradient(90deg, #f3f7fd 0%, #e8eff9 100%);
  border-radius: var(--border-radius-md);
  padding: 3rem;
  border: 1px solid var(--gray-200);
  margin-bottom: 5rem;
}

/* Why Book with us - stats */
.leh-why-book {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.leh-why-book-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-speed) ease;
}

.leh-why-book-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.leh-why-book-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.25rem;
}

/* Destination / Offer Cards */
.premium-card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-speed) ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(13, 110, 253, 0.15);
}

.premium-card-img-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 65%;
}

.premium-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.premium-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-color);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(255, 107, 0, 0.2);
}

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

.premium-card-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

/* Listings layout & filters */
.filter-sidebar {
  background: var(--white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--gray-200);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 90px;
}

.filter-section {
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}

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

.filter-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.listing-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--gray-200);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-speed) ease;
  margin-bottom: 1.5rem;
}

.listing-card:hover {
  box-shadow: var(--shadow-medium);
  border-color: rgba(13, 110, 253, 0.2);
}

/* Details Page styles */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 150px 150px;
  gap: 10px;
  margin-bottom: 2rem;
}

.gallery-item {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-item-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

/* Checkout Stepper */
.stepper-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 3rem;
}

.stepper-container::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--gray-200);
  z-index: 1;
}

.stepper-line-progress {
  position: absolute;
  top: 25px;
  left: 0;
  height: 4px;
  background-color: var(--primary-color);
  z-index: 1;
  transition: width var(--transition-speed) ease;
}

.step-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white);
  border: 4px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gray-600);
  transition: all var(--transition-speed) ease;
  box-shadow: var(--shadow-soft);
}

.step-node.active .step-circle {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.step-node.completed .step-circle {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.step-label {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
}

.step-node.active .step-label {
  color: var(--primary-color);
}

/* User Dashboard & Sidebar Layout */
.dashboard-layout {
  display: flex;
  margin-top: 2rem;
  gap: 2rem;
}

.dashboard-sidebar {
  width: 280px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--gray-200);
  padding: 1.5rem 0;
  box-shadow: var(--shadow-soft);
  height: fit-content;
}

.dashboard-sidebar-header {
  padding: 0 1.5rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 1rem;
}

.dashboard-menu {
  list-style: none;
}

.dashboard-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.85rem 1.5rem;
  font-weight: 500;
  color: var(--gray-600);
  border-left: 4px solid transparent;
  transition: all var(--transition-speed) ease;
}

.dashboard-menu-link:hover,
.dashboard-menu-link.active {
  background-color: rgba(13, 110, 253, 0.04);
  color: var(--primary-color);
  border-left-color: var(--primary-color);
}

.dashboard-menu-link svg {
  font-size: 1.25rem;
}

.dashboard-content {
  flex-grow: 1;
  background: var(--white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--gray-200);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

/* Status Badges */
.status-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.status-badge-success {
  background-color: rgba(25, 135, 84, 0.1);
  color: rgb(25, 135, 84);
}

.status-badge-pending {
  background-color: rgba(255, 193, 7, 0.1);
  color: rgb(180, 130, 0);
}

.status-badge-failed {
  background-color: rgba(220, 53, 69, 0.1);
  color: rgb(220, 53, 69);
}

/* Footer styling */
.premium-footer {
  background-color: var(--gray-800);
  color: var(--gray-300);
  padding: 5rem 0 2rem 0;
  margin-top: 5rem;
}

.premium-footer h5 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-link {
  color: var(--gray-300);
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-link:hover {
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
  transform: translateX(4px);
  text-decoration: none;
}

.premium-footer .text-muted {
  color: rgba(255, 255, 255, 0.55) !important;
}

.premium-footer a.text-muted {
  color: rgba(255, 255, 255, 0.55) !important;
  transition: color 0.2s ease;
}

.premium-footer a.text-muted:hover {
  color: var(--secondary-color) !important;
}

.premium-footer .footer-bottom,
.premium-footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.55) !important;
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 2rem;
  margin-top: 3rem;
  font-size: 0.85rem;
}

/* Loader styling */
.premium-loader-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
}

.premium-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(13, 110, 253, 0.1);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spinner-spin 1s infinite linear;
}

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

/* Testimonial slider & FAQ accordion styling */
.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-soft);
  margin: 1rem 0.5rem;
}

.faq-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-md) !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-button {
  background: var(--white);
  color: var(--gray-800);
  font-weight: 600;
  text-align: left;
  border: none;
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
  font-size: 1rem;
}

.faq-button.active {
  color: var(--primary-color);
  border-bottom: 1px solid var(--gray-100);
}

.faq-body {
  padding: 1.25rem 1.5rem;
  background-color: var(--white);
  font-size: 0.95rem;
  color: var(--gray-600);
}

/* Custom Offers Horizontal Carousel / Slider */
.leh-offers-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  padding: 10px 0;
  width: 100%;
}

.leh-offers-carousel::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.leh-offers-carousel-item {
  flex: 0 0 450px;
  max-width: 450px;
  width: 450px;
}

.leh-carousel-nav-btn {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gray-600);
  background: var(--white);
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.leh-carousel-nav-btn:hover {
  background-color: var(--leh-brand-blue) !important;
  color: var(--white) !important;
  border-color: var(--leh-brand-blue) !important;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.scroll-bar-hidden::-webkit-scrollbar {
  display: none !important;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scroll-bar-hidden {
  -ms-overflow-style: none !important;
  /* IE and Edge */
  scrollbar-width: none !important;
  /* Firefox */
}

/* Instagram Image Hover Overlay effect */
.insta-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.insta-hover-overlay:hover {
  opacity: 1;
}


/* ==========================================================================
   Auto-Generated Styles V3 (Tag-Level Static Inline Styles Cleaned)
   ========================================================================== */

.leh-style-auto-1001 {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 400;
  background-color: transparent;
}

.leh-style-auto-1002 {
  outline: none;
}

.leh-style-auto-1003 {
  background-color: #FF1493;
  letter-spacing: 0.5px;
}

.leh-style-auto-1004 {
  flex: 1.3;
}

.leh-style-auto-1005 {
  width: 280px;
}

.leh-style-auto-1006 {
  width: 100%;
  border-right: none;
}

.leh-style-auto-1007 {
  font-size: 1.25rem;
  white-space: nowrap;
}

.leh-style-auto-1008 {
  top: 100%;
  right: 0px;
  z-index: 1000;
  width: 280px;
  border-radius: 12px;
}

.leh-style-auto-1009 {
  width: 26px;
  height: 26px;
}

.leh-style-auto-1010 {
  font-size: 1.4rem;
}

.leh-style-auto-1011 {
  top: 100%;
  right: 0px;
  z-index: 1000;
  width: 200px;
  border-radius: 12px;
}

.leh-style-auto-1012 {
  font-size: 0.85rem;
}

.leh-style-auto-1013 {
  min-height: 90px;
}

.leh-style-auto-1014 {
  min-height: 80px;
  padding: 0.8rem 1.2rem;
}

.leh-style-auto-1015 {
  margin-top: 4px;
  margin-bottom: 4px;
}

.leh-style-auto-1016 {
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}

.leh-style-auto-1017 {
  font-size: 0.78rem;
  padding: 5px 15px;
}

.leh-style-auto-1018 {
  font-size: 1.25rem;
}

.leh-style-auto-1019 {
  top: 100%;
  right: 0px;
  z-index: 1000;
  width: 260px;
  border-radius: 12px;
}

.leh-style-auto-1020 {
  outline: none;
  box-shadow: none;
}

.leh-style-auto-1021 {
  margin-top: 4px;
  margin-bottom: 4px;
  padding: 4px 8px;
}

.leh-style-auto-1022 {
  font-size: 0.75rem;
}

.leh-style-auto-1023 {
  width: 280px;
  top: 100%;
  left: 0px;
}

.leh-style-auto-1024 {
  height: 40px;
}

.leh-style-auto-1025 {
  background-color: #0061ae;
  z-index: 1040;
  position: relative;
}

.leh-style-auto-1026 {
  width: 38px;
  height: 38px;
}

.leh-style-auto-1027 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.leh-style-auto-1028 {
  line-height: 0.95;
}

.leh-style-auto-1029 {
  font-weight: 800;
}

.leh-style-auto-1030 {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.leh-style-auto-1031 {
  border-radius: 8px;
  z-index: 1050;
}

.leh-style-auto-1032 {
  border-radius: 8px;
}

.leh-style-auto-1033 {
  border-radius: 8px;
  font-size: 0.75rem;
  width: 115px;
  height: 34px;
  cursor: pointer;
  outline: none;
  box-shadow: none;
}

.leh-style-auto-1034 {
  min-width: 95px;
  height: 34px;
  border-color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
  box-shadow: none;
}

.leh-style-auto-1035 {
  margin-top: -1px;
}

.leh-style-auto-1036 {
  min-width: 95px;
  height: 34px;
  border-color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

.leh-style-auto-1037 {
  top: 64px;
  left: 0px;
  z-index: 1030;
}

.leh-style-auto-1038 {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.leh-style-auto-1039 {
  min-height: 70vh;
}

.leh-style-auto-1040 {
  max-width: 450px;
  border-radius: 16px;
}

.leh-style-auto-1041 {
  min-height: 85vh;
}

.leh-style-auto-1042 {
  max-width: 900px;
  border-radius: 20px;
  min-height: 520px;
}

.leh-style-auto-1043 {
  width: 44%;
  min-height: 100%;
}

.leh-style-auto-1044 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leh-style-auto-1045 {
  min-width: 0px;
}

.leh-style-auto-1046 {
  top: 20px;
  right: 25px;
  padding: 0px;
  outline: none;
  box-shadow: none;
}

.leh-style-auto-1047 {
  width: 46px;
  height: 54px;
  color: #0061ae;
  flex-shrink: 0;
}

.leh-style-auto-1048 {
  width: 24px;
  height: 24px;
  margin-top: -8px;
}

.leh-style-auto-1049 {
  line-height: 0.9;
}

.leh-style-auto-1050 {
  font-weight: 900;
  color: #0061ae;
  font-size: 2.1rem;
  letter-spacing: 0.5px;
}

.leh-style-auto-1051 {
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  font-weight: 800;
  color: #0061ae;
}

.leh-style-auto-1052 {
  border-radius: 10px;
  overflow: hidden;
}

.leh-style-auto-1053 {
  width: 55px;
  justify-content: center;
}

.leh-style-auto-1054 {
  border-radius: 10px;
}

.leh-style-auto-1055 {
  cursor: pointer;
}

.leh-style-auto-1056 {
  background-color: #0061ae;
  border-radius: 25px;
  letter-spacing: 0.5px;
}

.leh-style-auto-1057 {
  width: 55px;
  height: 55px;
}

.leh-style-auto-1058 {
  min-height: 75vh;
}

.leh-style-auto-1059 {
  width: 45px;
  height: 40px;
}

.leh-style-auto-1060 {
  background-color: #0061ae;
}

.leh-style-auto-1061 {
  font-size: 12px !important;
}

.leh-style-auto-1062 {
  font-size: 11px !important;
}

.leh-style-auto-1063 {
  max-width: 850px;
}

.leh-style-auto-1064 {
  height: 3px;
  top: 24px;
  z-index: 0;
}

.leh-style-auto-1065 {
  z-index: 1;
  width: 120px;
}

.leh-style-auto-1066 {
  border-radius: 6px;
}

.leh-style-auto-1067 {
  height: 75px;
}

.leh-style-auto-1068 {
  color: #0061ae !important;
}

.leh-style-auto-1069 {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.leh-style-auto-1070 {
  background-color: #ebf8ff;
  border-radius: 8px;
  border-left: 4px solid #3182ce;
}

.leh-style-auto-1071 {
  border: 2px solid #e2e8f0;
  transition: all 0.2s;
}

.leh-style-auto-1072 {
  width: 120px;
  height: 120px;
  border: 1px dashed #ccc;
  background: radial-gradient(circle, #333 10%, transparent 10%);
  background-size: 10px 10px;
}

.leh-style-auto-1073 {
  width: 40px;
  height: 20px;
}

.leh-style-auto-1074 {
  background-color: #f0fff4;
  border-radius: 8px;
}

.leh-style-auto-1075 {
  background-color: #0061ae;
  font-size: 0.9rem;
}

.leh-style-auto-1076 {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
}

.leh-style-auto-1077 {
  font-size: 0.72rem;
}

.leh-style-auto-1078 {
  background: linear-gradient(135deg, #071e3d 0%, #00132c 100%);
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.leh-style-auto-1079 {
  background-image: url("/images/blog/blog-hero-adventure.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.12;
}

.leh-style-auto-1080 {
  z-index: 1;
}

.leh-style-auto-1081 {
  color: #a0aec0;
  letter-spacing: 0.5px;
}

.leh-style-auto-1082 {
  font-size: 1.05rem;
}

.leh-style-auto-1083 {
  color: #cbd5e0;
}

.leh-style-auto-1084 {
  width: 85px;
  height: 55px;
  object-fit: cover;
  border-radius: 6px;
  z-index: 2;
}

.leh-style-auto-1085 {
  width: 40px;
  height: 40px;
  color: #0061ae;
  font-size: 1.25rem;
}

.leh-style-auto-1086 {
  font-size: 0.7rem;
}

.leh-style-auto-1087 {
  border-radius: 16px;
  background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
}

.leh-style-auto-1088 {
  width: 90px;
  object-fit: contain;
}

.leh-style-auto-1089 {
  background-color: #ffb703;
  font-size: 0.75rem;
}

.leh-style-auto-1090 {
  border-radius: 6px 0 6px 0;
  font-size: 0.65rem;
  z-index: 3;
}

.leh-style-auto-1091 {
  height: 110px;
}

.leh-style-auto-1092 {
  background-color: #0061ae;
  font-size: 0.85rem;
}

.leh-style-auto-1093 {
  background-color: #fffdf0;
  border: 1px solid #fcf6d6;
  border-radius: 12px;
}

.leh-style-auto-1094 {
  max-width: 750px;
}

.leh-style-auto-1095 {
  background: linear-gradient(135deg, #071e3d 0%, #00132c 100%);
  border-bottom: 4px solid #0061ae;
}

.leh-style-auto-1096 {
  width: 54px;
  height: 54px;
  font-size: 1.5rem;
}

.leh-style-auto-1097 {
  width: 52px;
  height: 52px;
  font-size: 1.3rem;
}

.leh-style-auto-1098 {
  font-weight: 800;
  color: #0061ae !important;
}

.leh-style-auto-1099 {
  width: 60px;
}

.leh-style-auto-1100 {
  max-width: 650px;
}

.leh-style-auto-1101 {
  height: 350px;
}

.leh-style-auto-1102 {
  line-height: 1.5;
}

.leh-style-auto-1103 {
  width: 40px;
  height: 40px;
  background-color: #0061ae;
  font-size: 0.78rem;
}

.leh-style-auto-1104 {
  width: 1px;
  flex-grow: 1;
  min-height: 30px;
}

.leh-style-auto-1105 {
  line-height: 1.4;
}

.leh-style-auto-1106 {
  top: 80px;
  z-index: 10;
}

.leh-style-auto-1107 {
  font-weight: 900;
}

.leh-style-auto-1108 {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1100;
}

.leh-style-auto-1109 {
  width: 38px;
  height: 38px;
  font-size: 1.25rem;
  padding-bottom: 3px;
}

.leh-style-auto-1110 {
  background: linear-gradient(135deg, #f0f6ff 0%, #ffffff 100%);
}

.leh-style-auto-1111 {
  font-size: 2.2rem;
}

.leh-style-auto-1112 {
  color: #0061ae;
}

.leh-style-auto-1113 {
  line-height: 1.7;
}

.leh-style-auto-1114 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #0061ae 0%, transparent 70%);
  z-index: 0;
}

.leh-style-auto-1115 {
  z-index: 1;
  object-fit: cover;
  width: 90%;
  max-height: 350px;
}

.leh-style-auto-1116 {
  width: 42px;
  height: 42px;
  border-width: 2px;
}

.leh-style-auto-1117 {
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.leh-style-auto-1118 {
  width: 350px;
  scroll-snap-align: start;
}

.leh-style-auto-1119 {
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  min-height: 380px;
}

.leh-style-auto-1120 {
  height: 180px;
  overflow: hidden;
}

.leh-style-auto-1121 {
  background-color: #0061ae;
  font-size: 0.75rem;
}

.leh-style-auto-1122 {
  background-color: #f8fafd;
}

.leh-style-auto-1123 {
  height: 230px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.leh-style-auto-1124 {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.leh-style-auto-1125 {
  background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 100%);
  border-top: 1px solid #e2e8f0;
}

.leh-style-auto-1126 {
  background-image: url("/images/common/scenic-mountain-valley.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.05;
}

.leh-style-auto-1127 {
  background-color: rgba(0, 85, 255, 0.08);
  border: 1px solid rgba(0, 85, 255, 0.15);
}

.leh-style-auto-1128 {
  font-weight: 800;
  font-size: 2.4rem;
}

.leh-style-auto-1129 {
  border-bottom: 3px solid #0061ae;
  padding-bottom: 3px;
  position: relative;
}

.leh-style-auto-1130 {
  border-radius: 20px;
  min-height: 340px;
}

.leh-style-auto-1131 {
  width: 28px;
  height: 28px;
  background-color: #0061ae;
}

.leh-style-auto-1132 {
  width: 130px;
  height: 130px;
  background-color: #f0f6ff;
  border: 2px dashed rgba(0, 85, 255, 0.2);
}

.leh-style-auto-1133 {
  font-size: 3rem;
  z-index: 1;
}

.leh-style-auto-1134 {
  border-bottom: 2px solid #0061ae;
  padding-bottom: 3px;
}

.leh-style-auto-1135 {
  line-height: 1.6;
}

.leh-style-auto-1136 {
  width: 32px;
  height: 32px;
  right: -16px;
  z-index: 10;
  font-size: 0.85rem;
}

.leh-style-auto-1137 {
  font-size: 3rem;
  z-index: 1;
  margin-top: 20px;
}

.leh-style-auto-1138 {
  height: 260px;
}

.leh-style-auto-1139 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url("/images/banners/cta-banner-background.jpg");
  background-size: cover;
  background-position: center;
  min-height: 280px;
}

.leh-style-auto-1140 {
  z-index: 2;
}

.leh-style-auto-1141 {
  font-weight: 800;
  font-size: 2rem;
}

.leh-style-auto-1142 {
  max-width: 600px;
}

.leh-style-auto-1143 {
  width: 130px;
  opacity: 0.95;
}

.leh-style-auto-1144 {
  min-height: 240px;
}

.leh-style-auto-1145 {
  font-size: 0.8rem;
  display: flex;
  gap: 2px;
}

.leh-style-auto-1146 {
  width: 45px;
  height: 45px;
  object-fit: cover;
}

.leh-style-auto-1147 {
  border-radius: 16px;
  min-height: 360px;
}

.leh-style-auto-1148 {
  height: 180px;
  object-fit: cover;
}

.leh-style-auto-1149 {
  background-color: #e1306c;
  border-radius: 8px;
  outline: none;
}

.leh-style-auto-1150 {
  width: 40px;
  height: 40px;
  border-width: 2px;
}

.leh-style-auto-1151 {
  width: 230px;
  scroll-snap-align: start;
}

.leh-style-auto-1152 {
  height: 170px;
}

.leh-style-auto-1153 {
  transition: transform 0.3s ease;
}

.leh-style-auto-1154 {
  max-width: 800px;
}

.leh-style-auto-1155 {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 1060;
}

.leh-style-auto-1156 {
  border-radius: 16px;
  overflow: hidden;
}

.leh-style-auto-1157 {
  max-height: 65vh;
  overflow-y: auto;
}

.leh-style-auto-1158 {
  border-radius: 12px;
  min-height: 190px;
}

.leh-style-auto-1159 {
  width: 135px;
  object-fit: cover;
  flex-shrink: 0;
}

.leh-style-auto-1160 {
  display: -webkit-box;
  -webkit-line-clamp: 2px;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.leh-style-auto-1161 {
  border: 1px dashed # 0061ae;
}

.leh-style-auto-1162 {
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1070;
}

.leh-style-auto-1163 {
  border-radius: 20px;
  overflow: hidden;
  background-color: #121212;
}

.leh-style-auto-1164 {
  background-color: #1e1e1e;
}

.leh-style-auto-1165 {
  color: #e1306c;
}

.leh-style-auto-1166 {
  max-height: 75vh;
  overflow-y: auto;
}

.leh-style-auto-1167 {
  max-height: 55vh;
  width: 100%;
}

.leh-style-auto-1168 {
  max-height: 55vh;
  width: auto;
}

.leh-style-auto-1169 {
  width: 48px;
  height: 48px;
  opacity: 0.8;
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.25rem;
}

.leh-style-auto-1170 {
  height: 170px;
  transition: all 0.2s ease;
}

.leh-style-auto-1171 {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.leh-style-auto-1172 {
  max-width: 700px;
  margin: 0 auto;
}

.leh-style-auto-1173 {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.leh-style-auto-1174 {
  width: 4px;
  height: 22px;
  background-color: #0061ae;
}

.leh-style-auto-1175 {
  background-color: #f0f6ff;
  border-radius: 12px;
  border-left: 4px solid #0061ae;
}

.leh-style-auto-1176 {
  font-size: 2rem;
  color: #0061ae;
  line-height: 1;
  display: inline-block;
  margin-top: -8px;
}

.leh-style-auto-1177 {
  color: #2b6cb0 !important;
}

.leh-style-auto-1178 {
  width: 38px;
  height: 38px;
  background-color: #ebf8ff !important;
}

.leh-style-auto-1179 {
  font-size: 0.72rem;
  line-height: 1.5;
}

.leh-style-auto-1180 {
  width: 38px;
  height: 38px;
  background-color: #e6fffa !important;
}

.leh-style-auto-1181 {
  width: 38px;
  height: 38px;
  background-color: #fffaf0 !important;
}

.leh-style-auto-1182 {
  height: 90px;
}

.leh-style-auto-1183 {
  max-width: 280px;
}

.leh-style-auto-1184 {
  background-image: url("/images/blog/blog-hero-adventure.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.15;
}

.leh-style-auto-1185 {
  letter-spacing: 0.5px;
}

.leh-style-auto-1186 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.leh-style-auto-1187 {
  max-width: 600px;
  line-height: 1.6;
}

.leh-style-auto-1188 {
  width: 310px;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.leh-style-auto-1189 {
  height: 360px;
}

.leh-style-auto-1190 {
  width: 36px;
  height: 36px;
  padding: 0 !important;
}

.leh-style-auto-1191 {
  width: 50px;
  height: 50px;
}

.leh-style-auto-1192 {
  width: 28px;
  height: 28px;
}

.leh-style-auto-1193 {
  background: linear-gradient(135deg, #0061ae 0%, #002288 100%);
}

.leh-style-auto-1194 {
  background-image: url("/images/common/mountain-peak-backdrop.jpg");
  z-index: 0;
}

.leh-style-auto-1195 {
  background-color: #ffb703;
}

.leh-style-auto-1196 {
  width: 65px;
  height: 50px;
}

.leh-style-auto-1197 {
  transition: all 0.2s;
  font-size: 0.78rem;
  line-height: 1.3;
}

.leh-style-auto-1198 {
  background-color: #ebf8ff;
  color: #0061ae;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.leh-style-auto-1199 {
  font-weight: 800;
  font-size: 2.5rem;
}

.leh-style-auto-1200 {
  max-width: 900px;
}

.leh-style-auto-1201 {
  width: 44px;
  height: 44px;
  background-color: #ebf8ff;
  min-width: 44px;
}

.leh-style-auto-1202 {
  min-height: 560px;
}

.leh-style-auto-1203 {
  width: 40px;
  height: 40px;
}

.leh-style-auto-1204 {
  width: 32px;
  height: 3px;
  background-color: #0061ae;
  border-radius: 2px;
}

.leh-style-auto-1205 {
  width: 38px;
  height: 38px;
  min-width: 38px;
}

.leh-style-auto-1206 {
  word-break: break-all;
}

.leh-style-auto-1207 {
  height: 140px;
  background-color: #ebf8ff;
}

.leh-style-auto-1208 {
  bottom: 10px;
  right: 25px;
  width: 180px;
  height: 110px;
  object-fit: contain;
  z-index: 3;
}

.leh-style-auto-1209 {
  border-color: #dee2e6;
}

.leh-style-auto-1210 {
  outline: none;
  box-shadow: none;
  resize: none;
}

.leh-style-auto-1211 {
  background: linear-gradient(135deg, #e6fffa 0%, #ebf8ff 100%);
  border: 1px solid rgba(0, 85, 255, 0.08);
}

.leh-style-auto-1212 {
  width: 64px;
  height: 64px;
  min-width: 64px;
}

.leh-style-auto-1213 {
  width: 190px;
}

.leh-style-auto-1214 {
  width: 32px;
  height: 32px;
}

.leh-style-auto-1215 {
  right: 25px;
  top: -12px;
  transform: rotate(10deg);
  width: 60px;
  height: 72px;
  border-color: #e2e8f0;
}

.leh-style-auto-1216 {
  font-size: 0.62rem;
}

.leh-style-auto-1217 {
  border: 0px;
}

.leh-style-auto-1218 {
  min-height: 60vh;
}

.leh-style-auto-1219 {
  font-size: 6rem;
  letter-spacing: -2px;
}

.leh-style-auto-1220 {
  max-width: 400px;
}

.leh-style-auto-1221 {
  line-height: 1.8;
}

.leh-style-auto-1222 {
  background: linear-gradient(135deg, #071e3d 0%, #00132c 100%);
  padding: 60px 0 100px 0;
}

.leh-style-auto-1223 {
  color: #63b3ed;
  border-color: #2b6cb0;
  background-color: rgba(43, 108, 176, 0.15);
  border: 1px solid rgba(99, 179, 237, 0.3);
}

.leh-style-auto-1224 {
  font-weight: 800;
  font-size: 3rem;
}

.leh-style-auto-1225 {
  color: #ffb703;
  font-size: 1.4rem;
}

.leh-style-auto-1226 {
  max-width: 650px;
  line-height: 1.6;
}

.leh-style-auto-1227 {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.leh-style-auto-1228 {
  border-radius: 20px;
  z-index: 5;
  position: relative;
}

.leh-style-auto-1229 {
  color: #0061ae;
  font-size: 2.2rem;
  font-weight: 800;
}

.leh-style-auto-1230 {
  background-color: #ffb703;
  font-size: 0.9rem;
}

.leh-style-auto-1231 {
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.leh-style-auto-1232 {
  width: 48px;
  height: 48px;
  color: #0061ae;
  font-size: 1.25rem;
}

.leh-style-auto-1233 {
  width: 65px;
  height: 45px;
}

.leh-style-auto-1234 {
  border-radius: 16px;
  background: #ffffff;
  min-height: 230px;
}

.leh-style-auto-1235 {
  width: 56px;
  height: 56px;
  background-color: #ebf8ff;
  color: #3182ce;
  font-size: 1.5rem;
}

.leh-style-auto-1236 {
  border-radius: 20px;
  background-color: #072247;
  background-image: radial-gradient(circle at top right, #0a3060, #072247);
}

.leh-style-auto-1237 {
  min-height: 320px;
}

.leh-style-auto-1238 {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  backdrop-filter: blur(2px);
}

.leh-style-auto-1239 {
  color: #ffb703;
}

.leh-style-auto-1240 {
  font-size: 0.75rem;
  margin-left: 2px;
}

.leh-style-auto-1241 {
  border-radius: 20px;
  background: linear-gradient(135deg, #1a365d 0%, #2a4365 100%);
}

.leh-style-auto-1242 {
  font-size: 3rem;
}

/* Premium Button Styles */
.btn-premium-primary {
  background: linear-gradient(135deg, #0061ae 0%, #0033aa 100%) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 30px !important;
  padding: 0.65rem 1.5rem !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: all var(--transition-speed) ease !important;
  box-shadow: 0 4px 12px rgba(0, 85, 255, 0.2) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  text-decoration: none !important;
}

.btn-premium-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0, 85, 255, 0.3) !important;
  background: linear-gradient(135deg, #0066ff 0%, #0044cc 100%) !important;
}

.btn-premium-secondary {
  background: linear-gradient(135deg, #ffb703 0%, #e6a400 100%) !important;
  color: var(--dark) !important;
  border: none !important;
  border-radius: 30px !important;
  padding: 0.65rem 1.5rem !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: all var(--transition-speed) ease !important;
  box-shadow: 0 4px 12px rgba(255, 183, 3, 0.2) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  text-decoration: none !important;
}

.btn-premium-secondary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(255, 183, 3, 0.3) !important;
  background: linear-gradient(135deg, #ffc43d 0%, #ffa800 100%) !important;
}

/* About Page Custom Styles */
.leh-about-page {
  background-color: var(--white);
}

/* Hero Header Card */
.leh-about-hero-card {
  background-image: url('/images/about/about-hero-suv.jpg');
  background-size: cover;
  background-position: center;
  min-height: 380px;
}

.leh-about-hero-overlay {
  background: linear-gradient(90deg, rgba(0, 44, 155, 0.9) 0%, rgba(0, 20, 80, 0.7) 60%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.leh-about-hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  min-width: 210px;
}

.leh-about-hero-badge i {
  color: var(--warning);
}

/* Local Badges */
.leh-about-local-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: #f0f6ff;
  border-radius: 16px;
  border: 1px solid #dbeafe;
  width: fit-content;
  flex: 1 1 240px;
}

.leh-about-badge-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leh-about-mockup-img {
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
}

.w-90 {
  width: 90% !important;
}

/* Core Values Section */
.leh-about-section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.leh-about-section-divider .line {
  height: 1px;
  width: 60px;
  background-color: var(--gray-300);
}

.leh-about-section-divider .dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.leh-about-value-card {
  background: var(--white);
  padding: 30px 24px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 85, 255, 0.03);
  border: 1px solid var(--gray-100);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.leh-about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 85, 255, 0.08);
  border-color: #dbeafe;
}

.leh-about-value-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ebf8ff;
  color: var(--leh-brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 20px auto;
  transition: all 0.3s ease;
}

.leh-about-value-card:hover .leh-about-value-icon-box {
  background: var(--leh-brand-blue);
  color: var(--white);
  transform: rotate(360deg);
}

/* Operational Timeline */
.leh-about-timeline {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  padding: 30px 0;
}

.leh-about-timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: #dbeafe;
  top: 40px;
  bottom: 40px;
  left: 50%;
  margin-left: -1px;
}

.leh-about-timeline-item {
  padding: 10px 50px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.leh-about-timeline-item::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  right: -7px;
  left: auto !important;
  background-color: var(--white);
  border: 3px solid var(--leh-brand-blue);
  top: 36px;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}

.leh-about-timeline-item:hover::after {
  background-color: var(--leh-brand-blue);
  transform: scale(1.3);
}

.leh-about-timeline-item.left {
  left: 0;
}

.leh-about-timeline-item.left .content {
  text-align: right;
}

.leh-about-timeline-item.right {
  left: 50%;
}

.leh-about-timeline-item.right::after {
  left: -7px !important;
  right: auto !important;
}

.leh-about-timeline-item.right .content {
  text-align: left;
}

.leh-about-timeline-item .content {
  padding: 24px;
  background-color: var(--white);
  position: relative;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 85, 255, 0.02);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.leh-about-timeline-item:hover .content {
  box-shadow: 0 15px 40px rgba(0, 85, 255, 0.06);
  border-color: #dbeafe;
}

.leh-about-timeline-item .year {
  font-weight: 800;
  color: var(--leh-brand-blue);
  font-size: 1.3rem;
  display: block;
}

.timeline-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #f0f6ff;
  color: var(--leh-brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .leh-about-timeline-item:not(:first-child) {
    margin-top: -80px;
  }
}

.leh-about-timeline-item:hover .timeline-icon-box {
  background: var(--leh-brand-blue);
  color: var(--white);
}

/* CTA Section */
.leh-about-cta-banner {
  background-image: url('/images/about/about-cta-suv.jpg');
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.z-index-2 {
  position: relative !important;
  z-index: 2 !important;
}

/* Centralized Extracted Style Classes */
.leh-header-wrapper {
  background-color: #0061ae !important;
  z-index: 1040 !important;
  position: relative !important;
}

.leh-navbar-brand {
  outline: none !important;
}

.leh-logo-img {
  height: 40px !important;
}

.leh-dropdown-services {
  border-radius: 8px !important;
  z-index: 1050 !important;
}

.leh-dropdown-user-profile {
  border-radius: 8px !important;
  z-index: 1050 !important;
}

.leh-header-login-btn {
  min-width: 95px !important;
  height: 34px !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
  transition: all 0.2s ease !important;
  box-shadow: none !important;
}

.leh-header-user-icon {
  margin-top: -1px !important;
}

.leh-mobile-menu-dropdown {
  top: 64px !important;
  left: 0 !important;
  z-index: 1030 !important;
}

.leh-mobile-menu-scrollable {
  height: calc(100vh - 64px) !important;
  overflow-y: auto !important;
}

.leh-mobile-services-chevron {
  transition: transform 0.2s ease !important;
  transform: rotate(0deg);
}

.leh-mobile-services-chevron-open {
  transform: rotate(180deg) !important;
}

/* Cab Checkout Stepper Classes */
.leh-checkout-progress-bar {
  height: 3px !important;
  top: 24px !important;
  z-index: 0 !important;
  transition: all 0.3s ease !important;
}

.leh-checkout-progress-bar-step-1 {
  width: 16% !important;
}

.leh-checkout-progress-bar-step-2 {
  width: 50% !important;
}

.leh-checkout-progress-bar-step-3 {
  width: 84% !important;
}

.leh-checkout-step-circle {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  font-weight: bold !important;
  transition: all 0.3s ease !important;
  background-color: #edf2f7 !important;
  color: #718096 !important;
  font-size: 1rem !important;
}

.leh-checkout-step-circle-active {
  background-color: #0061ae !important;
  color: #fff !important;
}

.leh-checkout-step-circle-completed {
  background-color: #0061ae !important;
  color: #fff !important;
  font-size: 1.25rem !important;
}

.leh-checkout-step-circle-focus {
  box-shadow: 0 0 0 4px rgba(0, 85, 255, 0.25) !important;
}

/* Cab Listing Badge Classes */
.leh-cab-badge {
  border-radius: 4px !important;
  letter-spacing: 0.5px !important;
}

.leh-cab-badge-sedan {
  background-color: #0061ae !important;
  color: #fff !important;
}

.leh-cab-badge-muv {
  background-color: #805ad5 !important;
  color: #fff !important;
}

.leh-cab-badge-hatchback {
  background-color: #38a169 !important;
  color: #fff !important;
}

.leh-cab-badge-suv {
  background-color: #dd6b20 !important;
  color: #fff !important;
}

.leh-cab-badge-default {
  background-color: #4a5568 !important;
  color: #fff !important;
}

/* Home Offer Classes */
.leh-nowrap {
  white-space: nowrap !important;
}

.leh-btn-coupon {
  white-space: nowrap !important;
  outline: none !important;
  box-shadow: none !important;
}

.leh-insta-modal-detail {
  max-width: 850px !important;
}

.leh-insta-modal-grid {
  max-width: 1100px !important;
}

/* Service Details FAQ Classes */
.leh-hero-blend-overlay {
  mix-blend-mode: overlay !important;
  z-index: 0 !important;
}

.leh-faq-btn {
  background-color: #ffffff !important;
  color: #1a1a1a !important;
  border: none !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  transition: background-color 0.2s ease !important;
}

.leh-faq-btn-active {
  background-color: #f0f6ff !important;
}

/* ==========================================================================
   Holiday Packages Section Custom Styles
   ========================================================================== */
.holiday-packages-section {
  padding: 40px 0 60px;
  background-color: #ffffff;
}

.packages-heading {
  margin-bottom: 24px;
}

.packages-heading h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 8px;
  text-align: center;
}

.packages-heading p {
  font-size: 14px;
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 0;
}

/* Sticky tabs container */
.packages-tabs-sticky-wrapper {
  position: sticky;
  top: 0;
  z-index: 1010;
  background-color: #ffffff;
  padding: 10px 0;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.packages-tabs-sticky-wrapper.is-sticky {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid var(--gray-200);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

.packages-tabs-inner-container {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Destination Tab Button */
.package-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border: none;
  background: none;
  outline: none;
  position: relative;
  color: var(--gray-600);
  transition: all 0.25s ease;
  min-width: 90px;
  max-width: 110px;
  cursor: pointer;
  text-align: center;
  flex-shrink: 0;
  margin-top: 10px;
}

.package-tab-btn:hover {
  color: var(--primary-color);
}

.package-tab-btn i {
  font-size: 22px;
  color: #718096;
  transition: color 0.25s ease, transform 0.25s ease;
}

.package-tab-btn:hover i {
  transform: translateY(-2px);
  color: var(--primary-color);
}

.package-tab-btn span {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

/* Active tab highlight */
.package-tab-btn.active {
  color: var(--primary-color);
}

.package-tab-btn.active i {
  color: var(--primary-color);
}

.package-tab-btn::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 4px;
  transition: width 0.25s ease;
}

.package-tab-btn.active::after {
  width: 50%;
}

/* Trending badge */
.package-tab-btn .trending-badge {
  position: absolute;
  top: -6px;
  right: 50%;
  transform: translateX(80%);
  color: #000;
  font-size: 7px;
  font-weight: 800;
  padding: 3px 5px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  z-index: 5;
  background: var(--secondary-color);
}

/* Outer Packages Swiper and Navigation */
.packages-carousel-outer {
  position: relative;
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 0 45px;
}

/* Custom Navigation Arrows overlaying the edges */
.swiper-button-prev-custom,
.swiper-button-next-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A1A1A;
  z-index: 10;
  cursor: pointer;
  transition: all 0.25s ease;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background-color: #F8FAFC;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  color: var(--secondary-color);
  border-color: rgba(255, 107, 0, 0.3);
}

.swiper-button-prev-custom {
  left: 10px;
}

.swiper-button-next-custom {
  right: 10px;
}

.swiper-button-disabled-custom {
  opacity: 0.4;
  pointer-events: none;
  box-shadow: none;
}

/* Destination details top bar */
.destination-details-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 0 15px;
}

.destination-details-bar h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0;
}

.destination-view-all-btn {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.destination-view-all-btn:hover {
  color: var(--secondary-color);
  gap: 9px;
}

.destination-view-all-btn i {
  font-size: 12px;
  background-color: var(--secondary-color);
  color: #ffffff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: bold;
  display: none;
}

/* Package Card Design */
.package-card {
  background-color: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

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

.package-card-img-swiper {
  width: 100%;
  height: 100%;
}

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

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

/* Image Swiper pagination dots */
.package-card-img-swiper .swiper-pagination-bullets {
  bottom: 12px !important;
}

.package-card-img-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
  width: 6px !important;
  height: 6px !important;
  margin: 0 4px !important;
  transition: background 0.3s ease, transform 0.3s ease !important;
}

.package-card-img-swiper .swiper-pagination-bullet-active {
  background: #ffffff !important;
  transform: scale(1.3) !important;
}

/* Save Ribbon badge on top-left */
.package-card-save-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: rgba(0, 97, 174, 0.9);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(2px);
}

.package-card-save-badge i {
  font-size: 9px;
}

/* Package Card Body */
.package-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-duration-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 8px;
  font-weight: 500;
}

.package-rating-badge {
  color: #00a65a;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 3px;
}

.package-rating-badge i {
  font-size: 11px;
}

.package-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.45;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 40px;
}

/* Yellow Itinerary Strip */
.package-itinerary-strip {
  background-color: #FFFDF0;
  border: 1px solid #FFF5C2;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
}

/* Monsoon Sale Badge */
.package-sale-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
  height: 20px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.sale-badge-left {
  background: linear-gradient(90deg, #ff3366, #ff9900);
  width: 12px;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 65% 100%, 0 100%);
  margin-right: -4px;
}

.sale-badge-right {
  background-color: #00bcd4;
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px 2px 8px;
  height: 100%;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
}

/* Price Section */
.package-price-section {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.package-price-row-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.package-original-price {
  font-size: 11px;
  text-decoration: line-through;
  color: var(--gray-600);
}

.package-discount-pill {
  background-color: #E6FFFA;
  color: #00a699;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.package-actual-price-row {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-color);
  line-height: 1.2;
}

.package-actual-price-unit {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-600);
}

/* CTA Buttons Layout */
.package-cta-section {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: auto;
}

.package-btn-phone {
  width: 44px;
  height: 44px;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.2s ease;
  cursor: pointer;
  outline: none;
  flex-shrink: 0;
}

.package-btn-phone:hover {
  background-color: #ffcc29;
  color: #000;
  border-color: #ffcc29;
}

.package-btn-callback {
  flex-grow: 1;
  height: 44px;
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.package-btn-callback:hover {
  background-color: #ffcc29;
  color: #000;
}

/* Custom styles for Swiper tabs carousel */
.packages-tabs-swiper {
  width: 100%;
  padding: 5px 0;
}

.packages-tabs-swiper .swiper-slide {
  width: auto !important;
}

/* Swiper navigation overlays for Tabs */
.tabs-nav-btn-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #475569;
  border: 1px solid var(--gray-200);
  font-weight: bold;
  font-size: 14px;
  transition: all 0.2s;
}

.tabs-nav-btn-next:hover {
  color: var(--secondary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tabs-nav-btn-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .packages-carousel-outer {
    padding: 0 25px;
  }

  .swiper-button-prev-custom {
    left: 0px;
  }

  .swiper-button-next-custom {
    right: 0px;
  }
}

@media (max-width: 991px) {
  .holiday-packages-section {
    padding: 30px 0 50px;
  }

  .packages-heading h2 {
    font-size: 24px;
  }

  .destination-details-bar h3 {
    font-size: 18px;
  }

  .package-card-img-container {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .packages-carousel-outer {
    padding: 0 10px;
  }

  .swiper-button-prev-custom,
  .swiper-button-next-custom {
    display: none !important;
    /* Hide arrows on tablets/mobiles and use swipe */
  }

  .packages-heading {
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .package-card-img-container {
    height: 180px;
  }

  .package-title {
    font-size: 13px;
    height: 38px;
  }

  .package-actual-price-row {
    font-size: 16px;
  }
}

/* Local navigation buttons for card inner image sliders */
.card-img-prev-btn,
.card-img-next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(2px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A1A1A;
  z-index: 12;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  font-size: 10px;
  opacity: 0;
}

.package-card:hover .card-img-prev-btn,
.package-card:hover .card-img-next-btn {
  opacity: 1;
}

.card-img-prev-btn:hover,
.card-img-next-btn:hover {
  background-color: #ffffff;
  color: var(--secondary-color);
  transform: translateY(-50%) scale(1.1);
}

.card-img-prev-btn {
  left: 10px;
}

.card-img-next-btn {
  right: 10px;
}

/* Hide disabled navigation buttons inside image container */
.package-card-img-swiper .swiper-button-disabled {
  opacity: 0 !important;
  pointer-events: none;
}

/* Callback Request Expert Modal */
.callback-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(3, 20, 36, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 15px;
}

.callback-modal-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.callback-modal-close-btn {
  position: absolute;
  top: 10px;
  right: -12px;
  background-color: #ffffff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  border: none;
  z-index: 100001;
  color: #555555;
  font-size: 14px;
  transition: all 0.2s ease;
}

.callback-modal-close-btn:hover {
  background-color: #f1f5f9;
  color: #000000;
  transform: scale(1.08);
}

.callback-modal-container {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  width: 100%;
  display: flex;
  flex-direction: column;
  animation: modalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.callback-modal-header {
  background: #ffcc29 !important;
  color: #000000 !important;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.callback-modal-timer {
  font-family: monospace, sans-serif;
  opacity: 0.95;
  background-color: rgba(0, 0, 0, 0.08) !important;
  padding: 2px 6px;
  border-radius: 4px;
  color: #000000 !important;
}

.callback-modal-package-info {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  align-items: center;
  background-color: #fafbfc;
}

.callback-modal-pkg-img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #e2e8f0;
}

.callback-modal-pkg-details {
  text-align: left;
  flex-grow: 1;
}

.callback-modal-pkg-title {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.callback-modal-price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.callback-modal-price-actual {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
}

.callback-modal-price-original {
  font-size: 11px;
  color: #94a3b8;
  text-decoration: line-through;
}

.callback-modal-save-badge {
  background-color: #ecfdf5;
  color: #10b981;
  border: 1px dashed #10b981;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  text-transform: uppercase;
}

.callback-modal-body {
  padding: 20px;
  overflow-y: auto;
}

.callback-form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.callback-form-group {
  margin-bottom: 14px;
  text-align: left;
}

.callback-form-group-flex {
  flex: 1;
  text-align: left;
}

.callback-input-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 4px;
}

.callback-input,
.callback-select,
.callback-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 13px;
  color: #0f172a;
  outline: none;
  background-color: #ffffff;
  transition: all 0.2s ease;
}

.callback-input::placeholder,
.callback-textarea::placeholder {
  color: #94a3b8;
}

.callback-input:focus,
.callback-select:focus,
.callback-textarea:focus {
  border-color: #0e97c8;
  box-shadow: 0 0 0 3px rgba(14, 151, 200, 0.12);
}

.callback-phone-container {
  display: flex;
  gap: 8px;
}

.callback-phone-prefix {
  width: 74px;
  text-align: center;
  padding: 12px 0;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 13px;
  color: #334155;
  background-color: #f8fafc;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.callback-phone-prefix i {
  font-size: 10px;
  color: #64748b;
}

.callback-textarea {
  height: 80px;
  resize: none;
}

.callback-modal-submit-btn {
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 13px;
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
  margin-top: 6px;
}

.callback-modal-submit-btn:hover {
  background-color: var(--secondary-color);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.25);
  transform: translateY(-1px);
  color: #000000;
}

.callback-modal-submit-btn:active {
  transform: translateY(0);
}

/* Holiday Details Page Classes */
.breadcrumb-pkg-title {
  max-width: 300px;
}

.details-gallery-large {
  height: 368px;
}

.details-gallery-small {
  height: 180px;
}

.hover-zoom-img {
  transition: transform 0.5s ease;
}

.details-pkg-title {
  line-height: 1.3;
}

.details-share-btn {
  width: 40px;
  height: 40px;
}

.details-subtabs-sticky {
  top: 65px;
  z-index: 9;
}

.traveler-upload-thumb {
  width: 56px;
  height: 56px;
}

.traveler-upload-badge {
  width: 56px;
  height: 56px;
  font-size: 11px;
}

.accordion-header-bg {
  background-color: #f8fafc;
}

.itinerary-day-img-frame {
  max-height: 220px;
  max-width: 400px;
}

.details-customize-banner {
  background: var(--secondary-color);
}

.details-customize-btn {
  color: #ea580c;
  border-radius: 6px;
}

.csdcc {
  background: var(--primary-color);
}

.dsecv {
  color: var(--primary-color);
}

.details-coupon-banner {
  background-color: var(--primary-color);
}

.reviews-star-label {
  width: 40px;
}

.reviews-progress-bar {
  height: 8px;
}

.reviews-progress-85 {
  width: 85%;
}

.reviews-progress-12 {
  width: 12%;
}

.reviews-progress-3 {
  width: 3%;
}

.review-avatar-frame {
  width: 40px;
  height: 40px;
}

.details-sticky-sidebar {
  top: 100px;
  z-index: 10;
}

.price-card-header-bg {
  background: #ffcc29 !important;
  color: #000000 !important;
}

.price-card-timer-badge {
  background-color: rgba(0, 0, 0, 0.08) !important;
  padding: 2px 6px;
  border-radius: 4px;
  color: #000000 !important;
}

.btn-orange-cta {
  background-color: #f97316;
}

.btn-orange-cta:hover {
  background-color: #ea580c;
}

/* Helper classes to remove inline styles */
.package-title-link {
  text-decoration: none !important;
  color: inherit !important;
}

.swiper-slide-auto {
  width: auto !important;
}

/* Global primary button overrides */
.btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #005090 !important;
  border-color: #005090 !important;
  color: #ffffff !important;
}
/* Custom Clean-up of Tag-Level Static Inline Styles */
.pkg-label-xs { font-size: 10px !important; letter-spacing: 0.5px !important; }
.pkg-search-input { font-size: 13px !important; border-width: 1.5px !important; }
.pkg-border-light { border-color: #e7e7e7 !important; }
.pkg-min-w-180 { min-width: 180px !important; }
.pkg-min-w-200 { min-width: 200px !important; }
.pkg-min-w-130 { min-width: 130px !important; }
.pkg-bg-white { background-color: #fff !important; }
.pkg-h-220 { height: 220px !important; }
.pkg-grad-overlay { background: linear-gradient(transparent 50%, rgba(0,0,0,0.8) 100%) !important; }
.pkg-fs-15 { font-size: 15px !important; }
.pkg-fs-10 { font-size: 10px !important; }
.pkg-theme-card { transition: all 0.2s !important; border-color: #e7e7e7 !important; }
.pkg-fs-13 { font-size: 13px !important; }
.pkg-outline-none { outline: none !important; }
.pkg-fs-11 { font-size: 11px !important; }
.pkg-fs-16 { font-size: 16px !important; }
.pkg-badge-br-8 { border-bottom-right-radius: 8px !important; }
.pkg-title-text { font-size: 17px !important; line-height: 1.3 !important; }
.pkg-fs-12 { font-size: 12px !important; }
.pkg-footer-summary { background-color: #f2f2f2 !important; font-size: 11px !important; }
.pkg-btn-blue-grad { background: linear-gradient(90deg, #0061ae, #0055ff) !important; font-size: 13px !important; }
.pkg-border-1-light { border: 1px solid #e7e7e7 !important; }
.pkg-fs-20 { font-size: 20px !important; }
.pkg-accordion-header { white-space: normal !important; outline: none !important; box-shadow: none !important; }
.pkg-fs-rem-85 { font-size: 0.85rem !important; }
.pkg-fs-rem-78 { font-size: 0.78rem !important; }
.pkg-mw-400 { max-width: 400px !important; }
.pkg-img-checkout { width: 120px !important; height: 90px !important; }
.pkg-mw-800 { max-width: 800px !important; }
.pkg-fs-giant { font-size: 4.5rem !important; }
.pkg-sec-tab-btn { white-space: nowrap !important; transition: all 0.2s !important; }
.pkg-sec-transition-3 { transition: all 0.3s !important; }
.pkg-sec-transition-5 { transition: transform 0.5s !important; }
.pkg-sec-title { font-size: 0.95rem !important; height: 2.7rem !important; overflow: hidden !important; }
.pkg-fs-rem-75 { font-size: 0.75rem !important; }
.cab-progress-h { height: 8px !important; }
.cab-progress-w-88 { width: 88% !important; }
.cab-fs-rem-75 { font-size: 0.75rem !important; }
.cab-white-space-normal { white-space: normal !important; }
.cab-h-240 { height: 240px !important; }
.cab-category-header { font-size: 0.85rem !important; line-height: 1.2 !important; }
.cab-category-list-container { height: 160px !important; overflow-y: auto !important; scrollbar-width: thin !important; }
.cab-fs-rem-78 { font-size: 0.78rem !important; }

/* --- Migrated Component Styles --- */

/* From src/layout/Header.jsx */

        .leh-header-wrapper {
          background: #ffffff !important;
          box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
          border-bottom: 1px solid #e7e7e7 !important;
          transition: all 0.3s ease;
        }
        .leh-header-wrapper.sticky-header {
          position: fixed !important;
          top: 0 !important;
          left: 0 !important;
          width: 100% !important;
          z-index: 9999 !important;
          background: #ffffff !important;
          box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
          animation: slideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        @keyframes slideDown {
          from {
            transform: translateY(-100%);
          }
          to {
            transform: translateY(0);
          }
        }
        .leh-logo-img {
          height: 38px !important;
          object-fit: contain;
        }
        .leh-nav-item {
          color: #4a4a4a !important;
          font-weight: 700 !important;
          font-size: 11px !important;
          padding: 4px 10px !important;
          transition: all 0.2s ease;
          position: relative;
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 2px;
          background: transparent;
          border: 0;
          outline: none !important;
        }
        .leh-nav-item i {
          font-size: 16px !important;
          color: #555555;
          transition: all 0.2s ease;
        }
        .leh-nav-item:hover, .leh-nav-item.active {
          color: #0061ae !important;
          text-decoration: none;
        }
        .leh-nav-item:hover i, .leh-nav-item.active i {
          color: #0061ae !important;
        }
        .leh-nav-item.active::after {
          content: '';
          position: absolute;
          bottom: -8px;
          left: 0;
          width: 100%;
          height: 3px;
          background-color: #0061ae;
          border-radius: 2px;
        }
        .leh-header-login-btn {
          border: 1px solid #0061ae !important;
          color: #0061ae !important;
          transition: all 0.2s ease;
          font-size: 11px !important;
        }
        .leh-header-login-btn:hover {
          background-color: #0061ae !important;
          color: #ffffff !important;
        }
        .form-select.leh-header-lang-select {
          border: 1px solid #e7e7e7 !important;
          background-color: #f8f9fa !important;
          color: #333333 !important;
          font-size: 11px !important;
          border-radius: 20px;
        }
        /* Mobile / Tablet Horizontal Swipe Navigation */
        .leh-mobile-nav {
          display: flex;
          overflow-x: auto;
          gap: 12px;
          padding: 4px 2px 8px 2px;
          scrollbar-width: none;
          -ms-overflow-style: none;
        }
        .leh-mobile-nav::-webkit-scrollbar {
          display: none;
        }
        .leh-mobile-nav-item {
          flex: 0 0 auto;
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 2px;
          color: #4a4a4a !important;
          font-weight: 700;
          font-size: 10px;
          background: transparent;
          border: 0;
          padding: 4px 8px;
          outline: none !important;
          position: relative;
          min-width: 60px;
        }
        .leh-mobile-nav-item i {
          font-size: 14px;
          color: #666;
        }
        .leh-mobile-nav-item.active, .leh-mobile-nav-item:hover {
          color: #0061ae !important;
          text-decoration: none;
        }
        .leh-mobile-nav-item.active i, .leh-mobile-nav-item:hover i {
          color: #0061ae !important;
        }
        .leh-mobile-nav-item.active::after {
          content: '';
          position: absolute;
          bottom: -6px;
          left: 0;
          width: 100%;
          height: 3px;
          background-color: #0061ae;
          border-radius: 2px;
        }
      

/* From src/pages/holidays/HolidayDetails.jsx */

        .fixed-customise-trip-btn {
          position: fixed;
          bottom: 30px;
          right: 30px;
          background: #0061ae;
          color: #ffffff !important;
          font-weight: 700;
          font-size: 13px;
          padding: 12px 22px;
          border-radius: 50px;
          border: 0;
          z-index: 9999;
          display: flex;
          align-items: center;
          cursor: pointer;
          transition: all 0.3s ease;
          outline: none !important;
        }
        .fixed-customise-trip-btn:hover {
          transform: scale(1.05) translateY(-2px);
        }
        .customise-form-input {
          border: 1px solid #ced4da !important;
          border-radius: 6px !important;
          padding: 10px 12px !important;
          transition: border-color 0.25s ease;
        }
        .customise-form-input:focus {
          border-color: #7b2cbf !important;
          box-shadow: 0 0 0 0.2rem rgba(123, 44, 191, 0.25) !important;
        }
      

/* From src/pages/holidays/HolidayListing.jsx */

        .pkg-card-img-container {
          width: 100%;
          height: 180px;
        }
        @media (min-width: 768px) {
          .pkg-card-img-container {
            width: 250px !important;
            height: 180px !important;
          }
          .pkg-card-info-col {
            flex: 1;
            min-width: 0;
          }
          .pkg-card-price-col {
            width: 220px !important;
            flex-shrink: 0;
          }
        }
        .leh-carousel-section {
          background: #ffffff;
          padding: 24px;
          border-radius: 8px;
          border: 1px solid #e7e7e7;
          margin-bottom: 24px;
          position: relative;
        }
        .leh-carousel-header {
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-bottom: 20px;
        }
        .leh-carousel-title {
          font-weight: 850;
          color: #000000;
          font-size: 22px;
          margin-bottom: 2px;
        }
        .leh-carousel-subtitle {
          color: #666666;
          font-size: 13px;
          margin-bottom: 0;
        }
        .leh-scroll-btn-group {
          display: flex;
          gap: 8px;
        }
        .leh-scroll-btn {
          width: 32px;
          height: 32px;
          border-radius: 50%;
          border: 1px solid # 0061ae;
          background: #ffffff;
          color: # 0061ae;
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          transition: all 0.2s ease;
          outline: none !important;
        }
        .leh-scroll-btn:hover {
          background: # 0061ae;
          color: #ffffff;
        }
        .leh-carousel-container {
          display: flex;
          overflow-x: auto;
          gap: 16px;
          padding-bottom: 8px;
          scroll-behavior: smooth;
        }
        .leh-carousel-container::-webkit-scrollbar {
          display: none;
        }
        .leh-carousel-container {
          -ms-overflow-style: none;
          scrollbar-width: none;
        }
        /* MMT-Style Recently Viewed Card */
        .leh-viewed-card {
          flex: 0 0 auto;
          width: 280px;
          border: 1px solid #e7e7e7;
          border-radius: 8px;
          background: #ffffff;
          padding: 16px;
          box-shadow: 0 2px 6px rgba(0,0,0,0.04);
          transition: all 0.2s ease;
          position: relative;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          text-align: left;
        }
        .leh-viewed-card:hover {
          transform: translateY(-2px);
          box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        /* MMT-Style Destination overlay card */
        .leh-dest-overlay-card {
          flex: 0 0 auto;
          width: 140px;
          height: 190px;
          border-radius: 8px;
          overflow: hidden;
          position: relative;
          cursor: pointer;
          box-shadow: 0 2px 6px rgba(0,0,0,0.05);
          transition: all 0.2s ease;
        }
        .leh-dest-overlay-card:hover {
          transform: translateY(-3px);
          box-shadow: 0 4px 12px rgba(0,0,0,0.12);
        }
        .leh-dest-overlay-img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.3s ease;
        }
        .leh-dest-overlay-card:hover .leh-dest-overlay-img {
          transform: scale(1.08);
        }
        .leh-dest-gradient {
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0) 100%);
        }
        .leh-dest-name-overlay {
          position: absolute;
          bottom: 12px;
          left: 12px;
          right: 12px;
          color: #ffffff;
          font-weight: 700;
          font-size: 13px;
          margin-bottom: 0;
          text-shadow: 0 1px 2px rgba(0,0,0,0.5);
          text-align: left;
        }
        /* International Destination Card */
        .leh-intl-card {
          flex: 0 0 auto;
          width: 160px;
          text-align: left;
          cursor: pointer;
        }
        .leh-intl-img-frame {
          width: 100%;
          height: 190px;
          border-radius: 8px;
          overflow: hidden;
          position: relative;
          box-shadow: 0 2px 6px rgba(0,0,0,0.05);
          margin-bottom: 8px;
        }
        .leh-intl-card:hover .leh-dest-overlay-img {
          transform: scale(1.08);
        }
        .leh-intl-name {
          font-weight: 700;
          color: #333333;
          font-size: 13px;
          margin-bottom: 2px;
        }
        .leh-intl-price {
          color: #666666;
          font-size: 11px;
        }
      

/* From src/pages/holidays/HolidayListing.jsx */

        .fixed-customise-trip-btn {
          position: fixed;
          bottom: 30px;
          right: 30px;
          background: #0061ae;
          color: #ffffff !important;
          font-weight: 700;
          font-size: 13px;
          padding: 12px 22px;
          border-radius: 50px;
          border: 0;
            z-index: 9999;
          display: flex;
          align-items: center;
          cursor: pointer;
          transition: all 0.3s ease;
          outline: none !important;
        }
        .fixed-customise-trip-btn:hover {
          transform: scale(1.05) translateY(-2px);
        }
        .customise-form-input {
          border: 1px solid #ced4da !important;
          border-radius: 6px !important;
          padding: 10px 12px !important;
          transition: border-color 0.25s ease;
        }
        .customise-form-input:focus {
          border-color: #7b2cbf !important;
          box-shadow: 0 0 0 0.2rem rgba(123, 44, 191, 0.25) !important;
        }
      

/* From src/pages/Home.jsx */

        .leh-carousel-section {
          background: #ffffff;
          padding: 24px;
          border-radius: 8px;
          border: 1px solid #e7e7e7;
          margin-bottom: 24px;
          position: relative;
        }
        .leh-carousel-header {
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-bottom: 20px;
        }
        .leh-carousel-title {
          font-weight: 850;
          color: #000000;
          font-size: 22px;
          margin-bottom: 2px;
        }
        .leh-carousel-subtitle {
          color: #666666;
          font-size: 13px;
          margin-bottom: 0;
        }
        .leh-scroll-btn-group {
          display: flex;
          gap: 8px;
        }
        .leh-scroll-btn {
          width: 32px;
          height: 32px;
          border-radius: 50%;
          border: 1px solid # 0061ae;
          background: #ffffff;
          color: # 0061ae;
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          transition: all 0.2s ease;
          outline: none !important;
        }
        .leh-scroll-btn:hover {
          background: # 0061ae;
          color: #ffffff;
        }
        .leh-carousel-container {
          display: flex;
          overflow-x: auto;
          gap: 16px;
          padding-bottom: 8px;
          scroll-behavior: smooth;
        }
        .leh-carousel-container::-webkit-scrollbar {
          display: none;
        }
        .leh-carousel-container {
          -ms-overflow-style: none;
          scrollbar-width: none;
        }
        /* MMT-Style Recently Viewed Card */
        .leh-viewed-card {
          flex: 0 0 auto;
          width: 280px;
          border: 1px solid #e7e7e7;
          border-radius: 8px;
          background: #ffffff;
          padding: 16px;
          box-shadow: 0 2px 6px rgba(0,0,0,0.04);
          transition: all 0.2s ease;
          position: relative;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          text-align: left;
        }
        .leh-viewed-card:hover {
          transform: translateY(-2px);
          box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        /* MMT-Style Destination overlay card */
        .leh-dest-overlay-card {
          flex: 0 0 auto;
          width: 140px;
          height: 190px;
          border-radius: 8px;
          overflow: hidden;
          position: relative;
          cursor: pointer;
          box-shadow: 0 2px 6px rgba(0,0,0,0.05);
          transition: all 0.2s ease;
        }
        .leh-dest-overlay-card:hover {
          transform: translateY(-3px);
          box-shadow: 0 4px 12px rgba(0,0,0,0.12);
        }
        .leh-dest-overlay-img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.3s ease;
        }
        .leh-dest-overlay-card:hover .leh-dest-overlay-img {
          transform: scale(1.08);
        }
        .leh-dest-gradient {
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0) 100%);
        }
        .leh-dest-name-overlay {
          position: absolute;
          bottom: 12px;
          left: 12px;
          right: 12px;
          color: #ffffff;
          font-weight: 700;
          font-size: 13px;
          margin-bottom: 0;
          text-shadow: 0 1px 2px rgba(0,0,0,0.5);
          text-align: left;
        }
        /* International Destination Card */
        .leh-intl-card {
          flex: 0 0 auto;
          width: 160px;
          text-align: left;
          cursor: pointer;
        }
        .leh-intl-img-frame {
          width: 100%;
          height: 190px;
          border-radius: 8px;
          overflow: hidden;
          position: relative;
          box-shadow: 0 2px 6px rgba(0,0,0,0.05);
          margin-bottom: 8px;
        }
        .leh-intl-card:hover .leh-dest-overlay-img {
          transform: scale(1.08);
        }
        .leh-intl-name {
          font-weight: 700;
          color: #333333;
          font-size: 13px;
          margin-bottom: 2px;
        }
        .leh-intl-price {
          color: #666666;
          font-size: 11px;
        }
      

/* Brand Custom Primary Color override */
.text-brand-primary {
  color: #0061ae !important;
}

/* Global Breadcrumb Font Size & Typography Unification */
.leh-style-auto-1061,
.pkg-fs-12,
.breadcrumb,
.breadcrumb-item,
.breadcrumb-item a,
.breadcrumb-item span {
  font-size: 12px !important;
  font-family: 'Lato', sans-serif !important;
}

.leh-style-auto-1062 {
  font-size: 11px !important;
  margin: 0 2px !important;
}

/* Global Button Theme Override to Solid Brand Blue (#0061ae) */
.btn-primary,
.btn-premium-primary,
.btn-orange-cta,
.btn-booking-action,
.leh-search-btn-floating,
.pkg-btn-blue-grad,
.btn-orange,
.btn-warning,
.leh-style-auto-1060,
.fixed-customise-trip-btn,
.callback-modal-submit-btn,
.premium-card-badge {
  background: #0061ae !important;
  background-color: #0061ae !important;
  border-color: #0061ae !important;
  color: #ffffff !important;
  background-image: none !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-premium-primary:hover,
.btn-premium-primary:focus,
.btn-premium-primary:active,
.btn-orange-cta:hover,
.btn-booking-action:hover,
.leh-search-btn-floating:hover,
.pkg-btn-blue-grad:hover,
.btn-orange:hover,
.btn-warning:hover,
.leh-style-auto-1060:hover,
.fixed-customise-trip-btn:hover,
.callback-modal-submit-btn:hover {
  background: #004c8c !important;
  background-color: #004c8c !important;
  border-color: #004c8c !important;
  color: #ffffff !important;
  background-image: none !important;
}

.btn-outline-primary {
  color: #0061ae !important;
  border-color: #0061ae !important;
  background-color: transparent !important;
  background-image: none !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background-color: #0061ae !important;
  border-color: #0061ae !important;
  color: #ffffff !important;
}

.btn-premium-secondary {
  background: #0061ae !important;
  background-color: #0061ae !important;
  border-color: #0061ae !important;
  color: #ffffff !important;
  background-image: none !important;
}

.btn-premium-secondary:hover {
  background-color: #004c8c !important;
  border-color: #004c8c !important;
  color: #ffffff !important;
}

/* Floating Scroll to Top Arrow Button */
.fixed-scroll-to-top-btn {
  position: fixed;
  bottom: 100px; /* Positioned above the customise trip button at bottom: 30px */
  right: 30px;
  width: 44px;
  height: 44px;
  background-color: #0061ae !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
  outline: none !important;
}

.fixed-scroll-to-top-btn:hover {
  background-color: #004c8c !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 97, 174, 0.3);
}
