/* RydNxt Customer Dashboard & Web Portal Stylesheet */

:root {
  --brand-navy: #0B1B3D;
  --brand-navy-deep: #060F24;
  --brand-navy-light: #162D59;
  --brand-yellow: #FFA500;
  --brand-yellow-gradient: linear-gradient(135deg, #FFB300 0%, #FF8C00 100%);
  --brand-yellow-glow: rgba(255, 165, 0, 0.35);

  --bg-main: #F4F7FB;
  --bg-white: #FFFFFF;
  --bg-card: #FFFFFF;
  --border-color: #E2E8F0;
  
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;

  --emerald: #10B981;
  --emerald-bg: #ECFDF5;
  --rose: #EF4444;
  --rose-bg: #FEF2F2;
  --blue: #2563EB;
  --blue-bg: #EFF6FF;

  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 30px rgba(15, 23, 42, 0.12);
  --radius-lg: 16px;
  --radius-md: 10px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* ================= HEADER ================= */
.dash-header {
  background: rgba(11, 27, 61, 0.98);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.dash-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-wrap {
  display: inline-block;
  text-decoration: none;
}

.logo-img {
  height: 64px;
  width: auto;
  max-width: 155px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 12px rgba(255, 165, 0, 0.35));
  transition: transform 0.2s ease;
}

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

.portal-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 165, 0, 0.15);
  border: 1px solid rgba(255, 165, 0, 0.35);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFB300;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10B981;
}

.hill-status-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
  font-size: 0.82rem;
  color: #E2E8F0;
}

.temp-badge {
  background: rgba(0, 0, 0, 0.25);
  padding: 0.15rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  color: #FFA500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Wallet Pill Button */
.wallet-pill-btn {
  background: var(--brand-yellow-gradient);
  color: #060F24;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
  transition: all 0.2s ease;
}

.wallet-pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 165, 0, 0.45);
}

.wallet-val {
  background: #060F24;
  color: #FFB300;
  padding: 0.15rem 0.55rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 800;
}

/* Header Direct Logout Button */
.header-logout-btn {
  background: rgba(239, 68, 68, 0.16);
  border: 1px solid rgba(239, 68, 68, 0.45);
  color: #FFA4A4;
  padding: 0.45rem 0.9rem;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.header-logout-btn:hover {
  background: #DC2626;
  color: #FFFFFF;
  border-color: #DC2626;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
}

/* User Profile Menu */
.user-menu-wrap {
  position: relative;
}

.user-profile-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.35rem 0.75rem 0.35rem 0.35rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s ease;
}

.user-profile-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFA500;
}

.user-info-txt {
  text-align: left;
  line-height: 1.2;
}

.user-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
}

.user-phone {
  display: block;
  font-size: 0.72rem;
  color: #CBD5E1;
}

.chevron-arrow {
  font-size: 0.65rem;
  color: #94A3B8;
  margin-left: 0.2rem;
}

/* User Dropdown */
.user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 250px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.6rem 0;
  display: none;
  z-index: 200;
  animation: fadeInDown 0.15s ease-out;
}

.user-dropdown.show,
.user-dropdown.open {
  display: block !important;
}

.dropdown-header {
  padding: 0.75rem 1.2rem;
}

.dh-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.dh-phone {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.dh-badge {
  display: inline-block;
  font-size: 0.72rem;
  background: #FEF3C7;
  color: #B45309;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 12px;
}

.dropdown-divider {
  height: 1px;
  background: var(--border-color);
  margin: 0.4rem 0;
}

.dd-item {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0.65rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  box-sizing: border-box;
}

.dd-item:hover {
  background: #F8FAFC;
  color: var(--brand-navy);
}

.dd-item.text-danger {
  color: #EF4444;
}

.dd-item.text-danger:hover {
  background: #FEF2F2;
}

/* ================= MAIN DASHBOARD SHELL ================= */
.dash-main {
  padding: 2rem 1.5rem 4rem;
}

.dash-shell {
  max-width: 1280px;
  margin: 0 auto;
}

/* Tabs Navigation Bar */
.dash-tabs-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #FFFFFF;
  padding: 0.45rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
  overflow-x: auto;
}

.dash-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  padding: 0.75rem 1.4rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dash-tab:hover {
  color: var(--brand-navy);
  background: #F8FAFC;
}

.dash-tab.active {
  background: var(--brand-navy);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(11, 27, 61, 0.2);
}

.dash-tab .tab-icon {
  font-size: 1.1rem;
}

.active-pulse-badge {
  background: #EF4444;
  color: #FFFFFF;
  font-size: 0.7rem;
  padding: 0.1rem 0.45rem;
  border-radius: 10px;
  font-weight: 800;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}

/* Toast Message */
.dash-toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999999;
  background: var(--brand-navy);
  color: #FFFFFF;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 0.95rem;
  border-left: 5px solid var(--brand-yellow);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  animation: mmtFadeUp 0.3s ease;
  pointer-events: auto;
  max-width: 90vw;
  text-align: center;
}

.dash-toast.success {
  border-left-color: #10B981;
  background: #064E3B;
}

.dash-toast.error {
  border-left-color: #EF4444;
  background: #7F1D1D;
}

.input-highlight-error {
  border-color: #EF4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3) !important;
  animation: shakeError 0.4s ease !important;
}

@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* Tab Content Visibility */
.tab-content {
  display: none;
  animation: fadeIn 0.25s ease-out;
}

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

/* Common Card Styles */
.dash-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
}

.card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.2rem;
}

.card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hill-clearance-badge {
  background: #FEF3C7;
  color: #B45309;
  border: 1px solid #FDE68A;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

/* ================= TAB 1: BOOKING GRID ================= */
.book-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 1.75rem;
}

.quick-destinations-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.qd-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.qd-chips-container {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.qd-chip {
  background: #F1F5F9;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s;
}

.qd-chip:hover {
  background: var(--brand-navy);
  color: #FFFFFF;
  border-color: var(--brand-navy);
}

.route-select-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

/* Location Input with icon and clear button */
.location-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: #F8FAFC;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s;
}

.location-input-wrap:focus-within {
  border-color: var(--brand-yellow);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.15);
}

.loc-icon {
  padding: 0 0.65rem;
  font-size: 1rem;
  color: #10B981;
  pointer-events: none;
  flex-shrink: 0;
}

.drop-icon {
  color: #EF4444;
}

.location-input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0.8rem 0.4rem 0.8rem 0 !important;
  font-size: 0.92rem;
  font-weight: 600;
  min-width: 0;
}

.location-input:focus {
  outline: none;
  border: none !important;
  box-shadow: none !important;
}

.btn-clear-loc {
  background: none;
  border: none;
  padding: 0 0.65rem;
  color: #94A3B8;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.btn-clear-loc:hover {
  color: #EF4444;
}

.field-block {
  display: flex;
  flex-direction: column;
}

.field-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dot-green {
  width: 10px;
  height: 10px;
  background: #10B981;
  border-radius: 50%;
  display: inline-block;
}

.dot-red {
  width: 10px;
  height: 10px;
  background: #EF4444;
  border-radius: 50%;
  display: inline-block;
}

.form-select-custom {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  background-color: #F8FAFC;
  outline: none;
  transition: all 0.2s;
}

.form-select-custom:focus {
  border-color: var(--brand-yellow);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.15);
}

.btn-swap-route {
  background: #F1F5F9;
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
  transition: all 0.2s;
}

.btn-swap-route:hover {
  background: var(--brand-yellow);
  transform: rotate(180deg);
}

/* Vehicle Selector Cards */
.vehicle-selection-wrap {
  margin-bottom: 1.5rem;
}

.vehicle-chips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.veh-radio-card {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  cursor: pointer;
  display: block;
  position: relative;
  transition: all 0.2s ease;
  background: #FFFFFF;
}

.veh-radio-card input {
  position: absolute;
  opacity: 0;
}

.veh-radio-card:hover {
  border-color: #CBD5E1;
  transform: translateY(-1px);
}

.veh-radio-card.active {
  border-color: var(--brand-yellow);
  background: #FFFBEB;
  box-shadow: 0 4px 14px rgba(255, 165, 0, 0.15);
}

.veh-card-content {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.veh-icon-box {
  font-size: 1.8rem;
}

.veh-text {
  flex: 1;
}

.veh-name {
  display: block;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--brand-navy);
}

.veh-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.veh-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #B45309;
  background: rgba(255, 165, 0, 0.15);
  padding: 0.1rem 0.4rem;
  border-radius: 6px;
  margin-top: 0.2rem;
}

.veh-fare-box {
  text-align: right;
}

.veh-fare {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--brand-navy);
}

.veh-rate {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Payment Mode Selector */
.payment-mode-wrap {
  margin-bottom: 1.5rem;
}

/* ===== DATE TIME BOOKING ROW ===== */
.datetime-booking-row {
  background: #F8FAFC;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Book Now / Schedule Toggle */
.schedule-toggle-wrap .field-label {
  margin-bottom: 0.5rem;
}

.schedule-toggle {
  display: inline-flex;
  background: #E2E8F0;
  border-radius: 10px;
  padding: 3px;
  gap: 3px;
}

.sch-btn {
  background: none;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.sch-btn.active {
  background: var(--brand-navy);
  color: #FFB300;
  box-shadow: 0 2px 8px rgba(11, 27, 61, 0.2);
}

/* Date & Time pickers */
.datetime-pickers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.dt-field .field-label {
  margin-bottom: 0.4rem;
}

.dt-input {
  width: 100%;
  box-sizing: border-box;
}

/* Trip Type selector */
.trip-type-wrap .field-label {
  margin-bottom: 0.5rem;
}

.trip-type-toggle {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tt-option {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #FFFFFF;
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.2s;
}

.tt-option input[type="radio"] {
  display: none;
}

.tt-option.active,
.tt-option:has(input:checked) {
  border-color: var(--brand-navy);
  background: var(--brand-navy);
  color: #FFB300;
}

/* Booking Summary Pill */
.booking-summary-pill {
  background: linear-gradient(135deg, #0B1B3D 0%, #162D59 100%);
  color: #FFFFFF;
  border-radius: 30px;
  padding: 0.55rem 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.84rem;
  font-weight: 700;
  width: fit-content;
}

.pill-divider {
  opacity: 0.35;
}


.pay-options-flex {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}

.pay-option {
  flex: 1;
  min-width: 160px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  background: #F8FAFC;
  transition: all 0.2s;
}

.pay-option input {
  position: absolute;
  opacity: 0;
}

.pay-option.active {
  border-color: var(--brand-navy);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.pay-icon {
  font-size: 1.2rem;
}

.pay-title {
  font-size: 0.86rem;
  font-weight: 700;
}

.wallet-avail-text {
  color: #10B981;
}

/* Estimate Strip */
.estimate-strip {
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 1.5rem;
}

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

.est-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}

.est-val {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--brand-navy);
}

.est-val-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #D97706;
}

.est-divider {
  width: 1px;
  height: 32px;
  background: var(--border-color);
}

/* Button Confirm Booking */
.btn-confirm-booking {
  width: 100%;
  background: var(--brand-yellow-gradient);
  color: #060F24;
  border: none;
  padding: 1.05rem;
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.35);
  transition: all 0.2s ease;
}

.btn-confirm-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 165, 0, 0.45);
}

/* Side Cards */
.book-side-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.side-wallet-card {
  background: linear-gradient(135deg, #0B1B3D 0%, #162D59 100%);
  color: #FFFFFF;
}

.swc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.swc-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #FFA500;
}

.btn-text-action {
  background: none;
  border: none;
  color: #FFB300;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}

.swc-balance-box {
  margin-bottom: 0.85rem;
}

.swc-bal-label {
  display: block;
  font-size: 0.8rem;
  color: #94A3B8;
}

.swc-balance {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #FFFFFF;
}

.swc-tip {
  font-size: 0.8rem;
  color: #CBD5E1;
  line-height: 1.4;
}

.side-safety-card .side-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 1rem;
}

.safety-points-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.safety-points-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.safety-points-list strong {
  display: block;
  color: var(--brand-navy);
  font-size: 0.88rem;
}

.safety-points-list p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.1rem;
}

.sp-icon {
  font-size: 1.25rem;
}

.side-app-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #FFFBEB;
  border-color: #FDE68A;
}

.sac-icon {
  font-size: 2rem;
}

.sac-text h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-navy);
}

.sac-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.btn-app-link {
  background: var(--brand-navy);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  white-space: nowrap;
}

/* ================= TAB 2: ACTIVE RIDE ================= */
.active-ride-card {
  background: #FFFFFF;
  border: 2px solid var(--brand-yellow);
  box-shadow: var(--shadow-lg);
}

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

.arc-status-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  padding: 0.45rem 1rem;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.92rem;
  color: #1E40AF;
}

.status-pulse-dot {
  width: 10px;
  height: 10px;
  background: #3B82F6;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.arc-codes {
  display: flex;
  gap: 1rem;
}

.code-box {
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.code-box.otp-highlight {
  background: #FFFBEB;
  border-color: #F59E0B;
}

.cb-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--text-muted);
}

.cb-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--brand-navy);
}

.otp-digit {
  color: #D97706;
  letter-spacing: 2px;
}

/* Visual Step Tracker */
.ride-steps-tracker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.5rem 0 2rem;
  position: relative;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
}

.step-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #E2E8F0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.step-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
}

.step-item.active .step-icon {
  background: var(--brand-yellow);
  color: #060F24;
  box-shadow: 0 0 12px rgba(255, 165, 0, 0.5);
}

.step-item.active .step-label {
  color: var(--brand-navy);
  font-weight: 800;
}

.step-item.completed .step-icon {
  background: #10B981;
  color: #FFFFFF;
}

.step-line {
  flex: 1;
  height: 3px;
  background: #E2E8F0;
  margin: 0 -5px 1.2rem;
  z-index: 1;
}

.step-line.active {
  background: #10B981;
}

/* Pickup Date/Time & Booking Time Row */
.arc-timing-row {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #EFF6FF 0%, #F0FDF4 100%);
  border: 1px solid #DBEAFE;
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.arc-timing-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1;
}

.arc-timing-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.arc-timing-content {
  display: flex;
  flex-direction: column;
}

.arc-timing-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.arc-timing-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1E3A5F;
}

.arc-timing-divider {
  width: 1px;
  height: 36px;
  background: #BFDBFE;
  flex-shrink: 0;
}

/* Route Box */
.arc-route-box {
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.route-line-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.connecting-dashed-line {
  width: 2px;
  height: 32px;
  background: repeating-linear-gradient(to bottom, #CBD5E1 0, #CBD5E1 4px, transparent 4px, transparent 8px);
}

.route-details-txt {
  flex: 1;
}

.pt-label {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.pt-address {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin: 0.1rem 0 0;
}

.route-meta-pills {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
}

.meta-pill {
  background: #E2E8F0;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  color: var(--text-main);
}

.meta-pill.fare-pill {
  background: #FEF3C7;
  color: #B45309;
  font-size: 1rem;
  font-weight: 900;
}

/* Pilot & Vehicle Section */
.pilot-vehicle-card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  background: #FFFFFF;
}

.pvc-pilot-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pvc-pilot-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #FFA500;
}

.pvc-pilot-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin: 0;
}

.pvc-pilot-rating {
  font-size: 0.85rem;
  font-weight: 700;
  color: #D97706;
  margin: 0.1rem 0;
}

.pvc-pilot-badge {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

.pvc-veh-info {
  text-align: right;
}

.veh-plate-box {
  display: inline-block;
  background: #FFFBEB;
  border: 2px solid #000000;
  border-radius: 6px;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.2rem;
}

.plate-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #000000;
  letter-spacing: 1px;
}

.veh-model-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin: 0.1rem 0;
}

.veh-status-live {
  font-size: 0.75rem;
  font-weight: 700;
  color: #10B981;
}

/* Active Ride Actions */
.arc-actions-bar {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn-action-call, .btn-action-gps, .btn-action-cancel, .btn-action-sos {
  padding: 0.8rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  border: none;
}

.btn-action-call {
  background: #10B981;
  color: #FFFFFF;
}

.btn-action-gps {
  background: var(--brand-navy);
  color: #FFFFFF;
}

.btn-action-cancel {
  background: #F1F5F9;
  color: #EF4444;
  border: 1px solid #FECACA;
}

.btn-action-sos {
  background: #EF4444;
  color: #FFFFFF;
  margin-left: auto;
}

/* Empty State */
.no-ride-empty-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.empty-icon-circle {
  width: 70px;
  height: 70px;
  background: #FEF3C7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.2rem;
}

/* ================= TAB 3: RYDNXT WALLET ================= */
.wallet-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 1.75rem;
}

.wallet-hero-card {
  background: linear-gradient(135deg, #060F24 0%, #0B1B3D 60%, #162D59 100%);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  position: relative;
  overflow: hidden;
}

.wallet-hero-card::after {
  content: "🏔️";
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-size: 10rem;
  opacity: 0.06;
  pointer-events: none;
}

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

.whc-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.whc-logo-icon {
  font-size: 1.4rem;
}

.whc-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  color: #FFA500;
}

.whc-tier-badge {
  background: rgba(255, 165, 0, 0.2);
  color: #FFB300;
  border: 1px solid rgba(255, 165, 0, 0.4);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

.whc-bal-title {
  font-size: 0.85rem;
  color: #94A3B8;
  display: block;
}

.whc-bal-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #FFFFFF;
  margin: 0.2rem 0;
}

.whc-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #CBD5E1;
}

/* Quick Add Chips */
.quick-add-chips {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.qa-chip {
  background: #F1F5F9;
  border: 1.5px solid var(--border-color);
  padding: 0.45rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s;
}

.qa-chip:hover {
  border-color: #CBD5E1;
}

.qa-chip.active {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  color: #FFFFFF;
}

.form-group {
  margin-bottom: 1.25rem;
}

.currency-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.currency-symbol {
  position: absolute;
  left: 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-navy);
}

.currency-input-wrap .form-control-custom {
  padding-left: 2.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand-navy);
}

.form-control-custom {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text-main);
  outline: none;
  box-sizing: border-box;
  transition: all 0.2s;
}

.form-control-custom:focus {
  border-color: var(--brand-yellow);
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.15);
}

/* Pay Method Grid */
.pay-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.pm-card {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.5rem;
  text-align: center;
  cursor: pointer;
  background: #F8FAFC;
  transition: all 0.2s;
}

.pm-card input {
  position: absolute;
  opacity: 0;
}

.pm-card.active {
  border-color: var(--brand-navy);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.pm-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.2rem;
}

.pm-name {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.pm-sub {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
}

.btn-confirm-topup {
  width: 100%;
  background: #10B981;
  color: #FFFFFF;
  border: none;
  padding: 0.95rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
  transition: all 0.2s;
}

.btn-confirm-topup:hover {
  background: #059669;
}

/* Passbook Table */
.passbook-card {
  margin-top: 2rem;
}

.table-responsive {
  overflow-x: auto;
}

.passbook-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.passbook-table th {
  background: #F8FAFC;
  color: var(--text-muted);
  font-weight: 700;
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1.5px solid var(--border-color);
}

.passbook-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-main);
}

.passbook-table tr:hover td {
  background: #F8FAFC;
}

.txn-amount-credit {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: #10B981;
}

.txn-amount-debit {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: #EF4444;
}

.btn-refresh {
  background: #F1F5F9;
  border: 1px solid var(--border-color);
  padding: 0.35rem 0.8rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
}

/* ================= TAB 4: PAST TRIPS ================= */
.trips-filter-tabs {
  display: flex;
  gap: 0.4rem;
}

.t-filter-btn {
  background: #F1F5F9;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
}

.t-filter-btn.active {
  background: var(--brand-navy);
  color: #FFFFFF;
  border-color: var(--brand-navy);
}

/* Trips List Container & Card Rows */
.trips-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 1.25rem;
}

.trip-card-row {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.15rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  transition: all 0.2s ease;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}

.trip-card-row:hover {
  border-color: #CBD5E1;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.07);
  transform: translateY(-1px);
}

.trip-card-row.trip-completed {
  border-left: 5px solid #10B981;
}

.trip-card-row.trip-cancelled {
  border-left: 5px solid #EF4444;
}

.trip-card-row.trip-in_progress,
.trip-card-row.trip-assigned {
  border-left: 5px solid #3B82F6;
}

.trip-card-row.trip-pending_admin_approval,
.trip-card-row.trip-published {
  border-left: 5px solid #F59E0B;
}

.trip-route-col {
  flex: 1.8;
  min-width: 220px;
}

.trip-from-to {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.35rem;
  flex-wrap: wrap;
}

.trip-city-tag {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.2px;
}

.trip-arrow {
  color: #F59E0B;
  font-weight: 800;
  font-size: 0.95rem;
}

.trip-meta {
  font-size: 0.8rem;
  color: #64748B;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-sep {
  color: #CBD5E1;
  font-weight: 700;
}

.meta-code {
  font-weight: 700;
  color: #3B82F6;
  background: #EFF6FF;
  padding: 0.1rem 0.45rem;
  border-radius: 4px;
}

.trip-status-col {
  flex: 0.8;
  text-align: center;
  min-width: 110px;
}

.trip-status-badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  text-transform: capitalize;
  letter-spacing: 0.3px;
}

.trip-status-badge.badge-success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.trip-status-badge.badge-danger {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

.trip-status-badge.badge-warning {
  background: #FFFBEB;
  color: #92400E;
  border: 1px solid #FDE68A;
}

.trip-fare-col {
  flex: 0.9;
  text-align: right;
  min-width: 110px;
}

.trip-fare-amount {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #0F172A;
}

.trip-pay-mode {
  font-size: 0.72rem;
  color: #64748B;
  font-weight: 600;
  background: #F1F5F9;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  display: inline-block;
  margin-top: 2px;
}

.trip-actions-col {
  flex: 1.1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 170px;
}

.btn-view-invoice {
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  color: #1E293B;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-view-invoice:hover {
  background: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
}

.btn-rebook {
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
  border: 1px solid #F59E0B;
  color: #92400E;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-rebook:hover {
  background: #F59E0B;
  color: #FFFFFF;
  box-shadow: 0 3px 8px rgba(245, 158, 11, 0.25);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .trip-card-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .trip-status-col, .trip-fare-col, .trip-actions-col {
    width: 100%;
    text-align: left;
    justify-content: flex-start;
  }
  .trip-fare-col {
    display: flex;
    align-items: baseline;
    gap: 8px;
  }
}

.trip-item-card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: all 0.2s;
  background: #FFFFFF;
}

.trip-item-card:hover {
  border-color: #CBD5E1;
  box-shadow: var(--shadow-sm);
}

.tic-left {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.tic-icon {
  width: 46px;
  height: 46px;
  background: #EFF6FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.tic-route {
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.2rem;
}

.tic-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.75rem;
}

.tic-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.tic-fare {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--brand-navy);
}

.tic-badge-completed {
  background: #ECFDF5;
  color: #065F46;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.15rem 0.55rem;
  border-radius: 12px;
}

.tic-badge-cancelled {
  background: #FEF2F2;
  color: #991B1B;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.15rem 0.55rem;
  border-radius: 12px;
}

.btn-view-invoice {
  background: #F1F5F9;
  border: 1px solid var(--border-color);
  color: var(--brand-navy);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-view-invoice:hover {
  background: var(--brand-navy);
  color: #FFFFFF;
}

/* ================= TAB 5: PROFILE & SETTINGS ================= */
.profile-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.75rem;
}

.badge-verified {
  background: #ECFDF5;
  color: #059669;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
}

.btn-primary-gradient {
  background: var(--brand-yellow-gradient);
  color: #060F24;
  border: none;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.helpline-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hl-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem;
  background: #F8FAFC;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.hl-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--brand-navy);
}

.hl-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0.1rem 0 0;
}

.hl-btn {
  background: var(--brand-navy);
  color: #FFFFFF;
  text-decoration: none;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
}

.card-callout {
  background: #FFFBEB;
  border-left: 3px solid #F59E0B;
  padding: 0.85rem 1rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.card-callout h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: #92400E;
  margin-bottom: 0.2rem;
}

.card-callout p {
  font-size: 0.78rem;
  color: #78350F;
  line-height: 1.4;
  margin: 0;
}

/* ================= INVOICE MODAL ================= */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 15, 36, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.invoice-modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.inv-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.inv-brand {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.inv-logo {
  height: 44px;
}

.inv-brand h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin: 0;
}

.inv-brand p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0.1rem 0;
}

.inv-gst {
  font-weight: 700;
  color: var(--brand-navy);
}

.btn-close-modal {
  background: #F1F5F9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.inv-divider {
  height: 1px;
  background: var(--border-color);
  margin: 1.25rem 0;
}

.inv-bill-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.ibi-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 800;
}

.inv-pay-badge {
  display: inline-block;
  background: #ECFDF5;
  color: #065F46;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
}

.inv-route-card {
  background: #F8FAFC;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  line-height: 1.5;
}

.inv-breakdown-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.inv-breakdown-table th {
  border-bottom: 2px solid var(--border-color);
  padding: 0.6rem 0;
  text-align: left;
}

.inv-breakdown-table td {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-color);
}

.inv-total-row th {
  border-top: 2px solid var(--brand-navy);
  border-bottom: 2px solid var(--brand-navy);
  font-size: 1.1rem;
  color: var(--brand-navy);
  padding: 0.85rem 0;
}

.text-right {
  text-align: right;
}

.inv-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
}

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

.btn-print {
  background: var(--brand-navy);
  color: #FFFFFF;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.btn-secondary {
  background: #F1F5F9;
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .book-grid, .wallet-grid, .profile-grid {
    grid-template-columns: 1fr;
  }
  .d-none-mobile {
    display: none !important;
  }
  .route-select-grid {
    grid-template-columns: 1fr;
  }
  .btn-swap-route {
    align-self: center;
  }
}

@media (max-width: 640px) {
  .vehicle-chips-grid {
    grid-template-columns: 1fr;
  }
  .pay-options-flex {
    flex-direction: column;
  }
  .arc-actions-bar {
    flex-direction: column;
  }
  .btn-action-sos {
    margin-left: 0;
  }
}

/* =========================================================
   MMT-STYLE BOOKING UI
   ========================================================= */

/* Override book-grid for MMT full-width layout */
.mmt-booking-card {
  padding: 0;
  border-radius: var(--radius-lg);
  /* overflow: hidden removed — it was clipping date/time pickers */
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
  background: #FFFFFF;
  clip-path: none;
}

/* ---- Trip Type Tabs ---- */
.mmt-trip-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 2px solid #E8EDF5;
  background: #F8FAFC;
  padding: 0 1.5rem;
  flex-wrap: wrap;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.mmt-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  white-space: nowrap;
  position: relative;
}

.mmt-tab input[type="radio"] {
  display: none;
}

.mmt-tab:hover {
  color: #2554E8;
}

.mmt-tab.active {
  color: #2554E8;
  border-bottom-color: #2554E8;
  font-weight: 700;
  background: #FFFFFF;
}

.mmt-tab.active::before {
  content: '●';
  color: #2554E8;
  font-size: 0.65rem;
  margin-right: 4px;
}

.mmt-new-badge {
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-left: 4px;
}

.mmt-brand-tag {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--brand-yellow);
  font-weight: 700;
  padding: 0.6rem 0;
}

/* ---- Search Bar Row ---- */
.mmt-search-bar {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #E8EDF5;
  background: #FFFFFF;
  min-height: 72px;
  width: 100%;
}

.mmt-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border-right: 1px solid #E8EDF5;
  position: relative;
  cursor: pointer;
  transition: background 0.15s ease;
}

.mmt-field:last-child {
  border-right: none;
}

.mmt-field:hover,
.mmt-field:focus-within {
  background: #F0F4FF;
}

.mmt-field-city {
  flex: 1.35;
  min-width: 140px;
}

.mmt-field-date {
  flex: 1;
  min-width: 115px;
}

.mmt-field-time {
  flex: 0.9;
  min-width: 105px;
}

.mmt-field-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.2px;
  text-transform: none;
  margin-bottom: 3px;
  pointer-events: none;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.mmt-city-input {
  border: none;
  outline: none;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  background: transparent;
  width: 100%;
  line-height: 1.2;
  font-family: inherit;
}

.mmt-city-input::placeholder {
  color: #94A3B8;
  font-size: 1.02rem;
  font-weight: 600;
}

/* Hidden picker input — zero size, triggered programmatically */
.mmt-hidden-picker {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
  padding: 0;
  margin: 0;
}

.mmt-date-display {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.mmt-date-hint {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.mmt-time-display {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  pointer-events: none;
  position: relative;
  z-index: 1;
}


/* ---- Custom Autocomplete Dropdown ---- */
.mmt-field-city {
  overflow: visible !important;
}

.mmt-ac-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  min-width: 260px;
  background: #FFFFFF;
  border: 1.5px solid #DBEAFE;
  border-radius: 0 0 12px 12px;
  max-height: 280px;
  overflow-y: auto;
  z-index: 9999;
  list-style: none;
  padding: 0.3rem 0;
  margin: 0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
  display: none;
  scrollbar-width: thin;
}

.mmt-ac-dropdown li {
  padding: 0.55rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  border-bottom: 1px solid #F8FAFC;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: background 0.12s;
}

.mmt-ac-dropdown li .ac-icon {
  font-size: 0.82rem;
  flex-shrink: 0;
}

.mmt-ac-dropdown li .ac-text {
  display: inline;
  white-space: nowrap;
}

.mmt-ac-dropdown li:hover,
.mmt-ac-dropdown li.ac-active {
  background: #EFF6FF;
  color: #1D4ED8;
}

.mmt-ac-dropdown li:last-child {
  border-bottom: none;
}

.mmt-ac-no-result {
  padding: 0.8rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

/* Swap button between From & To */
.mmt-swap-btn {
  background: #F1F5F9;
  border: 1.5px solid var(--border-color);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
  color: var(--brand-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
  margin: 0 -18px;
  z-index: 2;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}

.mmt-swap-btn:hover {
  background: var(--brand-navy);
  color: var(--brand-yellow);
  transform: rotate(180deg);
}

/* ---- Bottom Action Bar (Stops + Search Button) ---- */
.mmt-bottom-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.5rem;
  background: #F8FAFC;
  border-top: 1px solid #E8EDF5;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  gap: 1rem;
}

.mmt-stops-col {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.mmt-search-btn-col {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.mmt-badge-col {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.mmt-assurance-pill {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0369A1;
  background: #E0F2FE;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #BAE6FD;
  white-space: nowrap;
}

.mmt-add-stops-btn {
  background: none;
  border: none;
  color: #1D4ED8;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}

.mmt-add-stops-btn:hover {
  text-decoration: underline;
}

.mmt-stop-input-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  flex-wrap: wrap;
}

/* ---- SEARCH Button ---- */
.mmt-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 30px;
  padding: 0.75rem 3.2rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(29, 78, 216, 0.35);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.mmt-search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.45);
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
}

/* =========================================================
   RESULTS SECTION
   ========================================================= */
.mmt-results-section {
  margin-top: 0;
}

/* Sticky Recap Bar */
.mmt-recap-bar {
  background: var(--brand-navy);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
  position: relative;
}

.recap-item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.recap-clickable {
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
  user-select: none;
}

.recap-clickable:hover {
  background: rgba(255, 255, 255, 0.14);
}

.recap-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.recap-val {
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.recap-clickable:hover .recap-val {
  color: #FBBF24;
}

.recap-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #0F172A;
  border: 1px solid #334155;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  padding: 6px;
  min-width: 200px;
  z-index: 1000;
}

.recap-dropdown-opt {
  padding: 8px 12px;
  color: #E2E8F0;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.recap-dropdown-opt:hover {
  background: #2563EB;
  color: #FFFFFF;
}

.recap-swap-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.2s ease, border-color 0.2s ease;
  padding: 0;
  margin: 0 2px;
}

.recap-swap-btn:hover {
  transform: rotate(180deg);
  background: #2563EB;
  border-color: #60A5FA;
}

.recap-sep {
  color: rgba(255,255,255,0.35);
  font-size: 1rem;
  font-weight: 300;
}

.recap-add-stops {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #FFFFFF;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.recap-add-stops:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #FFFFFF;
}

.recap-actions-group {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.recap-modify-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.recap-modify-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #FFFFFF;
  transform: translateY(-1px);
}

.recap-search-btn {
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.25rem;
  font-weight: 800;
  font-size: 0.86rem;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.recap-search-btn:hover {
  background: linear-gradient(135deg, #1D4ED8, #1E40AF);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

/* Trust Bar */
.mmt-trust-bar {
  background: var(--brand-navy-deep);
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.mmt-rates-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 1rem 0;
}

/* Main results layout (sidebar + cards) */
.mmt-results-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem;
  align-items: start;
}

/* ---- Filters Sidebar ---- */
.mmt-filters-sidebar {
  background: #FFFFFF;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 80px;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid var(--border-color);
  margin-bottom: 0.75rem;
}

.filter-clear-all {
  background: none;
  border: none;
  color: #2554E8;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.filter-section {
  padding-bottom: 1rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #F1F5F9;
}

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

.filter-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.filter-section-head span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.filter-clear {
  background: none;
  border: none;
  color: #2554E8;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 3px 0;
  width: 100%;
}

.filter-check input[type="checkbox"] {
  accent-color: #2554E8;
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.filter-count {
  margin-left: auto;
  color: var(--text-light);
  font-size: 0.78rem;
}

/* ---- Cab Cards ---- */
.mmt-cab-results {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mmt-cab-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  margin-bottom: 1.15rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mmt-cab-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
  border-color: #CBD5E1;
}

.mmt-cab-card-body,
.cab-card-main {
  display: grid;
  grid-template-columns: 140px 1fr 190px;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
}

.mmt-cab-img-wrap,
.cab-photo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mmt-car-photo-box,
.cab-photo-box {
  width: 135px;
  height: 85px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  padding: 4px;
}

.mmt-cab-card:hover .mmt-car-photo-box,
.mmt-cab-card:hover .cab-photo-box {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.mmt-car-photo-box img,
.mmt-car-real-photo,
.mmt-cab-img-wrap img,
.cab-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.mmt-fuel-badge,
.cab-fuel-badge {
  display: inline-block;
  background: #10B981;
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 1px 4px rgba(16, 185, 129, 0.2);
}

.mmt-fuel-badge.diesel,
.cab-fuel-badge.diesel {
  background: #D97706;
  box-shadow: 0 1px 4px rgba(217, 119, 6, 0.2);
}

.mmt-fuel-badge.electric,
.cab-fuel-badge.electric {
  background: #2563EB;
  box-shadow: 0 1px 4px rgba(37, 99, 235, 0.2);
}

.mmt-fuel-badge.petrol,
.cab-fuel-badge.petrol {
  background: #8B5CF6;
  box-shadow: 0 1px 4px rgba(139, 92, 246, 0.2);
}

.mmt-cab-info,
.cab-info-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.cab-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.mmt-cab-name,
.cab-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
  letter-spacing: -0.2px;
}

.cab-type-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.mmt-cab-model-tag,
.cab-specs {
  font-size: 0.82rem;
  color: #64748B;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.cab-or-similar {
  font-size: 0.78rem;
  color: #94A3B8;
  font-weight: 500;
  font-style: italic;
  margin: 0;
}

.cab-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 2px 0;
}

.mmt-rating-badge,
.cab-rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #16A34A;
  color: #FFFFFF;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: 0.2px;
}

.cab-reviews {
  font-size: 0.78rem;
  color: #64748B;
  font-weight: 600;
}

.mmt-cab-features,
.cab-includes-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.mmt-feature-tag,
.inc-chip {
  font-size: 0.74rem;
  color: #334155;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 3px 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.mmt-km-note {
  font-size: 0.78rem;
  color: #16A34A;
  font-weight: 700;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mmt-cab-pricing,
.cab-price-col {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
}

.mmt-original-price {
  font-size: 0.82rem;
  color: #94A3B8;
  text-decoration: line-through;
}

.mmt-discount-badge {
  font-size: 0.72rem;
  color: #E53E3E;
  font-weight: 700;
}

.mmt-final-price,
.cab-price-main {
  font-size: 1.65rem;
  font-weight: 900;
  color: #0F172A;
  line-height: 1;
  letter-spacing: -0.5px;
}

.mmt-tax-note,
.cab-price-sub {
  font-size: 0.76rem;
  color: #64748B;
  font-weight: 500;
}

.cab-partpay {
  font-size: 0.78rem;
  color: #B45309;
  background: #FEF3C7;
  border: 1px solid #FDE68A;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
  display: inline-block;
  margin-top: 2px;
  white-space: nowrap;
}

.mmt-select-btn,
.btn-select-cab {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 0.7rem 1.4rem;
  font-weight: 800;
  font-size: 0.86rem;
  cursor: pointer;
  margin-top: 6px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  letter-spacing: 0.4px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.mmt-select-btn:hover,
.btn-select-cab:hover {
  background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

.mmt-select-btn:active,
.btn-select-cab:active {
  transform: translateY(0);
}

.mmt-cab-extras {
  padding: 0.6rem 1.5rem;
  border-top: 1px solid #F1F5F9;
  font-size: 0.76rem;
  color: #475569;
  background: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-weight: 600;
}

/* Coupon offer card */
.mmt-coupon-card {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border: 1.5px solid #BFDBFE;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.mmt-coupon-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1D4ED8;
}

.mmt-coupon-code {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.mmt-coupon-icon {
  width: 40px;
  height: 40px;
  background: #2554E8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Loading state */
.mmt-results-loading {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-muted);
  background: #FFFFFF;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
}

.mmt-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #E2E8F0;
  border-top-color: #2554E8;
  border-radius: 50%;
  animation: mmtSpin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes mmtSpin {
  to { transform: rotate(360deg); }
}

/* No results */
.mmt-no-results {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-muted);
  background: #FFFFFF;
  border: 1.5px dashed var(--border-color);
  border-radius: var(--radius-md);
}

/* ---- Full-width override for book-grid ---- */
#tabContent-book .book-grid {
  display: flex;
  flex-direction: column;
}

/* Responsive */
@media (max-width: 768px) {
  .mmt-search-bar {
    flex-direction: column;
  }
  .mmt-field {
    border-right: none;
    border-bottom: 1.5px solid #E8EDF5;
  }
  .mmt-swap-btn {
    align-self: flex-start;
    margin: 0.4rem 1.2rem;
  }
  .mmt-results-layout {
    grid-template-columns: 1fr;
  }
  .mmt-filters-sidebar {
    position: static;
  }
  .mmt-cab-card-body {
    grid-template-columns: 90px 1fr;
    grid-template-rows: auto auto;
  }
  .mmt-cab-pricing {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #F1F5F9;
    padding-top: 0.75rem;
  }
  .mmt-trip-tabs {
    padding: 0 0.5rem;
    gap: 0;
  }
  .mmt-tab {
    padding: 0.75rem 0.6rem;
    font-size: 0.78rem;
  }
  .mmt-brand-tag {
    display: none;
  }
  .mmt-bottom-action-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
  }
  .mmt-stops-col,
  .mmt-badge-col {
    justify-content: center;
  }
  .mmt-search-btn {
    width: 100%;
    padding: 0.85rem 1.5rem;
  }
}

/* =========================================================
   MMT-STYLE REVIEW BOOKING & TRAVELLER DETAILS PAGE
   ========================================================= */

.mmt-review-booking-container {
  max-width: 860px;
  margin: 0 auto 3.5rem;
  font-family: inherit;
  animation: mmtFadeUp 0.35s ease-out forwards;
}

@keyframes mmtFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.mmt-review-top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.mmt-review-back-btn {
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  padding: 0.45rem 1.1rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: #1D4ED8;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.15s;
}

.mmt-review-back-btn:hover {
  background: #EFF6FF;
  border-color: #93C5FD;
}

.mmt-review-step-tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748B;
}

.mmt-review-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.15rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.035);
}

/* 1. Route Banner */
.mmt-route-banner {
  background: #F0F8FF;
  border: 1.5px solid #BAE6FD;
}

.mmt-route-banner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.mmt-trip-badge {
  font-size: 0.82rem;
  font-weight: 800;
  color: #0369A1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mmt-route-dist-tag {
  background: #0284C7;
  color: #FFFFFF;
  padding: 2px 9px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 800;
}

.mmt-route-points-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.2rem;
  align-items: center;
}

.mmt-route-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.mmt-point-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

.mmt-point-dot.origin {
  background: #10B981;
  border: 2.5px solid #A7F3D0;
}

.mmt-point-dot.destination {
  background: #EF4444;
  border: 2.5px solid #FECACA;
}

.mmt-point-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.3;
  margin: 0 0 2px;
}

.mmt-point-sub {
  font-size: 0.8rem;
  color: #64748B;
  margin: 0 0 6px;
}

.mmt-point-time {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1E293B;
  display: flex;
  align-items: center;
  gap: 5px;
}

.mmt-route-connector {
  text-align: center;
  color: #94A3B8;
  font-weight: 700;
  font-size: 0.88rem;
}

.mmt-connector-line {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* 2. Vehicle Card */
.mmt-vehicle-review-card {
  padding: 0;
  overflow: hidden;
}

.mmt-vehicle-card-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
}

.mmt-vehicle-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.mmt-vehicle-name {
  font-size: 1.22rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
}

.mmt-rating-pill {
  background: #0284C7;
  color: #FFFFFF;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
}

.mmt-reviews-count {
  font-size: 0.75rem;
  color: #64748B;
  font-weight: 600;
}

.mmt-vehicle-subtag {
  font-size: 0.75rem;
  color: #94A3B8;
  margin: 2px 0 6px;
}

.mmt-vehicle-specs {
  font-size: 0.8rem;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.5px;
}

.mmt-vehicle-thumb {
  width: 110px;
  height: 80px;
  background: #FFFFFF;
  border: 1px solid #BAE6FD;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.08);
}

.rev-car-real-photo {
  width: 100%;
  height: 52px;
  object-fit: contain;
  border-radius: 6px;
}

.thumb-emoji {
  font-size: 2.3rem;
  line-height: 1;
}

.thumb-fuel-badge {
  font-size: 0.62rem;
  font-weight: 800;
  background: #059669;
  color: #FFFFFF;
  padding: 1px 6px;
  border-radius: 3px;
  margin-top: 4px;
}

.thumb-fuel-badge.diesel {
  background: #D97706;
}

.mmt-dispatch-bar {
  background: #FEF3C7;
  border-top: 1px solid #FDE68A;
  padding: 0.6rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: #92400E;
}

.dispatch-text {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.dispatch-dots {
  color: #F59E0B;
  letter-spacing: 3px;
}

/* 3. Partner Ribbon */
.mmt-partner-ribbon {
  background: linear-gradient(90deg, #F0F9FF 0%, #E0F2FE 100%);
  border: 1.5px solid #BAE6FD;
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.15rem;
}

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

.partner-crown {
  font-size: 1.6rem;
}

.partner-heading {
  font-weight: 800;
  font-size: 0.92rem;
  color: #0C4A6E;
}

.partner-sub {
  font-size: 0.75rem;
  color: #0369A1;
}

.partner-logo-box {
  background: #0284C7;
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: 6px;
  text-align: center;
}

.partner-badge-text {
  display: block;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.partner-badge-sub {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  opacity: 0.88;
}

/* 4. Inclusions Card */
.card-section-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 0.85rem;
}

.inclusion-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #F1F5F9;
}

.inclusion-row:last-child {
  border-bottom: none;
}

.inc-icon {
  font-size: 1.15rem;
  width: 26px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.inc-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0F172A;
}

.inc-desc {
  font-size: 0.78rem;
  color: #64748B;
  margin-top: 1px;
}

.mmt-card-link {
  display: inline-block;
  margin-top: 0.85rem;
  color: #2563EB;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
}

.mmt-card-link:hover {
  text-decoration: underline;
}

/* 5. Cancellation Policy */
.card-title-dark {
  font-size: 1rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 0.6rem;
}

.cancellation-desc {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cancel-free-tag {
  color: #059669;
  font-weight: 800;
  font-size: 0.9rem;
}

.cancel-free-sub {
  color: #64748B;
  font-size: 0.78rem;
}

/* 6. Customer Reviews */
.reviews-content-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.review-score-box {
  width: 72px;
  height: 60px;
  background: #1D4ED8;
  color: #FFFFFF;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.score-number {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.score-text {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 3px;
  letter-spacing: 0.3px;
}

.review-bars-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
}

.bar-label {
  width: 95px;
  font-weight: 600;
  color: #475569;
}

.bar-track {
  flex: 1;
  height: 6px;
  background: #E2E8F0;
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #1D4ED8;
  border-radius: 3px;
}

.bar-val {
  width: 25px;
  font-weight: 800;
  color: #0F172A;
  text-align: right;
}

/* 7. Special Requests */
.special-requests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.85rem;
  margin-top: 0.75rem;
}

.special-req-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: all 0.15s;
  background: #FFFFFF;
}

.special-req-item:hover {
  border-color: #93C5FD;
  background: #F8FAFC;
}

.special-req-item input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #1D4ED8;
  cursor: pointer;
  margin-top: 2px;
}

.req-content-col {
  flex: 1;
}

.req-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}

.req-title {
  font-weight: 800;
  font-size: 0.88rem;
  color: #0F172A;
}

.req-price {
  font-weight: 900;
  font-size: 0.92rem;
  color: #0F172A;
}

.req-desc {
  font-size: 0.75rem;
  color: #64748B;
  line-height: 1.3;
}

.req-warning-note {
  font-size: 0.7rem;
  color: #D97706;
  font-weight: 600;
  margin-top: 4px;
}

/* Driver Preferred Language Option Styles */
.lang-options-wrap {
  margin-top: 0.55rem;
  padding-top: 0.45rem;
  animation: mmtFadeIn 0.2s ease-out;
}

.lang-options-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748B;
  margin-bottom: 0.5rem;
}

.lang-radio-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}

.lang-radio-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
  user-select: none;
  transition: all 0.15s ease;
}

.lang-radio-pill input[type="radio"] {
  appearance: auto;
  width: 17px;
  height: 17px;
  accent-color: #0084FF;
  cursor: pointer;
  margin: 0;
}

.lang-radio-pill input[type="radio"]:checked + span {
  color: #0084FF;
  font-weight: 800;
}

/* 8. Review Booking Form Header & Traveller Details */
.mmt-traveller-form-section {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #CBD5E1;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  margin-bottom: 1.5rem;
}

.review-booking-navy-header {
  background: #0F172A;
  color: #FFFFFF;
  padding: 0.9rem 1.5rem;
}

.review-booking-navy-header h2 {
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0;
  letter-spacing: 0.3px;
  color: #FFFFFF;
}

.review-booking-body {
  background: #FFFFFF;
  padding: 1.5rem;
}

.traveller-sub-header {
  font-weight: 800;
  font-size: 0.95rem;
  color: #0F172A;
  margin: 1.2rem 0 0.85rem;
}

.traveller-inputs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field-small-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input-styled {
  width: 100%;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0F172A;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}

.form-input-styled:focus {
  border-color: #2563EB;
  background: #FFFFFF;
}

.input-with-pin {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-pin .pin-icon {
  position: absolute;
  left: 12px;
  font-size: 1rem;
  pointer-events: none;
}

.input-with-pin input {
  padding-left: 36px;
}

.phone-input-wrap {
  display: flex;
  align-items: center;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 8px;
  overflow: hidden;
}

.country-prefix {
  padding: 0 0.75rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: #334155;
  border-right: 1px solid #E2E8F0;
}

.phone-field {
  border: none !important;
  background: transparent !important;
}

.mmt-terms-disclaimer {
  font-size: 0.74rem;
  color: #64748B;
  margin-top: 1.2rem;
  line-height: 1.5;
}

.mmt-terms-disclaimer a {
  color: #2563EB;
  text-decoration: underline;
}

/* 9. Sticky Bottom Summary & Confirmation Bar */
.mmt-review-bottom-bar {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  position: sticky;
  bottom: 1rem;
  z-index: 100;
}

.bottom-fare-col {
  display: flex;
  flex-direction: column;
}

.fare-sub {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fare-amount-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.fare-total {
  font-size: 1.75rem;
  font-weight: 900;
  color: #0F172A;
}

.fare-tax-breakup {
  font-size: 0.78rem;
  color: #64748B;
}

.bottom-action-col {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.mmt-btn-outline-back {
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #475569;
  cursor: pointer;
  transition: all 0.15s;
}

.mmt-btn-outline-back:hover {
  background: #F1F5F9;
  border-color: #94A3B8;
}

.mmt-btn-proceed-book {
  background: linear-gradient(135deg, #1D4ED8 0%, #0084FF 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 0.85rem 1.8rem;
  font-weight: 900;
  font-size: 0.98rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(29, 78, 216, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}

.mmt-btn-proceed-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.45);
}

@media (max-width: 768px) {
  .mmt-route-points-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .mmt-route-connector {
    display: none;
  }
  .traveller-inputs-grid {
    grid-template-columns: 1fr;
  }
  .mmt-review-bottom-bar {
    flex-direction: column;
    gap: 0.85rem;
    align-items: stretch;
    text-align: center;
  }
  .fare-amount-row {
    justify-content: center;
  }
  .bottom-action-col {
    flex-direction: column-reverse;
  }
}

/* ========================================================
   PREMIUM LUXURY BOOKING CONFIRMED MODAL STYLES
======================================================== */
.mmt-success-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 1.25rem;
  overflow-y: auto;
}

.mmt-success-modal-card {
  background: #FFFFFF;
  width: 100%;
  max-width: 660px;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.45);
  overflow: hidden;
  position: relative;
  animation: mmtModalPop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes mmtModalPop {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.mmt-modal-close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
}

.mmt-modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(90deg);
}

.mmt-modal-hero {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #FFFFFF;
  padding: 2.2rem 1.8rem 1.6rem;
  text-align: center;
  position: relative;
}

.success-icon-pulsar {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.25);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.checkmark-svg {
  width: 38px;
  height: 38px;
  stroke: #FFFFFF;
  stroke-width: 4;
  stroke-miterlimit: 10;
  fill: none;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 4;
  stroke: rgba(255, 255, 255, 0.3);
  animation: strokeCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: strokeCheck 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

@keyframes strokeCircle {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes strokeCheck {
  100% {
    stroke-dashoffset: 0;
  }
}

.mmt-hero-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.mmt-hero-title {
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0 0 0.3rem;
  letter-spacing: 0.5px;
  color: #FFFFFF;
}

.mmt-hero-subtitle {
  font-size: 0.84rem;
  color: #94A3B8;
  margin: 0;
  font-weight: 500;
}

/* Ticket Card Boarding-Pass Styling */
.mmt-ticket-card {
  margin: -0.6rem 1.4rem 1.1rem;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.mmt-ticket-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.25rem;
  background: #F8FAFC;
  border-bottom: 1px dashed #CBD5E1;
}

.ticket-mini-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: #64748B;
  letter-spacing: 0.6px;
  display: block;
}

.ticket-code-val {
  font-size: 1.2rem;
  font-weight: 900;
  color: #0F172A;
  letter-spacing: 0.5px;
}

.ticket-otp-col {
  text-align: right;
}

.ticket-otp-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FEF08A;
  border: 1px solid #FDE047;
  padding: 3px 10px;
  border-radius: 8px;
  margin-top: 2px;
}

.ticket-otp-val {
  font-size: 1.25rem;
  font-weight: 900;
  color: #854D0E;
  letter-spacing: 1.5px;
}

.otp-sub-hint {
  font-size: 0.62rem;
  color: #B45309;
  display: block;
  margin-top: 2px;
  font-weight: 600;
}

.mmt-ticket-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: #FFFFFF;
  border-bottom: 1px solid #F1F5F9;
  gap: 0.8rem;
}

.route-stop {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex: 1;
}

.stop-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}

.green-dot {
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

.red-dot {
  background: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
}

.stop-role {
  font-size: 0.62rem;
  font-weight: 800;
  color: #94A3B8;
  letter-spacing: 0.5px;
}

.stop-city {
  font-size: 1.05rem;
  font-weight: 900;
  color: #0F172A;
}

.stop-addr {
  font-size: 0.72rem;
  color: #64748B;
  line-height: 1.25;
  margin-top: 2px;
  max-width: 190px;
}

.stop-time {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0084FF;
  margin-top: 3px;
}

.route-flight-path {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.path-badge {
  font-size: 0.68rem;
  font-weight: 800;
  color: #475569;
  background: #F1F5F9;
  padding: 3px 8px;
  border-radius: 9999px;
  white-space: nowrap;
  border: 1px solid #E2E8F0;
}

.path-line {
  width: 32px;
  height: 2px;
  background: #CBD5E1;
}

.mmt-ticket-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  padding: 0.95rem 1.25rem;
  background: #FAFAFA;
  border-bottom: 1px dashed #CBD5E1;
}

.grid-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: #64748B;
  letter-spacing: 0.5px;
  display: block;
}

.grid-val {
  font-size: 0.85rem;
  font-weight: 800;
  color: #1E293B;
  margin-top: 2px;
  display: block;
}

.highlight-lang {
  color: #0084FF;
  font-weight: 900;
}

.mmt-ticket-fare-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 1.25rem;
  background: #F0FDF4;
}

.fare-strip-label {
  font-size: 0.68rem;
  font-weight: 800;
  color: #166534;
  letter-spacing: 0.5px;
  display: block;
}

.fare-strip-sub {
  font-size: 0.65rem;
  color: #15803D;
  font-weight: 600;
  display: block;
  margin-top: 1px;
}

.fare-strip-amount {
  font-size: 1.35rem;
  font-weight: 900;
  color: #15803D;
  text-align: right;
  display: block;
}

.fare-strip-paymode {
  font-size: 0.68rem;
  font-weight: 700;
  color: #166534;
  display: block;
  text-align: right;
}

/* Multi-Channel Notification Status Banner */
.mmt-notification-banner {
  margin: 0 1.4rem 1.1rem;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 0.95rem;
}

.notif-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.65rem;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
  animation: pulseGreen 1.5s infinite;
}

.notif-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #0F172A;
  flex: 1;
}

.notif-badge {
  font-size: 0.62rem;
  font-weight: 800;
  color: #0084FF;
  background: #EFF6FF;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #DBEAFE;
}

.notif-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 0.6rem;
}

.notif-channel-pill {
  padding: 0.6rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid;
  min-height: 75px;
}

.wa-pill {
  background: #F0FDF4;
  border-color: #BBF7D0;
  color: #166534;
}

.sms-pill {
  background: #F0F9FF;
  border-color: #BAE6FD;
  color: #075985;
}

.email-pill {
  background: #FAF5FF;
  border-color: #E9D5FF;
  color: #6B21A8;
}

.pill-icon {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.pill-title {
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.pill-desc {
  font-size: 0.62rem;
  color: #64748B;
  line-height: 1.25;
  margin-bottom: 4px;
}

.pill-status-tag {
  font-size: 0.6rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 9999px;
  align-self: flex-start;
}

.tag-success {
  background: #DCFCE7;
  color: #15803D;
}

.notif-footnote {
  font-size: 0.7rem;
  color: #64748B;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  line-height: 1.35;
}

/* Action Buttons */
.mmt-modal-actions {
  display: flex;
  gap: 0.65rem;
  padding: 0 1.4rem 1.4rem;
}

.btn-action-whatsapp {
  flex: 1.2;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF !important;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.btn-action-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45);
}

.btn-action-print {
  flex: 0.8;
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  color: #334155;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-action-print:hover {
  background: #E2E8F0;
}

.btn-action-done {
  flex: 1;
  background: linear-gradient(135deg, #0084FF 0%, #0066CC 100%);
  color: #FFFFFF;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 132, 255, 0.3);
}

.btn-action-done:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 132, 255, 0.45);
}

@media (max-width: 640px) {
  .mmt-ticket-route {
    flex-direction: column;
    align-items: flex-start;
  }
  .route-flight-path {
    margin: 0.4rem 0;
  }
  .notif-channels-grid {
    grid-template-columns: 1fr;
  }
  .mmt-modal-actions {
    flex-direction: column;
  }
}

/* ========================================================
   MAKE-MY-TRIP PAYMENT OPTIONS SECTION STYLES
======================================================== */
.mmt-payment-section {
  margin-top: 1.25rem;
}

.payment-navy-header {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  padding: 0.9rem 1.4rem;
}

.pay-options-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pay-opt-row {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  border: 2px solid #E2E8F0;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #FFFFFF;
}

.pay-opt-row:hover {
  border-color: #94A3B8;
}

.pay-opt-row.active {
  border-color: #0084FF;
  background: #F8FBFF;
  box-shadow: 0 4px 14px rgba(0, 132, 255, 0.08);
}

.pay-opt-radio-col {
  margin-right: 0.85rem;
  display: flex;
  align-items: center;
}

.pay-opt-radio-col input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: #0084FF;
  cursor: pointer;
  margin: 0;
}

.pay-opt-details {
  flex: 1;
}

.pay-opt-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}

.pay-opt-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A;
}

.pay-opt-desc {
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.35;
}

.pay-opt-amount {
  font-size: 1.15rem;
  font-weight: 900;
  color: #0F172A;
  margin-left: 0.85rem;
  white-space: nowrap;
}

.pay-badge-green {
  background: #DCFCE7;
  color: #166534;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 9999px;
  border: 1px solid #BBF7D0;
}

.pay-badge-blue {
  background: #EFF6FF;
  color: #1D4ED8;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 9999px;
  border: 1px solid #DBEAFE;
}

.pay-badge-purple {
  background: #FAF5FF;
  color: #6B21A8;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 9999px;
  border: 1px solid #E9D5FF;
}

.security-chip-white {
  font-size: 0.72rem;
  font-weight: 700;
  color: #CBD5E1;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Track Ride Shortcut Button in Modal */
.btn-action-track {
  flex: 1.3;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #FFFFFF !important;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-action-track:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.45);
}

/* ==========================================================================
   RYDNXT SECURE PAYMENT GATEWAY MODAL STYLES
   ========================================================================== */
.pg-modal-card {
  background: #FFFFFF;
  width: 100%;
  max-width: 580px;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.45);
  overflow: hidden;
  position: relative;
  animation: mmtModalPop 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pg-header {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #FFFFFF;
  padding: 1.4rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pg-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pg-logo {
  font-size: 1.8rem;
}

.pg-brand h3 {
  font-size: 1.15rem;
  font-weight: 900;
  margin: 0;
  color: #FFFFFF;
}

.pg-brand p {
  font-size: 0.7rem;
  color: #94A3B8;
  margin: 2px 0 0;
}

.pg-amount-box {
  text-align: right;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pg-amount-sub {
  font-size: 0.65rem;
  font-weight: 700;
  color: #94A3B8;
  display: block;
}

.pg-amount-val {
  font-size: 1.35rem;
  font-weight: 900;
  color: #34D399;
  display: block;
}

.pg-body {
  padding: 1.4rem 1.6rem 1.6rem;
}

.pg-method-tabs {
  display: flex;
  gap: 0.5rem;
  background: #F1F5F9;
  padding: 4px;
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.pg-tab-btn {
  flex: 1;
  padding: 0.65rem 0.5rem;
  border: none;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748B;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.pg-tab-btn.active {
  background: #FFFFFF;
  color: #0F172A;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  font-weight: 800;
}

.pg-upi-layout {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 1.25rem;
  border-radius: 16px;
}

.pg-qr-box {
  text-align: center;
  background: #FFFFFF;
  padding: 0.65rem;
  border-radius: 12px;
  border: 1px solid #CBD5E1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.pg-qr-img {
  width: 130px;
  height: 130px;
  display: block;
  margin: 0 auto 0.35rem;
  border-radius: 6px;
}

.pg-qr-caption {
  font-size: 0.65rem;
  font-weight: 700;
  color: #64748B;
  display: block;
  max-width: 130px;
  line-height: 1.2;
}

.pg-upi-details {
  flex: 1;
}

.pg-field-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: #64748B;
  display: block;
  margin-bottom: 0.35rem;
}

.pg-input-group {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.pg-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0F172A;
  outline: none;
  transition: border-color 0.2s;
}

.pg-input:focus {
  border-color: #0084FF;
}

.btn-verify-upi {
  padding: 0 0.85rem;
  background: #E2E8F0;
  border: none;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #334155;
  cursor: pointer;
}

.upi-apps-icons {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.app-chip {
  font-size: 0.68rem;
  font-weight: 700;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 3px 8px;
  border-radius: 6px;
  color: #475569;
}

.pg-card-form {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 1.25rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pg-form-group {
  display: flex;
  flex-direction: column;
}

.pg-bank-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 1.25rem;
  border-radius: 16px;
}

.pg-bank-opt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
}

.pg-pay-cta-box {
  margin-top: 1.25rem;
  text-align: center;
}

.btn-pg-pay-now {
  width: 100%;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  border: none;
  padding: 0.95rem;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
  transition: all 0.2s ease;
}

.btn-pg-pay-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.45);
}

.pg-guarantee-note {
  font-size: 0.72rem;
  color: #64748B;
  margin-top: 0.6rem;
  font-weight: 600;
}

/* =========================================================
   MAKE-MY-TRIP PAYMENT BREAKUP & PROMO COUPONS STYLES
   ========================================================= */

/* Promo / Coupon Section */
.mmt-coupon-section {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.25rem 1.4rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.coupon-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.coupon-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.coupon-icon {
  font-size: 1.2rem;
}

.coupon-main-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.2px;
}

.coupon-savings-tag {
  background: #DCFCE7;
  color: #15803D;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #BBF7D0;
  animation: pulseSavings 1.5s infinite;
}

@keyframes pulseSavings {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.coupon-input-box {
  margin-bottom: 0.85rem;
}

.coupon-input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  background: #F8FAFC;
  overflow: hidden;
  transition: all 0.2s;
}

.coupon-input-wrap:focus-within {
  border-color: #0084FF;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(0, 132, 255, 0.12);
}

.coupon-text-field {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0F172A;
  outline: none;
  letter-spacing: 0.5px;
}

.coupon-text-field::placeholder {
  color: #94A3B8;
  font-weight: 500;
  letter-spacing: 0;
}

.btn-apply-coupon {
  background: #0084FF;
  color: #FFFFFF;
  border: none;
  padding: 0.75rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-apply-coupon:hover {
  background: #0070D8;
}

.btn-apply-coupon.applied {
  background: #EF4444;
}

.coupon-feedback-msg {
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 0.45rem;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
}

.coupon-feedback-msg.success {
  background: #F0FDF4;
  color: #16A34A;
  border: 1px solid #BBF7D0;
}

.coupon-feedback-msg.error {
  background: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FECACA;
}

.popular-coupons-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.promo-chip {
  background: #F1F5F9;
  border: 1px dashed #94A3B8;
  color: #334155;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.promo-chip:hover {
  background: #E0F2FE;
  border-color: #0284C7;
  color: #0369A1;
  transform: translateY(-1px);
}

.promo-chip strong {
  color: #0084FF;
  letter-spacing: 0.5px;
}

/* MakeMyTrip Exact Payment Options Card */
.mmt-payment-options-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.mmt-po-header {
  font-size: 1.25rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 1.1rem;
  letter-spacing: -0.3px;
}

.mmt-po-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.mmt-po-item {
  display: flex;
  align-items: center;
  padding: 0.85rem 1rem;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #FFFFFF;
}

.mmt-po-item:hover {
  border-color: #94A3B8;
}

.mmt-po-item.active {
  border-color: #0084FF;
  background: #F4F9FF;
}

.po-radio-circle {
  margin-right: 0.9rem;
  display: flex;
  align-items: center;
}

.po-radio-circle input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #0084FF;
  cursor: pointer;
}

.po-content {
  flex: 1;
}

.po-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #000000;
  line-height: 1.2;
}

.po-subtitle {
  font-size: 0.78rem;
  font-weight: 500;
  color: #64748B;
  margin-top: 2px;
}

.po-price {
  font-size: 1.15rem;
  font-weight: 900;
  color: #000000;
  letter-spacing: -0.3px;
}

/* Pay Now Solid Blue Button */
.mmt-btn-paynow {
  width: 100%;
  height: 48px;
  background: #0084FF;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 132, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mmt-btn-paynow:hover {
  background: #0073DF;
  box-shadow: 0 6px 20px rgba(0, 132, 255, 0.45);
  transform: translateY(-1px);
}

.mmt-btn-paynow:active {
  transform: translateY(1px);
}

.mmt-po-divider {
  border: none;
  height: 1px;
  background: #E2E8F0;
  margin: 1.5rem 0 1rem;
}

/* Hide/Show Fare Break up Link Row with Avatar */
.mmt-fb-toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1.1rem;
}

.mmt-fb-toggle-link {
  color: #0084FF;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: opacity 0.2s;
}

.mmt-fb-toggle-link:hover {
  text-decoration: underline;
  opacity: 0.9;
}

.fb-arrow {
  font-size: 0.85rem;
  font-weight: 900;
}

.support-avatar-circle {
  position: absolute;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFEDD5 0%, #FED7AA 100%);
  border: 2px solid #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-emoji {
  font-size: 1.1rem;
}

/* Detailed Fare Breakup Gray Box */
.mmt-fb-container {
  background: #F8F9FA;
  border: 1px solid #EDF0F2;
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
  transition: all 0.3s ease;
}

.fb-group {
  margin-bottom: 0.4rem;
}

.fb-header-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.fb-bold-label {
  font-size: 0.98rem;
  font-weight: 800;
  color: #000000;
}

.fb-bold-val {
  font-size: 1.05rem;
  font-weight: 900;
  color: #000000;
  letter-spacing: -0.2px;
}

.fb-sub-items {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-left: 0.2rem;
}

.fb-sub-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #64748B;
  font-weight: 500;
}

.fb-tag-included {
  color: #00875A;
  font-size: 0.85rem;
  font-weight: 700;
}

.fb-sub-val {
  color: #334155;
  font-size: 0.85rem;
  font-weight: 700;
}

.fb-inner-divider {
  border: none;
  height: 1px;
  background: #E2E8F0;
  margin: 0.85rem 0;
}

.fb-total-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.25rem;
}

.fb-total-label {
  font-size: 1.1rem;
  font-weight: 900;
  color: #000000;
}

.fb-total-amount {
  font-size: 1.35rem;
  font-weight: 900;
  color: #000000;
  letter-spacing: -0.3px;
}

/* Hide Customer Notification Dispatch Status banner */
.mmt-notification-banner {
  display: none !important;
}





/* Waiting-for-driver spinner */
@keyframes spin {
  to { transform: rotate(360deg); }
}
