/* =====================================================
   SASTITAXI.COM — Component Styles
   100% Pixel-Perfect Reusable Component Classes
   ===================================================== */

/* ─────────────────────────────────────────────────────
   1. HEADER & NAVBAR (FIXED HEADER)
   ───────────────────────────────────────────────────── */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  padding: 14px 0;
  transition: all 0.3s ease;
  background: linear-gradient(180deg, rgba(6, 19, 41, 0.85) 0%, rgba(6, 19, 41, 0.3) 70%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.fixed-header.navbar-scrolled {
  background: var(--color-dark-navy);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

/* Brand / Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-badge {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #ffd700 0%, #f5c518 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #061329;
  font-size: 1.25rem;
  box-shadow: 0 0 15px rgba(245, 197, 24, 0.4);
  flex-shrink: 0;
}

.logo-brand-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.logo-brand-text span {
  color: var(--color-primary);
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--color-primary);
  font-style: italic;
  display: block;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Navigation Links */
.nav-link-custom {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 14px !important;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: #ffffff !important;
}

.nav-link-custom.active::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 14px;
  right: 14px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}

/* Dropdown arrow */
.nav-link-custom.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.35em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

/* Right Nav Info */
.header-support {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  margin-right: 15px;
}

.header-support-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 0.95rem;
}

.header-support-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-support-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-support-phone {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
}

/* Login Button */
.btn-login-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-pill);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-login-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Hamburger Toggler */
.navbar-toggler-custom {
  border: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.25rem;
}

/* =====================================================
   USER PROFILE DROPDOWN (PREMIUM UI)
   ===================================================== */
.user-dropdown-btn {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.18) 0%, rgba(245, 197, 24, 0.28) 100%);
  border: 1px solid rgba(245, 197, 24, 0.45);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.user-dropdown-btn:hover,
.user-dropdown-btn:focus,
.user-header-dropdown.show .user-dropdown-btn {
  background: linear-gradient(135deg, #ffd700 0%, #f5c518 100%);
  border-color: #ffd700;
  color: #061329;
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.35);
  transform: translateY(-1px);
}

.user-avatar-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.25);
  color: #f5c518;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.user-dropdown-btn:hover .user-avatar-badge,
.user-header-dropdown.show .user-avatar-badge {
  background: #061329;
  color: #f5c518;
}

.user-btn-name {
  max-width: 120px;
  letter-spacing: -0.01em;
}

.user-btn-chevron {
  font-size: 0.68rem;
  transition: transform 0.25s ease;
  opacity: 0.85;
}

.user-header-dropdown.show .user-btn-chevron {
  transform: rotate(180deg);
}

/* Dropdown Menu Container */
.user-dropdown-menu {
  min-width: 270px;
  background: #ffffff !important;
  border-radius: 18px !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 20px 45px -10px rgba(6, 19, 41, 0.28), 0 4px 16px rgba(0, 0, 0, 0.08) !important;
  overflow: hidden;
  animation: dropdownFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

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

/* User Card Header Inside Dropdown */
.user-info-card {
  background: linear-gradient(135deg, #09152b 0%, #162440 100%);
  border-bottom: 2px solid rgba(245, 197, 24, 0.3);
  position: relative;
  overflow: hidden;
}

.user-info-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.user-card-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.25) 0%, rgba(255, 215, 0, 0.45) 100%);
  border: 1.5px solid rgba(245, 197, 24, 0.5);
  color: #f5c518;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.user-role-badge {
  display: inline-block;
  padding: 3px 8px;
  background: rgba(245, 197, 24, 0.15);
  color: #f5c518;
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 20px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.user-card-name {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.user-card-phone {
  display: flex;
  align-items: center;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}

.text-warning-gold {
  color: #f5c518;
}

/* User Menu List & Items */
.user-menu-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
  margin: 0;
}

.user-menu-item.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none !important;
  background: transparent !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  color: #1e293b !important;
  white-space: nowrap;
}

.user-menu-item.dropdown-item:hover,
.user-menu-item.dropdown-item:focus {
  background: #f8fafc !important;
  transform: translateX(3px);
  color: #0f172a !important;
}

.menu-item-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  transition: color 0.2s ease;
}

.user-menu-item.dropdown-item:hover .menu-item-label {
  color: #0f172a;
}

.menu-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.user-menu-item.dropdown-item:hover .menu-icon-box {
  transform: scale(1.1);
}

/* Icon Box Color Schemes */
.icon-partner {
  background: rgba(245, 197, 24, 0.15);
  color: #d97706;
}

.icon-bookings {
  background: rgba(14, 165, 233, 0.12);
  color: #0284c7;
}

.icon-shared {
  background: rgba(124, 58, 237, 0.12);
  color: #7c3aed;
}

.icon-private {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.icon-logout {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

/* Menu Divider */
.user-menu-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 6px 8px;
}

/* Logout Specific Hover */
.user-menu-item.menu-item-logout.dropdown-item:hover {
  background: rgba(239, 68, 68, 0.08) !important;
}

.user-menu-item.menu-item-logout.dropdown-item:hover .menu-item-label {
  color: #dc2626;
}

/* =====================================================
   SERVICES DROPDOWN (PREMIUM UI)
   ===================================================== */
.services-dropdown-menu {
  min-width: 300px !important;
  background: rgba(11, 19, 41, 0.96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45) !important;
  padding: 8px !important;
  animation: dropdownFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-menu-item.dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none !important;
  background: transparent !important;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: normal;
}

.service-menu-item.dropdown-item:hover,
.service-menu-item.dropdown-item:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  transform: translateX(4px);
}

.service-item-content {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.service-item-title {
  font-size: 0.86rem;
  font-weight: 600;
  color: #ffffff;
  transition: color 0.2s ease;
}

.service-menu-item.dropdown-item:hover .service-item-title {
  color: #ffd700;
}

.service-item-desc {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
  transition: color 0.2s ease;
}

.service-menu-item.dropdown-item:hover .service-item-desc {
  color: rgba(255, 255, 255, 0.85);
}

.icon-tour {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
}

.icon-airport {
  background: rgba(14, 165, 233, 0.15);
  color: #38bdf8;
}

.icon-hotel {
  background: rgba(244, 63, 94, 0.15);
  color: #fb7185;
}

/* =====================================================
   MOBILE BOTTOM STICKY NAVIGATION BAR (PREMIUM UI)
   ===================================================== */
.mobile-bottom-nav-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  height: 62px;
  background: rgba(6, 19, 41, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  padding: 4px 6px 6px;
}

.mobile-nav-container {
  height: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.65);
  padding: 3px 0;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
}

.mobile-nav-icon-wrap {
  width: 32px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  position: relative;
  transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-nav-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

/* Active & Hover States */
.mobile-nav-item.active,
.mobile-nav-item:hover {
  color: #ffd700;
}

.mobile-nav-item.active .mobile-nav-icon-wrap {
  color: #ffd700;
  transform: translateY(-2px) scale(1.1);
}

.mobile-nav-item.active .mobile-nav-label {
  color: #ffffff;
  font-weight: 700;
}

/* Glow Pill Indicator for Active Item */
.mobile-nav-item.active::before {
  content: '';
  position: absolute;
  top: -4px;
  width: 20px;
  height: 3px;
  background: linear-gradient(135deg, #ffd700 0%, #f5c518 100%);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(245, 197, 24, 0.6);
}

.mobile-nav-item:active {
  transform: scale(0.92);
}

/* Subtle Notification Badge Dot */
.mobile-nav-badge-dot {
  position: absolute;
  top: 2px;
  right: 4px;
  width: 7px;
  height: 7px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.8);
}





/* ─────────────────────────────────────────────────────
   2. HERO SECTION & TYPOGRAPHY
   ───────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  z-index: 100;
  overflow: visible !important;
  min-height: clamp(550px, 85vh, 850px);
  padding-top: clamp(80px, 9vh, 120px);
  padding-bottom: clamp(50px, 8vh, 90px);
  background-image: linear-gradient(90deg,
      rgba(6, 19, 41, 0.92) 0%,
      rgba(6, 19, 41, 0.78) 35%,
      rgba(6, 19, 41, 0.40) 60%,
      rgba(6, 19, 41, 0.10) 80%,
      rgba(6, 19, 41, 0.0) 100%),
    url('../hero-bg.png');
  background-size: cover;
  background-position: 60% center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-content {
  margin-bottom: 24px;
}

.hero-tagline-script {
  font-family: 'Caveat', cursive;
  font-size: 2.3rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight-text {
  color: var(--color-primary);
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
  line-height: 1.5;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}


/* ─────────────────────────────────────────────────────
   3. FLOATING BOOKING CARD WIDGET
   ───────────────────────────────────────────────────── */
.booking-widget-container {
  /* max-width: 1140px; */
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 200;
  overflow: visible !important;
}

/* Tabs */
.booking-tabs-row {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(15, 25, 45, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px 16px 0 0;
  padding: 6px 10px 0;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: -1px;
}

.booking-tabs-row::-webkit-scrollbar {
  display: none;
}

.booking-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-radius: 10px 10px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.booking-tab-btn i {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.booking-tab-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.booking-tab-btn.active {
  background: #ffffff;
  color: #2563eb;
  font-weight: 700;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
}

.booking-tab-btn.active i {
  color: #2563eb;
  background: #eff6ff;
  padding: 4px 6px;
  border-radius: 6px;
}

/* Booking Card Box */
.booking-card-box {
  background: #ffffff;
  border-radius: 0 16px 16px 16px;
  padding: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  position: relative;
  z-index: 200;
  overflow: visible !important;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 2.2fr 44px 2.2fr 1.8fr 1.8fr auto;
  gap: 12px;
  align-items: center;
  overflow: visible !important;
}

.booking-input-group {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 300;
  overflow: visible !important;
}

.booking-input-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.input-icon-field {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-field i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.95rem;
  pointer-events: none;
}

.input-icon-field input,
.input-icon-field select {
  width: 100%;
  padding: 12px 14px 12px 38px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #0f172a;
  background-color: #f8fafc;
  outline: none;
  transition: all 0.2s ease;
}

/* ── Sharing Tour Grid Layout Overrides (Desktop Only) ── */
@media (min-width: 992px) {
  .booking-form-grid.booking-form-grid--sharing-tour {
    grid-template-columns: 3.2fr 1.6fr 1.8fr auto !important;
    gap: 16px;
  }

  .border-start-lg {
    border-left: 1px solid #e2e8f0 !important;
  }

  .preferred-table-header.preferred-table-header--sharing,
  .preferred-option-card.preferred-option-card--sharing .card-grid-container {
    grid-template-columns: 220px 1.2fr 180px 220px !important;
    gap: 20px !important;
    align-items: center;
  }
}

.preferred-option-card.preferred-option-card--sharing {
  padding: 22px 24px !important;
  background-color: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(13, 27, 42, 0.05), 0 1px 3px rgba(13, 27, 42, 0.03);
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.preferred-option-card.preferred-option-card--sharing.card-featured {
  border: 2px solid #f5c518 !important;
  box-shadow: 0 8px 30px rgba(245, 197, 24, 0.15), 0 2px 8px rgba(13, 27, 42, 0.04);
}

.preferred-option-card.preferred-option-card--sharing .col-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.preferred-option-card.preferred-option-card--sharing .card-actions-vstack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}

.preferred-option-card.preferred-option-card--sharing .btn-primary-cta {
  width: 100%;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 800;
  border-radius: 10px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.preferred-option-card.preferred-option-card--sharing .btn-outline-details {
  width: 100%;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  padding: 8px 14px;
  color: #0d1b2a;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.preferred-option-card.preferred-option-card--sharing .btn-outline-details:hover {
  background: #ffffff;
  border-color: #0d1b2a;
  color: #0d1b2a;
  box-shadow: 0 2px 8px rgba(13, 27, 42, 0.08);
  transform: translateY(-1px);
}

/* ── Full Cover Display Itinerary Modal Styling ── */
#sharingTourItineraryModal.modal {
  padding: 0 !important;
}

#sharingTourItineraryModal .modal-dialog.modal-fullscreen {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  margin: 0;
}

#sharingTourItineraryModal .modal-content {
  border-radius: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

#sharingTourItineraryModal .modal-body {
  flex: 1 1 auto;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f1f5f9;
}

#sharingTourItineraryModal .btn-close-white {
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

#sharingTourItineraryModal .btn-close-white:hover {
  opacity: 1;
  transform: scale(1.15) rotate(90deg);
}

#sharingTourItineraryModal .modal-body::-webkit-scrollbar {
  width: 6px;
}

#sharingTourItineraryModal .modal-body::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 10px;
}

#sharingTourItineraryModal .inclusions-checklist {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

#sharingTourItineraryModal .inclusions-checklist li {
  font-size: 0.85rem;
  color: #334155;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

#sharingTourItineraryModal .inclusions-checklist li:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════
   SEAT SELECTION MODAL — Car Diagram & Seat Picker
   ═══════════════════════════════════════════════════════════ */

/* Car diagram container */
.seat-car-diagram {
  width: 200px;
  position: relative;
  transition: width 0.3s ease;
}

.seat-car-diagram.seat-car-diagram-bolero {
  width: 330px;
}

/* Car body wrapper (SVG + overlay) */
.seat-car-body {
  position: relative;
  width: 200px;
  margin: 0 auto;
  transition: width 0.3s ease;
}

.seat-car-body.seat-car-bolero {
  width: 330px;
}

/* Bolero popup image (right-side up, normal orientation) */
.seat-car-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.22));
}

/* SVG car outline */
.seat-car-svg {
  width: 200px;
  height: auto;
  display: block;
}

/* Seat buttons overlaid on top of SVG */
.seat-grid-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 62px 28px 56px;
}

/* Bolero 10-seater overlay styling: aligned strictly inside roof cabin */
.seat-grid-bolero {
  padding: 184px 48px 24px;
  gap: 14px;
  justify-content: flex-start;
}

/* Each row of seats */
.seat-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.seat-row-4 {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.seat-grid-bolero .seat-btn {
  width: 48px;
  height: 50px;
  padding: 4px 2px;
  border-radius: 10px;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  flex: none;
}

.seat-grid-bolero .seat-num {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
}

.seat-grid-bolero .seat-price-tag {
  font-size: 0.54rem;
  font-weight: 800;
  color: #10b981;
}

.seat-grid-bolero .seat-driver {
  width: 48px;
  height: 50px;
  background: #0d1b2a;
  border-color: #0d1b2a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Individual seat button */
.seat-btn {
  width: 58px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid #cbd5e1;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.seat-btn:hover:not(.seat-driver):not(.seat-booked) {
  border-color: #f5c518;
  background: #fffbeb;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.35);
}

/* Seat number label */
.seat-num {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

/* Price tag under seat number */
.seat-price-tag {
  font-size: 0.55rem;
  font-weight: 700;
  color: #10b981;
  line-height: 1;
  margin-top: 2px;
}

/* Available state (default) */
.seat-btn.seat-available {
  border-color: #cbd5e1;
  background: #ffffff;
}

/* Selected state */
.seat-btn.seat-selected {
  border-color: #d97706;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  box-shadow: 0 4px 14px rgba(245, 197, 24, 0.45);
  transform: scale(1.05);
}

.seat-btn.seat-selected .seat-num {
  color: #78350f;
}

.seat-btn.seat-selected .seat-price-tag {
  color: #92400e;
}

/* Driver seat (non-interactive) */
.seat-btn.seat-driver {
  background: #0d1b2a;
  border-color: #0d1b2a;
  cursor: default;
  box-shadow: 0 2px 8px rgba(13, 27, 42, 0.3);
}

.seat-btn.seat-driver i {
  color: #f5c518;
  font-size: 1.1rem;
}

/* Booked seat (non-interactive) */
.seat-btn.seat-booked {
  border-color: #ef4444;
  background: #fee2e2;
  cursor: not-allowed;
  opacity: 0.7;
}

.seat-btn.seat-booked .seat-num {
  color: #ef4444;
}

/* Legend dot */
.seat-legend-dot {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  flex-shrink: 0;
}

/* Seat select pulse animation */
@keyframes seatSelectPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.6);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(245, 197, 24, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(245, 197, 24, 0);
  }
}

.seat-btn.seat-selected {
  animation: seatSelectPulse 0.5s ease-out;
}

/* Proceed button enabled state */
#seatProceedBtn:not([disabled]) {
  background: linear-gradient(135deg, #f5c518 0%, #fbbf24 100%) !important;
  color: #0d1b2a !important;
  cursor: pointer !important;
  opacity: 1 !important;
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.4);
}

#seatProceedBtn:not([disabled]):hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 197, 24, 0.5);
}

#seatProceedBtn:not([disabled]):active {
  transform: scale(0.98);
}

/* ── Ultra-Modern Mobile Responsive Card System (Matching User Screenshot) ── */
.mobile-card-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  margin-bottom: 20px;
}


.mobile-card-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 12px;
}

.station-pill-btn {
  background: #0d1b2a;
  color: #f5c518;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 10px 18px;
  border-radius: 14px;
  letter-spacing: 0.04em;
  font-family: 'Outfit', sans-serif;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.25), 0 2px 8px rgba(13, 27, 42, 0.18);
}

.route-progress-line-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 14px;
}

.route-progress-line-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 8px;
  right: 8px;
  height: 3px;
  background: linear-gradient(90deg, #f5c518 0%, #10b981 100%);
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 2px;
}

.route-car-icon-box {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border: 2px solid #f5c518;
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(245, 197, 24, 0.25);
}

.mobile-pickup-drop-titles {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 12px;
}

.mobile-pickup-drop-titles .title-left {
  text-align: left;
}

.mobile-pickup-drop-titles .title-right {
  text-align: right;
}

.mobile-pickup-drop-titles .city-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

.mobile-pickup-drop-titles .sub-name {
  font-size: 0.8rem;
  color: #64748b;
}

.mobile-time-duration-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  width: 100%;
  margin-bottom: 14px;
  font-size: 0.8rem;
  color: #334155;
  font-weight: 600;
}

.mobile-time-duration-strip>div {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.teal-badge-time {
  background: #10b981;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 6px;
  margin-left: 4px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.25);
}

.mobile-inclusions-car-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px dashed rgba(245, 197, 24, 0.4);
  margin-bottom: 14px;
}

.mobile-inclusions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  color: #334155;
  font-weight: 600;
}

.mobile-inclusions-list li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-car-frame {
  text-align: center;
}

.mobile-car-frame img {
  height: 65px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
}

.mobile-car-frame .car-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 4px;
}

.mobile-bottom-action-banner {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2d45 100%);
  color: #ffffff;
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-shadow: 0 4px 16px rgba(13, 27, 42, 0.3), inset 0 -2px 0 rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(245, 197, 24, 0.2);
}

.mobile-bottom-action-banner:hover {
  box-shadow: 0 6px 22px rgba(13, 27, 42, 0.4), inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

.mobile-bottom-action-banner:active {
  transform: scale(0.98);
}

.mobile-bottom-action-banner .seats-left-text {
  color: #e2e8f0;
}

.mobile-bottom-action-banner .starts-price-text {
  color: #f5c518;
}

/* ── Mobile Card: Unified Website Brand Theme ── */
/* Yellow (#f5c518) + Dark Navy (#0d1b2a) + Teal Green (#10b981) */

@media (max-width: 991px) {
  .preferred-option-card {
    border-color: #f5c518;
    box-shadow: 0 6px 24px rgba(245, 197, 24, 0.15);
  }

  .preferred-option-card.card-featured {
    border-color: #f5c518;
    box-shadow: 0 8px 30px rgba(245, 197, 24, 0.25);
  }
}

/* ── Ultra-Luxury B2C Login OTP Modal WOW Styling ── */
#b2cLoginModal.modal,
#bookCabModal.modal {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding-left: 14px !important;
  padding-right: 14px !important;
}

#b2cLoginModal.modal:not(.show),
#bookCabModal.modal:not(.show) {
  display: none !important;
}

#b2cLoginModal .modal-dialog,
#bookCabModal .modal-dialog {
  margin: auto !important;
  width: 100% !important;
  max-width: 440px !important;
}

#b2cLoginModal .modal-content {
  border-radius: 28px !important;
  box-shadow: 0 30px 90px rgba(6, 19, 41, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

#b2cLoginModal .input-group:focus-within {
  border-color: #f5c518 !important;
  box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.2) !important;
}

#b2cLoginModal .otp-input:focus {
  border-color: #f5c518 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.25) !important;
  outline: none;
}

#btnSendOtp {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#btnSendOtp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(245, 197, 24, 0.5) !important;
}

#btnSendOtp:active {
  transform: translateY(0);
}

.mobile-bottom-action-banner .seats-left-text {
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
}

.mobile-bottom-action-banner .starts-price-text {
  font-weight: 800;
  font-size: 1.15rem;
  font-family: 'Outfit', sans-serif;
}

/* ── Ultra-Premium Luxury Sharing Tour Card Component Styles (WOW Factor) ── */
.sharing-table-header-wow {
  background: linear-gradient(135deg, #061329 0%, #1e293b 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 24px -4px rgba(6, 19, 41, 0.25) !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.sharing-tour-row-card-wow {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 22px !important;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
}

.sharing-tour-row-card-wow:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(37, 99, 235, 0.16) !important;
  border-color: #3b82f6 !important;
}

.hotel-img-wrapper-wow {
  height: 130px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.hotel-img-wrapper-wow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sharing-tour-row-card-wow:hover .hotel-img-wrapper-wow img {
  transform: scale(1.08);
}

.badge-category-budget {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.badge-category-standard {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.vehicle-platform-box {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px;
  transition: background 0.3s ease;
}

.sharing-tour-row-card-wow:hover .vehicle-platform-box {
  background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
  border-color: #bae6fd;
}

.price-royal-gradient {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
}

.btn-select-option-wow {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 12px 20px !important;
  box-shadow: 0 6px 18px -2px rgba(16, 185, 129, 0.35) !important;
  transition: all 0.25s ease !important;
}

.btn-select-option-wow:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 24px -2px rgba(16, 185, 129, 0.5) !important;
  color: #ffffff !important;
}

.divider-vertical-lg {
  border-left: 1px solid #f1f5f9;
}

@media (max-width: 991px) {
  .divider-vertical-lg {
    border-left: none !important;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
  }
}



.custom-tour-select {
  height: 48px;
  padding: 10px 14px 10px 38px !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 10px !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  background-color: #ffffff !important;
  cursor: pointer;
}

.guests-custom-field {
  position: relative;
  display: flex;
  align-items: center;
}

.guests-custom-field .guests-display-box {
  height: 48px;
  padding: 10px 32px 10px 38px !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 10px !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  background-color: #ffffff !important;
  cursor: pointer;
}

.guests-custom-field .chevron-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.input-icon-field input[type="date"] {
  cursor: pointer;
}

.input-icon-field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: opacity(0.7);
  transition: filter 0.2s ease;
  margin-right: -2px;
}

.input-icon-field input[type="date"]::-webkit-calendar-picker-indicator:hover {
  filter: opacity(1);
}

.input-icon-field input:focus,
.input-icon-field select:focus {
  border-color: var(--color-accent-blue);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* Custom Location Autocomplete Dropdown */
.location-autocomplete-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.28);
  z-index: 99999 !important;
  overflow: hidden;
  max-height: 240px;
  overflow-y: auto;
  padding: 6px 0;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1e293b;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.location-item i {
  color: #2563eb;
  font-size: 0.88rem;
  width: 16px;
  text-align: center;
}

.location-item:hover,
.location-item.active {
  background: #eff6ff;
  color: #2563eb;
}

.location-item .sub-text {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-left: auto;
}

/* Location Swap Button */
.btn-swap-locations {
  width: 38px;
  height: 38px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 50%;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 2px;
  margin-top: 0;
  transition: all 0.25s ease;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-swap-locations:hover {
  background: #eff6ff;
  border-color: #2563eb;
  color: #2563eb;
  transform: rotate(180deg);
}

/* Est. Fare Box */
.fare-estimate-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fare-estimate-box label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.fare-val-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fare-amount {
  font-size: 1.45rem;
  font-weight: 800;
  color: #10b981;
}

.info-badge {
  width: 18px;
  height: 18px;
  background: #e2e8f0;
  color: #64748b;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
}

/* Book Now CTA Button (Compact & Sleek) */
.btn-book-cta {
  background: linear-gradient(135deg, #ffd700 0%, #f5c518 100%);
  border: none;
  border-radius: 10px;
  height: 48px;
  padding: 0 18px;
  color: #061329;
  font-size: 0.88rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(245, 197, 24, 0.35);
  transition: all 0.2s ease;
  margin-top: 18px;
  white-space: nowrap;
}

.btn-book-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.5);
  background: linear-gradient(135deg, #ffe033 0%, #f4be00 100%);
}

/* ── World-Class Executive Guests Popover ── */
.guests-custom-field {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.guests-custom-field .field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #f5c518;
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 10;
}

.guests-custom-field .guests-display-box {
  width: 100%;
  height: 48px;
  padding: 10px 32px 10px 38px !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 12px !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  background-color: #ffffff !important;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04) !important;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.guests-custom-field:hover .guests-display-box,
.guests-custom-field:focus-within .guests-display-box {
  border-color: #f5c518 !important;
  box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.25) !important;
}

.guests-custom-field .chevron-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}

/* ── Executive Popover Card Container ── */
.guests-popover-card {
  width: 340px !important;
  border-radius: 20px !important;
  border: 1px solid rgba(255, 215, 0, 0.35) !important;
  box-shadow: 0 25px 60px rgba(6, 19, 41, 0.35) !important;
  background: #ffffff !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
}

/* Counter Buttons */
.btn-counter-minus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #cbd5e1;
  background: #f8fafc;
  color: #0f172a;
  font-weight: 900;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-counter-minus:hover {
  background: #e2e8f0;
  border-color: #94a3b8;
  transform: scale(1.08);
}

.btn-counter-plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #ffd700 0%, #f5c518 100%);
  color: #061329;
  font-weight: 900;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.35);
  transition: all 0.15s ease;
}

.btn-counter-plus:hover {
  background: linear-gradient(135deg, #ffe033 0%, #f4be00 100%);
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(245, 197, 24, 0.5);
}

/* Trust Badges Strip */
.trust-badges-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-top: 35px;
  margin-bottom: 25px;
  flex-wrap: wrap;
  position: relative;
  z-index: 15;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.88rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.trust-badge-item i {
  color: var(--color-primary);
  font-size: 1rem;
}


/* ─────────────────────────────────────────────────────
   4. FEATURE BADGES GRID
   ───────────────────────────────────────────────────── */
.features-section {
  padding: 50px 0;
  margin-top: 45px;
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  z-index: 1;
}

.features-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 15px;
}

.feature-badge-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 5px;
}

.feature-circle-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-circle-icon.bg-light-blue {
  background: #eff6ff;
  color: #2563eb;
}

.feature-circle-icon.bg-light-green {
  background: #ecfdf5;
  color: #10b981;
}

.feature-circle-icon.bg-light-orange {
  background: #fff7ed;
  color: #f97316;
}

.feature-badge-card:hover .feature-circle-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature-badge-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.25;
}


/* ─────────────────────────────────────────────────────
   5. STATS COUNTER BANNER (NAVY BLUE CAPSULE)
   ───────────────────────────────────────────────────── */
.stats-section {
  padding: 35px 0 60px 0;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}

.stats-capsule-container {
  background: linear-gradient(135deg, #0b2a59 0%, #061836 100%);
  border-radius: 24px;
  padding: 30px 40px;
  box-shadow: 0 12px 35px rgba(11, 42, 89, 0.25);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.stat-metric-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(245, 197, 24, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.35rem;
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}


/* ─────────────────────────────────────────────────────
   6. SERVICES & DESTINATIONS & FLEET & FOOTER
   ───────────────────────────────────────────────────── */
.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-main-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
}

/* Destinations Cards */
.destination-card-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 260px;
  display: block;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.destination-card-item:hover {
  transform: translateY(-5px);
}

.destination-card-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.destination-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 19, 41, 0.9) 100%);
  padding: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.dest-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
}

.dest-price {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 600;
}

.dest-arrow {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

/* Fleet Cards */
.fleet-card-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.fleet-card-box:hover {
  border-color: var(--color-accent-blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.fleet-img-wrap {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.fleet-img-wrap img {
  max-height: 85px;
  object-fit: contain;
}

.fleet-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
}

.fleet-meta {
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 15px;
}

.fleet-rate {
  font-size: 1.2rem;
  font-weight: 800;
  color: #10b981;
}

/* Footer */
.footer-dark {
  background: #061329;
  color: #94a3b8;
  padding-top: 65px;
  padding-bottom: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.6;
}

.parent-company-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: 6px;
  color: #e2e8f0;
  font-size: 0.78rem;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.social-icon-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #061329;
  transform: translateY(-2px);
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-list li {
  margin-bottom: 10px;
}

.footer-link-list a {
  color: #94a3b8;
  font-size: 0.88rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-link-list a:hover {
  color: var(--color-primary);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-list i {
  color: var(--color-primary);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 0.7rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.contact-val {
  font-size: 0.88rem;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.contact-val:hover {
  color: var(--color-primary);
}

/* Footer Bottom Socket */
.footer-bottom-socket {
  padding-top: 10px;
}

.trust-socket-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
}

.trust-socket-badge i {
  color: var(--color-primary);
}

.payment-label {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 600;
}

.pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
}

.pay-chip i {
  color: var(--color-primary);
}

.footer-copyright-text {
  font-size: 0.8rem;
  color: #64748b;
}

.footer-link-list a:hover {
  color: var(--color-primary);
}

/* ══════════════════════════════════════════════════════════════
   EXACT SAME-TO-SAME PIXEL-PERFECT BOOKING & SEAT WIDE MODAL (COMPACT)
   ══════════════════════════════════════════════════════════════ */
/* ============================================================================== */
/* CAR CATEGORY FILTER & SORT CONTROLS                                             */
/* ============================================================================== */
.category-filter-container {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.category-filter-pills-scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.category-filter-pills-scroll::-webkit-scrollbar {
  height: 4px;
}

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

.cat-filter-pill {
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  color: #334155;
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  user-select: none;
}

.cat-filter-pill:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #091834;
}

.cat-filter-pill.active {
  background: #091834 !important;
  border-color: #091834 !important;
  color: #ffffff !important;
  box-shadow: 0 3px 8px rgba(9, 24, 52, 0.25);
}

.cat-filter-pill .cat-count-badge {
  background: rgba(0, 0, 0, 0.08);
  color: inherit;
  font-size: 0.72rem;
  padding: 1px 6px;
  border-radius: 10px;
  font-weight: 700;
}

.cat-filter-pill.active .cat-count-badge {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.sort-select-compact {
  border-radius: 8px !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  height: 32px !important;
  padding: 2px 28px 2px 8px !important;
  border-color: #cbd5e1 !important;
  background-color: #f8fafc !important;
}

.sort-select-compact:focus {
  border-color: #2563eb !important;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15) !important;
}

.exact-booking-modal .modal-dialog {
  max-width: 520px;
  margin: 1rem auto;
  transition: max-width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.exact-booking-modal.wide-unified-modal .modal-dialog {
  max-width: 880px;
}

.exact-booking-modal.success-view-modal .modal-dialog {
  max-width: 620px;
}

.exact-booking-modal .modal-content {
  border-radius: 20px !important;
  border: none !important;
  box-shadow: 0 20px 50px -12px rgba(9, 24, 52, 0.35) !important;
  overflow: hidden;
  background: #ffffff;
}

/* Modal Left Pane (Seat Selection & Visuals) */
.wide-modal-left-pane {
  background: #f8fafc;
  border-right: 1.5px solid #e2e8f0;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Modal Right Pane (Form & Checkout) */
.wide-modal-right-pane {
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .wide-modal-left-pane {
    border-right: none;
    border-bottom: 1.5px solid #e2e8f0;
    padding: 14px;
  }

  .wide-modal-right-pane {
    padding: 14px;
  }

  .exact-booking-modal.wide-unified-modal .modal-dialog {
    max-width: 95%;
    margin: 0.5rem auto;
  }
}

/* Compact Header */
.exact-modal-header {
  background: #091834 !important;
  color: #ffffff !important;
  padding: 12px 18px !important;
  border-bottom: none !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.exact-hdr-icon-tile {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  box-shadow: 0 3px 8px rgba(37, 99, 235, 0.3);
  flex-shrink: 0;
}

.exact-modal-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 !important;
  letter-spacing: -0.2px;
}

.exact-modal-subtitle {
  font-size: 0.76rem !important;
  color: #94a3b8 !important;
  margin-top: 1px;
}

.exact-modal-close-btn {
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 1.15rem !important;
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
  padding: 4px;
}

.exact-modal-close-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Route Strip (Left Column) */
.exact-seat-route-strip {
  background: #091834;
  border-radius: 10px;
  padding: 6px 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.exact-route-city-code {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.exact-route-pin-lbl {
  font-size: 0.65rem;
  color: #eab308;
  font-weight: 600;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.exact-route-progress-bar {
  flex-grow: 1;
  margin: 0 12px;
  display: flex;
  align-items: center;
}

.exact-route-line-active {
  flex: 1;
  height: 2px;
  background: #eab308;
  border-radius: 2px;
}

.exact-route-line-inactive {
  flex: 1;
  height: 2px;
  background: #475569;
  border-radius: 2px;
}

/* Capacity Strip */
.exact-capacity-pill {
  background: #f0f7ff;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  padding: 4px 12px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.76rem;
}

/* Vehicle Cutaway Overlay (Compact) */
.seat-car-diagram.seat-car-diagram-bolero {
  width: 245px !important;
  margin: 0 auto;
  position: relative;
}

.seat-car-body.seat-car-bolero {
  width: 245px !important;
  position: relative;
}

.seat-car-img {
  width: 100%;
  height: auto;
  display: block;
}

.seat-grid-bolero {
  position: absolute;
  top: 142px;
  left: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0 !important;
}

.seat-grid-bolero .seat-row-4 {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}

.seat-grid-bolero .seat-btn {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 1px;
  flex: none;
}

.seat-grid-bolero .seat-btn:hover:not(.seat-driver):not(.seat-booked) {
  border-color: #f59e0b;
  background: #fffbeb;
  transform: translateY(-1px);
}

.seat-grid-bolero .seat-num {
  font-size: 0.88rem;
  font-weight: 800;
  color: #091834;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
}

.seat-grid-bolero .seat-price-tag {
  font-size: 0.58rem;
  font-weight: 700;
  color: #059669;
  line-height: 1;
  margin-top: 1px;
}

/* Selected State */
.seat-grid-bolero .seat-btn.seat-selected {
  background: #f59e0b !important;
  border-color: #d97706 !important;
  box-shadow: 0 3px 8px rgba(245, 158, 11, 0.35) !important;
}

.seat-grid-bolero .seat-btn.seat-selected .seat-num,
.seat-grid-bolero .seat-btn.seat-selected .seat-price-tag {
  color: #ffffff !important;
}

/* Booked State (Disabled & Cannot be selected) */
.seat-grid-bolero .seat-btn.seat-booked,
.seat-btn.seat-booked {
  background: #fee2e2 !important;
  border-color: #fca5a5 !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  opacity: 0.78;
}

.seat-grid-bolero .seat-btn.seat-booked .seat-num {
  color: #991b1b !important;
  text-decoration: line-through;
}

.seat-grid-bolero .seat-btn.seat-booked .seat-price-tag {
  color: #dc2626 !important;
  font-size: 0.54rem !important;
  font-weight: 800 !important;
}

/* Driver Seat */
.seat-grid-bolero .seat-driver {
  background: #091834 !important;
  border-color: #091834 !important;
  border-radius: 9px;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(9, 24, 52, 0.2);
  width: 44px;
  height: 44px;
}

.seat-driver-wheel {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.72rem;
}

/* Legend Box */
.exact-seat-legend-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 5px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  margin-bottom: 0;
}

.exact-legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #334155;
}

.exact-legend-sample {
  width: 13px;
  height: 13px;
  border-radius: 3px;
  display: inline-block;
}

/* Compact Trip Summary Card (Right Column) */
.exact-trip-summary-box {
  background: #f3f8fe;
  border: 1.5px solid #dbeafe;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.exact-trip-bus-tile {
  width: 36px;
  height: 36px;
  background: #dbeafe;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.exact-trip-route-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #091834;
  margin: 0;
}

.exact-partner-badge {
  background: #dcfce7;
  color: #15803d;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.exact-car-meta-line {
  font-size: 0.75rem;
  color: #475569;
  font-weight: 500;
  margin-top: 2px;
}

.exact-ptr-tag {
  background: #e2e8f0;
  color: #334155;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
  display: inline-block;
  margin-left: 2px;
}

.exact-price-divider {
  border-left: 1.5px solid #dbeafe;
  padding-left: 12px;
  text-align: right;
  flex-shrink: 0;
}

.exact-price-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.exact-price-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #059669;
  line-height: 1.1;
  margin-top: 1px;
}

/* Compact Form Input Elements */
.exact-field-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #091834;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.exact-label-icon {
  color: #3b82f6;
  font-size: 0.85rem;
}

.exact-phone-group {
  border: 1.5px solid #60a5fa;
  border-radius: 10px;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.12);
}

.exact-phone-prefix {
  font-weight: 600;
  color: #64748b;
  font-size: 0.85rem;
  padding-right: 8px;
  margin-right: 8px;
  border-right: 1px solid #e2e8f0;
}

.exact-phone-input {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  color: #091834 !important;
  width: 100%;
  background: transparent !important;
  letter-spacing: 0.2px;
  padding: 0 !important;
}

.exact-time-select {
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 10px !important;
  height: 40px !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: #091834 !important;
  padding: 0 10px !important;
  background-color: #ffffff !important;
  box-shadow: none !important;
}

/* Seat Quantity Counter Box (When Seat Selection is OFF) */
.exact-seat-counter-box {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}

.exact-counter-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #091834;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.75rem;
  transition: all 0.15s ease;
}

.exact-counter-btn:hover {
  background: #091834;
  color: #ffffff;
  border-color: #091834;
}

.exact-counter-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #091834;
  min-width: 20px;
  text-align: center;
}

.exact-time-select:focus {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.12) !important;
}

/* Compact Payment Method Cards */
.exact-pay-card {
  border-radius: 10px;
  padding: 8px 10px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.15s ease;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.exact-pay-card:hover {
  border-color: #cbd5e1;
}

.exact-pay-card.active,
.exact-pay-card:has(input[type="radio"]:checked) {
  border: 2px solid #10b981 !important;
  background: #f0fdf4 !important;
}

.exact-radio-circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s ease;
}

.exact-pay-card.active .exact-radio-circle,
.exact-pay-card:has(input[type="radio"]:checked) .exact-radio-circle {
  border-color: #10b981;
  background: #10b981;
}

.exact-radio-circle::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  display: none;
}

.exact-pay-card.active .exact-radio-circle::after,
.exact-pay-card:has(input[type="radio"]:checked) .exact-radio-circle::after {
  display: block;
}

.exact-pay-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: #091834;
  display: flex;
  align-items: center;
  gap: 5px;
}

.exact-recommended-badge {
  background: #dcfce7;
  color: #15803d;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 10px;
}

.exact-pay-subtitle {
  font-size: 0.72rem;
  color: #64748b;
  margin-top: 1px;
}

/* ══════════════════════════════════════════════════════════════
   EXACT SAME-TO-SAME PIXEL-PERFECT BOOKING SUCCESS VIEW
   ══════════════════════════════════════════════════════════════ */
.exact-success-view {
  padding: 22px 28px 18px;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.exact-success-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 56px;
  margin-bottom: 6px;
}

.exact-success-check-circle {
  width: 44px;
  height: 44px;
  background: #bbf7d0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #15803d;
  font-size: 1.25rem;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.exact-confetti-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.exact-confetti-particle.p1 {
  width: 6px;
  height: 6px;
  background: #10b981;
  top: 2px;
  left: 6px;
}

.exact-confetti-particle.p2 {
  width: 5px;
  height: 5px;
  background: #3b82f6;
  top: 12px;
  left: 16px;
}

.exact-confetti-particle.p3 {
  width: 6px;
  height: 6px;
  background: #10b981;
  top: 2px;
  right: 8px;
}

.exact-confetti-particle.p4 {
  width: 4px;
  height: 8px;
  background: #10b981;
  border-radius: 2px;
  top: 6px;
  right: 20px;
  transform: rotate(35deg);
}

.exact-confetti-particle.p5 {
  width: 5px;
  height: 5px;
  background: #22c55e;
  bottom: 6px;
  left: 14px;
}

.exact-confetti-particle.p6 {
  width: 5px;
  height: 5px;
  background: #10b981;
  bottom: 8px;
  right: 16px;
}

.exact-success-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: #091834;
  margin: 0 0 8px 0;
  letter-spacing: -0.3px;
}

.exact-success-ref-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 16px;
}

.exact-ref-code {
  color: #065f46;
  letter-spacing: 0.2px;
}

.exact-ref-divider {
  color: #a7f3d0;
  font-weight: 400;
}

.exact-ref-copy-btn {
  background: none;
  border: none;
  padding: 0;
  color: #059669;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s ease;
}

.exact-ref-copy-btn:hover {
  color: #047857;
  text-decoration: underline;
}

/* Success Card */
.exact-success-card {
  background: #ffffff;
  border: 1.5px solid #dbeafe;
  border-radius: 16px;
  padding: 14px 18px;
  text-align: left;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.exact-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.9rem;
}

.exact-row-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-weight: 500;
}

.exact-row-left i {
  color: #64748b;
  font-size: 0.92rem;
  width: 18px;
  text-align: center;
}

.exact-row-right {
  color: #091834;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.exact-row-chevron {
  color: #94a3b8;
  font-size: 0.75rem;
  margin-left: 2px;
}

/* Total Amount Strip */
.exact-success-amount-strip {
  background: #ecfdf5;
  border-radius: 10px;
  padding: 10px 14px;
  margin-top: 10px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.exact-amount-label-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #091834;
  font-family: 'Outfit', sans-serif;
  font-size: 0.98rem;
}

.exact-amount-label-wrap i {
  color: #059669;
  font-size: 1.05rem;
}

.exact-amount-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

/* Payment Status Strip */
.exact-success-payment-strip {
  background: #f0fdfa;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.exact-payment-label-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1e293b;
  font-size: 0.84rem;
  font-weight: 600;
}

.exact-payment-label-wrap i {
  color: #059669;
  font-size: 0.9rem;
}

.exact-paid-badge {
  background: #dcfce7;
  color: #15803d;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.exact-txn-line {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-size: 0.76rem;
  color: #64748b;
  margin-top: 6px;
}

.exact-txn-copy-btn {
  background: none;
  border: none;
  padding: 0;
  color: #64748b;
  cursor: pointer;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
}

.exact-txn-copy-btn:hover {
  color: #0f172a;
}

/* Action Buttons */
.exact-success-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.exact-btn-print {
  background: #ffffff !important;
  border: 1.5px solid #0f2757 !important;
  color: #0f2757 !important;
  border-radius: 24px !important;
  padding: 9px 20px !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.exact-btn-print:hover {
  background: #f8fafc !important;
  color: #091834 !important;
}

.exact-btn-whatsapp {
  background: #ffffff !important;
  border: 1.5px solid #16a34a !important;
  color: #16a34a !important;
  border-radius: 24px !important;
  padding: 9px 20px !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none !important;
  transition: all 0.15s ease;
}

.exact-btn-whatsapp:hover {
  background: #f0fdf4 !important;
  color: #15803d !important;
}

.exact-btn-done {
  background: #061a40 !important;
  border: none !important;
  color: #ffffff !important;
  border-radius: 24px !important;
  padding: 9px 26px !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.exact-btn-done:hover {
  background: #091834 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 26, 64, 0.25);
}

/* Primary Confirm Button (Compact) */
.exact-confirm-btn {
  background: #047857 !important;
  border: none !important;
  color: #ffffff !important;
  border-radius: 11px !important;
  height: 44px;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 3px 10px rgba(4, 120, 87, 0.2);
  transition: all 0.15s ease;
  width: 100%;
}

.exact-confirm-btn:hover {
  background: #065f46 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(4, 120, 87, 0.28);
}

/* Bottom Safe Strip (Compact) */
.exact-safe-strip {
  background: #ecfdf5;
  border-radius: 8px;
  padding: 6px 12px;
  text-align: center;
  font-size: 0.76rem;
  color: #065f46;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}