/* ==========================================================================
   CAB LISTING & SEARCH STYLES (Professional Theme Integration)
   ========================================================================== */

:root {
    --cl-bg-page: var(--bg-color, #f4f6f9);
    --cl-bg-dark: var(--secondary-color, var(--dark-color, #0b132b));
    --cl-primary: var(--primary-color, var(--theme, #5F2DED));
    --cl-primary-hover: var(--primary-color, #4b1fd1);
    --cl-accent: var(--accent-color, var(--second, #F2277E));
    --cl-accent-hover: var(--accent-color, #e11d48);
    --cl-btn-cta: var(--primary-color, var(--theme, #5F2DED));
    --cl-btn-cta-hover: var(--accent-color, var(--second, #F2277E));
    --cl-success: #10b981;
    --cl-warning: #f59e0b;
    --cl-border: var(--border-subtle, #e2e8f0);
    --cl-text-dark: var(--heading-color, #1e293b);
    --cl-text-muted: #64748b;
    --cl-card-radius: 14px;
}

body.cab-list-body {
    background-color: var(--cl-bg-page);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--cl-text-dark);
    margin: 0;
    padding: 0;
}

/* ─────────────────────────────────────────────────────────────
   1. DESKTOP TOP SEARCH & MODIFY BAR (STICKY AT TOP, Z-INDEX 1000)
   ───────────────────────────────────────────────────────────── */
.cl-search-header-wrap {
    background: #0b132b;
    background: linear-gradient(135deg, #0b132b 0%, #172554 100%);
    padding: 12px 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cl-top-search-form {
    margin: 0;
}

.cl-search-bar-row {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 3px;
    gap: 3px;
    flex-wrap: nowrap;
    position: relative;
}

.cl-sfield {
    flex: 1;
    background: rgba(15, 23, 42, 0.75);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    position: relative;
    border: 1px solid #ffffff2e;
    transition: all 0.2s ease;
    cursor: pointer;
    user-select: none;
}

.cl-sfield:hover {
    background: rgba(15, 23, 42, 0.95);
    border-color: var(--cl-primary);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

.cl-sfield.cl-sfield-type {
    flex: 0 0 190px;
    cursor: pointer;
}

.cl-sfield.cl-sfield-time {
    flex: 0 0 120px;
}

#clTopFromBox,
#clTopAirportPickWrap {
    padding-right: 22px;
}

#clTopToWrap,
#clTopAirportDropWrap {
    padding-left: 22px;
}

.cl-slabel {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.cl-slabel i {
    font-size: 10px;
    color: #38bdf8;
}

.cl-sval {
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    cursor: pointer;
}

/* ─── INLINE LOCATION DROPDOWN (desktop) ─────────────────────────────────── */
.cl-loc-field {
    position: relative;
}

.cl-loc-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: -3px;
    min-width: 320px;
    max-width: 380px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
    z-index: 9999999 !important;
    overflow: hidden;
    animation: clDropIn 0.18s ease-out;
}

.cl-loc-dropdown.is-open {
    display: block;
}

@keyframes clDropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.cl-loc-search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid #f1f5f9;
    background: #f8fafc;
}

.cl-loc-search-wrap i {
    color: #94a3b8;
    font-size: 13px;
    flex-shrink: 0;
}

.cl-loc-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    outline: none;
    padding: 0;
}

.cl-loc-search-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.cl-loc-preds {
    max-height: 250px;
    overflow-y: auto;
}

.cl-loc-pred-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #f8fafc;
    transition: background 0.15s ease;
}

.cl-loc-pred-item:hover {
    background: #f0f9ff;
}

.cl-loc-pred-item > i {
    color: var(--cl-primary);
    font-size: 13px;
    flex-shrink: 0;
}

.cl-loc-pred-text {
    display: flex;
    flex-direction: column;
}

.cl-pred-main {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
}

.cl-pred-main mark {
    background: transparent;
    color: var(--cl-primary);
    font-weight: 800;
    padding: 0;
}

.cl-pred-sub {
    font-size: 11px;
    color: #64748b;
    margin-top: 1px;
}

.cl-loc-no-results {
    padding: 12px 14px;
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cl-loc-popular {
    padding: 10px 14px 12px;
    border-top: 1px solid #f1f5f9;
}

.cl-loc-popular-title {
    font-size: 10.5px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.cl-loc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-height: 110px;
    overflow-y: auto;
}

.cl-loc-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f1f5f9;
    color: #334155;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.cl-loc-chip:hover {
    background: #eff6ff;
    color: var(--cl-primary);
}

.cl-loc-chip i {
    font-size: 10px;
    color: var(--cl-primary);
}



.cl-swap-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #0f172a;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #38bdf8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 25;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    margin-left: -17px;
    margin-right: -17px;
    align-self: center;
    font-size: 11px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    position: relative;
    padding: 0;
    flex-shrink: 0;
}

.cl-swap-btn:hover {
    background: var(--cl-primary);
    border-color: var(--cl-primary);
    color: #ffffff;
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.55);
}

.cl-ssub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

/* Custom Trip Type Dropdown inside Top Bar */
.cl-trip-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    width: 100%;
}

.cl-trip-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 270px;
    background: #ffffff;
    border: 1px solid var(--cl-border);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    padding: 6px;
    z-index: 9999999 !important;
    display: none;
    flex-direction: column;
    gap: 4px;
    max-height: 290px;
    overflow-y: auto;
}

.cl-sfield .ots-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 250px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    padding: 6px;
    z-index: 9999999 !important;
    display: none;
    flex-direction: column;
    gap: 4px;
    max-height: 290px;
    overflow-y: auto;
}

.cl-sfield.is-open .ots-dropdown-menu,
.cl-sfield.is-open .cl-trip-dropdown-menu,
.ots-custom-select-wrap.is-open .ots-dropdown-menu,
.ots-custom-select-wrap.is-open .cl-trip-dropdown-menu {
    display: flex !important;
    flex-direction: column !important;
    overflow-x: hidden !important;
    animation: otsDropIn 0.2s ease-out;
}

.cl-sfield .ots-dropdown-item,
.cl-trip-dropdown-menu .ots-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    color: #1e293b;
    border: 1px solid transparent;
}

.cl-sfield .ots-dropdown-item:hover,
.cl-trip-dropdown-menu .ots-dropdown-item:hover {
    background: #f1f5f9;
}

.cl-sfield .ots-dropdown-item.active,
.cl-trip-dropdown-menu .ots-dropdown-item.active {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: var(--cl-primary);
}

.cl-sfield .ots-di-ico,
.cl-sfield .ots-di-icon,
.cl-trip-dropdown-menu .ots-di-ico {
    font-size: 14px;
    color: var(--cl-primary);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.cl-sfield .ots-di-body,
.cl-sfield .ots-di-info,
.cl-trip-dropdown-menu .ots-di-info {
    flex: 1;
    min-width: 0;
}

.cl-sfield .ots-di-title,
.cl-trip-dropdown-menu .ots-di-title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
}

.cl-sfield .ots-di-sub,
.cl-trip-dropdown-menu .ots-di-sub {
    font-size: 10.5px;
    color: #64748b;
    margin-top: 1px;
}

.cl-sfield .ots-di-price {
    font-size: 12.5px;
    font-weight: 800;
    color: var(--cl-primary);
    flex-shrink: 0;
}

.cl-btn-search-top {
    flex: 0 0 130px;
    background: var(--cl-primary);
    background-image: none;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.cl-btn-search-top:hover {
    background: var(--cl-primary-hover);
    background-image: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

/* ─────────────────────────────────────────────────────────────
   2. MOBILE TOP STICKY HEADER
   ───────────────────────────────────────────────────────────── */
.cl-mobile-top-header {
    display: none;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin: 10px 12px 6px 12px;
    padding: 10px 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.cl-mth-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.cl-mth-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.cl-mth-back {
    color: #000000;
    text-decoration: none;
    flex-shrink: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.15s ease;
}

.cl-mth-back:hover,
.cl-mth-back:active {
    transform: translateX(-2px);
    color: #000000;
}

.cl-mth-info {
    flex: 1;
    min-width: 0;
}

.cl-mth-route {
    font-size: 15px;
    font-weight: 800;
    color: #000000;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

.cl-mth-arrow {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin: 0 1px;
}

.cl-mth-sub {
    font-size: 11.5px;
    color: #64748b;
    margin: 3px 0 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
    line-height: 1.2;
}

.cl-mth-edit-btn {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    padding: 6px 14px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: all 0.15s ease;
}

.cl-mth-edit-btn i {
    font-size: 13px;
    color: #0f172a;
}

.cl-mth-edit-btn span {
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}

.cl-mth-edit-btn:hover,
.cl-mth-edit-btn:active {
    border-color: #94a3b8;
    background: #f8fafc;
}

/* ─────────────────────────────────────────────────────────────
   3. SUMMARY & LISTING INFO BAR
   ───────────────────────────────────────────────────────────── */
.cl-listing-info-bar {
    margin-bottom: 16px;
}

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

.cl-info-heading {
    font-size: 15.5px;
    font-weight: 800;
    color: var(--cl-text-dark);
    margin: 0;
    line-height: 1.2;
}

.cl-info-sub-fleet {
    font-size: 12px;
    color: var(--cl-text-muted);
}

.cl-sib-text {
    font-size: 13px;
    color: var(--cl-text-muted);
    margin: 0;
    line-height: 1.4;
}

.cl-sib-text strong {
    color: var(--cl-text-dark);
}

/* ─────────────────────────────────────────────────────────────
   4. MAIN LAYOUT & SIDEBAR FILTERS (STICKY AT 120PX)
   ───────────────────────────────────────────────────────────── */
.cl-main-section {
    padding: 20px 0 60px 0;
}

.cl-filter-card {
    background: #ffffff;
    border-radius: var(--cl-card-radius);
    border: 1px solid var(--cl-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    padding: 20px;
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    z-index: 10;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f8fafc;
}

/* Custom neat scrollbar for sticky sidebar */
.cl-filter-card::-webkit-scrollbar {
    width: 5px;
}
.cl-filter-card::-webkit-scrollbar-track {
    background: #f8fafc;
    border-radius: 4px;
}
.cl-filter-card::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
.cl-filter-card::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

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

.cl-filter-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--cl-text-dark);
    margin: 0;
}

.cl-filter-clear {
    font-size: 12px;
    font-weight: 600;
    color: var(--cl-primary);
    text-decoration: none;
    cursor: pointer;
}

.cl-filter-clear:hover {
    text-decoration: underline;
}

.cl-filter-group {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--cl-border);
}

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

.cl-fg-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--cl-text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.cl-fg-title:hover {
    color: var(--cl-primary);
}

.cl-fg-title .cl-fg-chevron,
.cl-fg-title i.fa-chevron-up {
    font-size: 11px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cl-filter-group.is-collapsed .cl-fg-title {
    margin-bottom: 0;
}

.cl-filter-group.is-collapsed .cl-fg-title .cl-fg-chevron,
.cl-filter-group.is-collapsed .cl-fg-title i.fa-chevron-up {
    transform: rotate(180deg);
}

.cl-fg-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 500px;
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, margin-top 0.3s ease;
}

.cl-filter-group.is-collapsed .cl-fg-options {
    max-height: 0 !important;
    opacity: 0;
    margin-top: 0;
    pointer-events: none;
}

.cl-checkbox-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #334155;
    cursor: pointer;
    margin: 0;
    user-select: none;
}

.cl-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: var(--cl-primary);
}

.cl-radio-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #334155;
    cursor: pointer;
    margin: 0;
    user-select: none;
    padding: 2px 0;
    transition: color 0.15s ease;
}

.cl-radio-label:hover {
    color: var(--cl-primary);
}

.cl-radio-label input[type="radio"] {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: var(--cl-primary);
}

.cl-cb-left {
    display: flex;
    align-items: center;
}

.cl-cb-count {
    font-size: 11px;
    color: var(--cl-text-muted);
}

/* ─────────────────────────────────────────────────────────────
   5. CAB LIST CARDS & RANDOM SINGLE AMENITY
   ───────────────────────────────────────────────────────────── */
.cl-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cl-cab-card {
    background: #ffffff;
    border: 1px solid var(--cl-border);
    border-radius: var(--cl-card-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 16px 20px 0 20px;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.cl-cab-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.cl-card-main-row {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

/* Left: Vehicle Image & Fuel Badge Box */
.cl-card-col-img {
    flex: 0 0 135px;
    width: 135px;
    height: 105px;
    background: #f0f7ff;
    border: 1px solid #e0ecfb;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 8px 6px 0 6px;
    overflow: hidden;
    position: relative;
    text-align: center;
    box-shadow: inset 0 0 8px rgba(0, 132, 255, 0.04);
}

.cl-car-img-wrap {
    width: 115px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.cl-car-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.cl-fuel-badge {
    display: block;
    width: calc(100% + 12px);
    margin: 0 -6px;
    padding: 4px 0;
    border-radius: 0 0 11px 11px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-align: center;
    line-height: 1.2;
}

.cl-fuel-hybrid {
    background: #059669;
    color: #ffffff;
}

.cl-fuel-cng,
.cl-fuel-cng-diesel {
    background: #008b8b;
    color: #ffffff;
}

.cl-fuel-petrol {
    background: #ea580c;
    color: #ffffff;
}

.cl-fuel-diesel {
    background: #c27803;
    color: #ffffff;
}

.cl-fuel-electric {
    background: #16a34a;
    color: #ffffff;
}

/* Middle: Details & Features */
.cl-card-col-details {
    flex: 1;
    min-width: 0;
}

.cl-card-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.cl-cab-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--cl-text-dark);
    margin: 0;
    line-height: 1.2;
}

.cl-card-sub-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.cl-model-tag {
    font-size: 11px;
    color: var(--cl-text-muted);
}

.cl-rating-badge {
    background: var(--cl-primary);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 1.5px 5px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
}

.cl-cab-spec-chips {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    margin: 4px 0 8px 0;
    flex-wrap: wrap;
}

.cl-spec-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cl-spec-dot {
    color: #cbd5e1;
}

.cl-cab-features-list {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.cl-feat-pill {
    background: #f1f5f9;
    color: #334155;
    font-size: 10.5px;
    font-weight: 600;
    padding: 2.5px 7px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cl-feat-pill.cl-feat-highlight {
    background: #fef3c7;
    color: #92400e;
}

/* Right: Price & CTA */
.cl-card-col-price {
    flex: 0 0 180px;
    text-align: right;
    border-left: 1px solid var(--cl-border);
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.cl-price-discount-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-bottom: 2px;
}

.cl-discount-tag {
    font-size: 11px;
    font-weight: 700;
    color: #0d9488;
    font-style: italic;
}

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

.cl-price-val {
    font-size: 24px;
    font-weight: 800;
    color: var(--cl-text-dark);
    line-height: 1.1;
    margin-bottom: 2px;
}

.cl-price-sub {
    font-size: 10.5px;
    color: var(--cl-text-muted);
    margin-bottom: 10px;
    line-height: 1.2;
}

.cl-btn-select-cab {
    background: var(--cl-btn-cta, var(--cl-primary));
    background-image: none;
    color: #ffffff !important;
    border: none;
    border-radius: 8px;
    padding: 9px 20px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.cl-btn-select-cab:hover {
    background: var(--cl-primary-hover);
    background-image: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Bottom Amenity Banner */
.cl-card-amenity-row {
    background: #f0f8ff;
    border-radius: 0 0 16px 16px;
    margin: 12px -20px 0 -20px;
    padding: 6px 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #1e293b;
    font-weight: 600;
    border-top: 1px solid #e0f2fe;
}

.cl-amenity-sparkle {
    font-size: 12px;
}

.cl-amenity-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ─────────────────────────────────────────────────────────────
   6. SERVICE NOT AVAILABLE (EMPTY STATE)
   ───────────────────────────────────────────────────────────── */
.cl-service-unavailable-card {
    background: #ffffff;
    border: 1px solid var(--cl-border);
    border-radius: var(--cl-card-radius);
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.cl-su-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff1f2;
    color: #e11d48;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px auto;
}

.cl-su-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.cl-su-desc {
    font-size: 14px;
    color: var(--cl-text-muted);
    max-width: 540px;
    margin: 0 auto 24px auto;
    line-height: 1.5;
}

.cl-su-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cl-su-btn-call {
    background: #16a34a;
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.cl-su-btn-call:hover {
    background: #15803d;
}

.cl-su-btn-enq {
    background: var(--cl-primary);
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cl-su-btn-enq:hover {
    background: var(--cl-primary-hover);
}

/* ─────────────────────────────────────────────────────────────
   7. CAB LIST MODALS (LOCATION SEARCH, DATE PICKER, FILTERS)
   Mobile Bottom Sheet Modal Engine for Cab Listing
   ───────────────────────────────────────────────────────────── */
.ots-loc-modal-overlay,
.ots-modal-overlay,
.cl-search-modal-overlay,
.cl-filter-bottom-modal {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(15, 23, 42, 0.72) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    z-index: 9999999 !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    padding: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ots-loc-modal-overlay.is-active,
.ots-modal-overlay.is-active,
.cl-search-modal-overlay.is-active,
.cl-filter-bottom-modal.is-active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.cl-filter-bottom-modal.is-closing {
    opacity: 0 !important;
    visibility: visible !important;
    pointer-events: none !important;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ots-loc-modal-sheet,
.ots-modal-sheet,
.cl-search-modal-content,
.cl-filter-sheet {
    background: #ffffff !important;
    width: 100% !important;
    max-width: 560px !important;
    height: auto !important;
    max-height: 85vh !important;
    border-radius: 24px 24px 0 0 !important;
    box-shadow: 0 -15px 45px rgba(0, 0, 0, 0.35) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    transform: translateY(100%) !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    margin: 0 !important;
    will-change: transform !important;
}

.ots-loc-modal-overlay.is-active .ots-loc-modal-sheet,
.ots-modal-overlay.is-active .ots-modal-sheet,
.cl-search-modal-overlay.is-active .cl-search-modal-content,
.cl-filter-bottom-modal.is-active .cl-filter-sheet {
    transform: translateY(0) !important;
}

.cl-filter-bottom-modal.is-closing .cl-filter-sheet {
    transform: translateY(100%) !important;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ots-loc-modal-body,
.ots-modal-body {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    flex: 1 1 auto !important;
    max-height: calc(85vh - 75px) !important;
}

/* On Desktop screens, center single-box search/date modals nicely */
@media (min-width: 992px) {
    .ots-modal-overlay {
        align-items: center !important;
        padding: 16px !important;
    }
    .ots-modal-sheet {
        border-radius: 24px !important;
        max-width: 500px !important;
        transform: translateY(20px) scale(0.97) !important;
    }
    .ots-modal-overlay.is-active .ots-modal-sheet {
        transform: translateY(0) scale(1) !important;
    }
}

/* ── FULL-SCREEN MOBILE SEARCH POPUP (HOMEPAGE FORM) ── */
.cl-mob-search-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #f8fafc;
    z-index: 999990;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.cl-mob-popup-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cl-mob-popup-back-btn {
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 15px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.15s ease;
}

.cl-mob-popup-back-btn:active {
    background: #e2e8f0;
    transform: scale(0.95);
}

.cl-mob-popup-title-wrap {
    flex: 1;
    min-width: 0;
}

.cl-mob-popup-title {
    margin: 0;
    font-size: 15.5px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.cl-mob-popup-sub {
    margin: 2px 0 0 0;
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}

.cl-mob-popup-close-btn {
    background: none;
    border: none;
    font-size: 26px;
    color: #94a3b8;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
}

.cl-mob-popup-body {
    padding: 14px 12px 60px 12px;
}

.cl-mob-popup-body .home-booking-form {
    padding: 0;
    margin: 0;
}

.cl-mob-popup-body .container {
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 992px) {
    .ots-loc-modal-sheet,
    .ots-modal-sheet,
    .cl-search-modal-content {
        background: #ffffff;
        border-radius: 18px;
        width: 100%;
        max-width: 440px;
        max-height: 85vh;
        overflow-y: auto;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        position: relative;
        animation: clModalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

.ots-date-strip {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 6px 2px 8px 2px;
    scrollbar-width: thin;
}

.ots-date-card {
    flex: 0 0 50px;
    min-width: 50px;
    height: 54px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    padding: 3px 2px;
}

.ots-date-card:hover {
    border-color: var(--cl-primary);
    background: #eff6ff;
}

.ots-date-card.active {
    background: var(--cl-primary);
    border-color: var(--cl-primary);
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.ots-date-card.active .ots-dc-day,
.ots-date-card.active .ots-dc-num {
    color: #ffffff !important;
}

.ots-dc-day {
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
}

.ots-dc-num {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.ots-time-chips-scroll {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 4px 2px 6px 2px;
    scrollbar-width: thin;
}

.ots-time-chip {
    flex: 0 0 42px;
    height: 32px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ots-time-chip:hover {
    border-color: var(--cl-primary);
    background: #eff6ff;
}

.ots-time-chip.active {
    background: var(--cl-primary);
    border-color: var(--cl-primary);
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.ots-ampm-row {
    display: flex;
    gap: 6px;
    margin: 6px 0 10px 0;
}

.ots-ampm-btn {
    flex: 1;
    padding: 6px 10px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    font-size: 11.5px;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ots-ampm-btn.active {
    background: #eff6ff;
    border-color: var(--cl-primary);
    color: var(--cl-primary);
}

.ots-btn-done {
    width: 100%;
    padding: 10px;
    background: var(--cl-primary);
    background-image: none;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.5px;
    margin-top: 14px;
}

.ots-btn-done:hover {
    background: var(--cl-primary-hover);
    background-image: none;
}

/* ─────────────────────────────────────────────────────────────
   8. MOBILE RESPONSIVE ADAPTATIONS
   ───────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .cl-search-header-wrap {
        display: none !important;
    }

    .cl-mobile-top-header {
        display: block !important;
    }

    .cl-filter-card {
        display: none !important;
    }

    .cl-main-section {
        padding: 4px 0 80px 0 !important;
    }

    /* Mobile Listing Info Bar */
    .cl-listing-info-bar {
        margin: 0 4px 10px 4px !important;
        padding: 0 6px !important;
    }

    .cl-info-title-row {
        display: none !important;
    }

    .cl-sib-text {
        font-size: 11.5px !important;
        color: #64748b !important;
        font-weight: 500 !important;
        margin: 0 !important;
        line-height: 1.35 !important;
    }

    .cl-sib-text strong {
        color: #334155 !important;
        font-weight: 600 !important;
    }

    .cl-cards-wrapper {
        gap: 10px !important;
        padding-bottom: 0px !important;
    }

    .cl-cab-card {
        padding: 10px 12px 0 12px !important;
        border-radius: 16px !important;
        gap: 0 !important;
        cursor: pointer !important;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04) !important;
        transition: transform 0.15s ease, background 0.15s ease !important;
        -webkit-tap-highlight-color: transparent !important;
    }

    .cl-cab-card:active {
        background: #f8fafc !important;
        transform: scale(0.99) !important;
    }

    .cl-card-main-row {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 8px !important;
    }

    /* Left Col: Image in small square rounded box with pinned badge */
    .cl-card-col-img {
        flex: 0 0 74px !important;
        width: 74px !important;
        height: 64px !important;
        background: #f0f7ff !important;
        border: 1px solid #e0ecfb !important;
        border-radius: 12px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 4px 4px 0 4px !important;
        overflow: hidden !important;
        position: relative !important;
        text-align: center !important;
    }

    .cl-car-img-wrap {
        width: 58px !important;
        height: 36px !important;
        margin-bottom: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .cl-car-img {
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
    }

    .cl-fuel-badge {
        width: calc(100% + 8px) !important;
        max-width: calc(100% + 8px) !important;
        margin: 0 -4px 0 -4px !important;
        font-size: 9.5px !important;
        font-weight: 800 !important;
        padding: 2.5px 0 !important;
        border-radius: 0 0 11px 11px !important;
        margin-top: auto !important;
        line-height: 1.2 !important;
        letter-spacing: 0.3px !important;
        text-align: center !important;
        display: block !important;
    }

    /* Middle Col: Details */
    .cl-card-col-details {
        flex: 1 !important;
        min-width: 0 !important;
        padding: 0 4px !important;
    }

    .cl-cab-name {
        font-size: 12.5px !important;
        font-weight: 800 !important;
        color: #0f172a !important;
        line-height: 1 !important;
        /* white-space: nowrap !important; */
        /* overflow: hidden !important; */
        /* text-overflow: ellipsis !important; */
    }

    .cl-card-sub-row {
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
        margin-top: 1px !important;
        margin-bottom: 2px !important;
    }

    .cl-model-tag {
        font-size: 10px !important;
        color: #64748b !important;
    }

    .cl-rating-badge {
        font-size: 8.5px !important;
        padding: 1px 4px !important;
        border-radius: 3px !important;
    }

    .cl-cab-spec-chips {
        display: flex !important;
        flex-direction: column !important;
        gap: 1px !important;
        margin: 0 !important;
        font-size: 10.5px !important;
        font-weight: 600 !important;
        color: #334155 !important;
        line-height: 1.25 !important;
        align-items: start !important;
    }

    /* Right Col: Price Block */
    .cl-card-col-price {
        flex: 0 0 auto !important;
        width: auto !important;
        border-left: none !important;
        border-top: none !important;
        padding: 0 !important;
        text-align: right !important;
        align-items: flex-end !important;
        justify-content: center !important;
    }

    .cl-price-discount-row {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 3px !important;
        margin-bottom: 1px !important;
    }

    .cl-discount-tag {
        font-size: 10px !important;
        font-weight: 700 !important;
        color: #0d9488 !important;
        font-style: italic !important;
    }

    .cl-price-original {
        font-size: 10px !important;
        color: #94a3b8 !important;
        text-decoration: line-through !important;
    }

    .cl-price-val {
        font-size: 16.5px !important;
        font-weight: 800 !important;
        color: #0f172a !important;
        line-height: 1.15 !important;
        margin-bottom: 1px !important;
    }

    .cl-price-sub {
        font-size: 8.5px !important;
        color: #64748b !important;
        margin-bottom: 0 !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
    }

    .cl-btn-select-cab {
        display: none !important;
    }

    /* Bottom Amenity Banner Strip */
    .cl-card-amenity-row {
        margin: 8px -12px 0 -12px !important;
        padding: 5px 12px !important;
        border-radius: 0 0 16px 16px !important;
        font-size: 10px !important;
        gap: 4px !important;
    }

    .cl-amenity-sparkle {
        font-size: 11px !important;
    }
}

/* ─────────────────────────────────────────────────────────────
   9. DESKTOP SORT BY BAR
   ───────────────────────────────────────────────────────────── */
.cl-sort-bar-desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.cl-sbd-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cl-sbd-label {
    font-size: 13px;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: 0.5px;
}

.cl-sbd-options {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cl-sort-tab {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cl-sort-tab:hover {
    border-color: var(--cl-primary);
    color: var(--cl-primary);
    background: #eff6ff;
}

.cl-sort-tab.active {
    background: #eff6ff;
    border-color: var(--cl-primary);
    color: var(--cl-primary);
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* ─────────────────────────────────────────────────────────────
   10. MOBILE FLOATING BOTTOM FILTER & SORT BAR
   ───────────────────────────────────────────────────────────── */
.cl-mobile-bottom-bar {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 380px;
    background: #111827;
    border-radius: 14px;
    padding: 4px 6px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 99999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cl-mbb-btn {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 8px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}

.cl-mbb-btn:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.cl-mbb-btn i {
    font-size: 14px;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.cl-mbb-btn:active,
.cl-mbb-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.cl-mbb-btn:active i,
.cl-mbb-btn:hover i {
    color: #ffffff;
}

/* ─────────────────────────────────────────────────────────────
   11. MOBILE FILTER & SORT BOTTOM SHEET MODALS
   ───────────────────────────────────────────────────────────── */
.cl-filter-sheet {
    max-height: 85vh !important;
}

.cl-fmodal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.cl-fmodal-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.cl-fmodal-close {
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cl-fmodal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.cl-fmodal-body {
    padding: 10px 15px 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: calc(85vh - 130px);
}

.cl-fmodal-sec {
    margin-bottom: 20px;
}

.cl-fmodal-sec-title {
    font-size: 14px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
}

.cl-fmodal-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cl-fpill {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 3px 9px;
    font-size: 10.5px;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    line-height: 1.35;
    transition: all 0.15s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.cl-fpill:hover {
    border-color: var(--cl-primary);
    color: var(--cl-primary);
    background: #f0f7ff;
}

.cl-fpill.active {
    background: var(--cl-primary);
    border-color: var(--cl-primary);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.cl-fmodal-footer {
    padding: 0px 15px 15px 15px;
    border-top: 1px solid #f1f5f9;
    background: #ffffff;
}

.cl-fmodal-apply-btn {
    width: 100%;
    padding: 10px;
    background: var(--cl-primary);
    background-image: none;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
}

.cl-fmodal-apply-btn:hover {
    background: var(--cl-primary-hover);
    background-image: none;
}

/* Sort By List Styling */
.cl-sort-list-body {
    padding: 4px 0 16px 0;
}

.cl-sort-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: background 0.15s ease;
}

.cl-sort-item:hover {
    background: #f8fafc;
}

.cl-sort-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

.cl-sort-check {
    font-size: 14px;
    color: var(--cl-primary);
    display: none;
}

.cl-sort-item.active .cl-sort-name {
    font-weight: 800;
    color: var(--cl-primary);
}

.cl-sort-item.active .cl-sort-check {
    display: inline-block;
}

/* ─────────────────────────────────────────────────────────────
   12. DYNAMIC TEXT PRIMARY UTILITY
   ───────────────────────────────────────────────────────────── */
.text-primary, a.text-primary, span.text-primary, i.text-primary {
    color: var(--primary-color, var(--theme, var(--cl-primary))) !important;
}

/* ─────────────────────────────────────────────────────────────
   13. DROPDOWN SEARCH FILTER (Select2 Style for Desktop Bar)
   ───────────────────────────────────────────────────────────── */
.cl-dropdown-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 10;
}
.cl-dropdown-search i {
    color: #94a3b8;
    font-size: 12px;
}
.cl-dropdown-search-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: #1e293b;
    outline: none;
    padding: 2px 0;
}
.cl-dropdown-search-input::placeholder {
    color: #94a3b8;
    font-size: 12px;
}
.cl-dropdown-items-scroll {
    max-height: 260px;
    overflow-y: auto;
}

/* ─────────────────────────────────────────────────────────────
   14. ROUND TRIP ROUTE VISUALIZATION BANNER
   ───────────────────────────────────────────────────────────── */
.cl-roundtrip-route-banner {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--cl-primary, #5F2DED);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.cl-rt-banner-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.cl-rt-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0edfe;
    color: var(--cl-primary, #5F2DED);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.6px;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}
.cl-rt-subtitle {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}
.cl-rt-flow-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 10px;
    padding: 14px 18px;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
}
.cl-rt-node {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
}
.cl-rt-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.cl-rt-dot-start {
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}
.cl-rt-dot-mid {
    background: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
}
.cl-rt-dot-end {
    background: var(--cl-primary, #5F2DED);
    box-shadow: 0 0 0 3px rgba(95, 45, 237, 0.25);
}
.cl-rt-node-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.cl-rt-lbl {
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.cl-rt-city {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cl-rt-arrow-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex-shrink: 0;
    padding: 0 8px;
}
.cl-rt-dist-badge {
    font-size: 10.5px;
    font-weight: 700;
    color: #64748b;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 1px 6px;
    border-radius: 12px;
    white-space: nowrap;
}
.cl-rt-line {
    color: #94a3b8;
    font-size: 12px;
}
.cl-rt-footer-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 12.5px;
    color: #475569;
}

/* ─────────────────────────────────────────────────────────────
   15. FLOATING DESKTOP BACK BUTTON
   ───────────────────────────────────────────────────────────── */
.cl-floating-back-wrap {
    position: fixed;
    left: 24px;
    bottom: 30px;
    z-index: 998;
}
.cl-floating-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #0b132b;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}
.cl-floating-back-btn:hover {
    background: var(--cl-primary, #5F2DED);
    color: #ffffff !important;
    transform: translateX(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(95, 45, 237, 0.45);
    border-color: rgba(255, 255, 255, 0.4);
}
.cl-floating-back-btn i {
    font-size: 12px;
    transition: transform 0.2s ease;
}
.cl-floating-back-btn:hover i {
    transform: translateX(-2px);
}
@media (max-width: 991px) {
    .cl-floating-back-wrap {
        display: none !important;
    }
}

/* ─────────────────────────────────────────────────────────────
   16. SAME PICKUP & DROP CITY BILINGUAL WARNING MODAL
   ───────────────────────────────────────────────────────────── */
.cl-same-city-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1000001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: clFadeIn 0.2s ease;
}
.cl-same-city-modal-box {
    background: #ffffff;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    padding: 28px 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: clSlideUp 0.22s ease-out;
}
@keyframes clFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes clSlideUp {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.cl-scm-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.cl-scm-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}
.cl-scm-icon-wrap {
    margin-bottom: 14px;
}
.cl-scm-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef2f2;
    border: 1px solid #fee2e2;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 20px;
}
.cl-scm-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.cl-scm-title-hi {
    font-size: 15px;
    font-weight: 700;
    color: #475569;
}
.cl-scm-badge {
    display: inline-block;
    background: #f1f5f9;
    color: var(--cl-primary, #5F2DED);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.cl-scm-msg-en {
    font-size: 13.5px;
    color: #334155;
    line-height: 1.5;
    margin-bottom: 10px;
}
.cl-scm-msg-hi {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 20px;
    background: #f8fafc;
    padding: 10px 14px;
    border-radius: 8px;
}
.cl-scm-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cl-scm-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    width: 100%;
}
.cl-scm-btn i {
    font-size: 18px;
}
.cl-scm-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.cl-scm-btn strong {
    font-size: 13.5px;
    line-height: 1.2;
}
.cl-scm-btn small {
    font-size: 11px;
    opacity: 0.85;
}
.cl-scm-btn-primary {
    background: var(--cl-primary, #5F2DED);
    color: #ffffff !important;
}
.cl-scm-btn-primary:hover {
    background: var(--cl-primary-hover, #4b1fd1);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(95, 45, 237, 0.35);
}
.cl-scm-btn-secondary {
    background: #f1f5f9;
    color: #334155 !important;
    border: 1px solid #e2e8f0;
}
.cl-scm-btn-secondary:hover {
    background: #e2e8f0;
    color: #0f172a !important;
}

