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

:root {
  --primary-color: #0D6EFD;
  --primary-rgb: 13, 110, 253;
  --secondary-color: #FF6B00;
  --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: #008cff;
  --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 #0055ff;
}

.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, #008cff, #0055ff);
  color: var(--white) !important;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  padding: 0.95rem 6.5rem;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 140, 255, 0.4);
  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);
  box-shadow: 0 12px 30px rgba(0, 140, 255, 0.55);
}

/* 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: #0066cc;
  color: var(--white) !important;
  border-color: #0066cc;
  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: #0066cc;
  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: #0066cc;
}

/* 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: #0055ff;
  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: 105px;
  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: #0055ff;
  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: #0055ff;
  font-size: 2.1rem;
  letter-spacing: 0.5px;
}

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

.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: #0055ff;
  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: #0055ff;
}

.leh-style-auto-1061 {
  font-size: 0.8rem;
}

.leh-style-auto-1062 {
  font-size: 0.65rem;
}

.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: #0055ff !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: #0055ff;
  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: #0055ff;
  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: #0055ff;
  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 #0055ff;
}

.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: #0055ff !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: #0055ff;
  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: #0055ff;
}

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

.leh-style-auto-1114 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #0055ff 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: #0055ff;
  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 #0055ff;
  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: #0055ff;
}

.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 #0055ff;
  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 #0d6efd;
}

.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: #0055ff;
}

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

.leh-style-auto-1176 {
  font-size: 2rem;
  color: #0055ff;
  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;
}

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

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

.leh-style-auto-1193 {
  background: linear-gradient(135deg, #0055ff 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: #0055ff;
  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: #0055ff;
  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: #0055ff;
  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: #0055ff;
  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, #0055ff 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;
}
