:root {
    --primary-orange: #FF6F43;
    --dark-orange: #E65C35;
    --light-orange-bg: #FFF0EB;
    --muted-orange: #FFBFA8;
    --border-gray: #ccc;
    --icon-gray: #555555;
    --error-red: #dc3545;
    --selected-bg: #fff5f2;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/*body, input, button, select, textarea {*/
/*    font-family: 'Poppins', sans-serif !important;*/
/*}*/

/*body.ar-mode, body.ar-mode input, body.ar-mode button, body.ar-mode select, body.ar-mode textarea {*/
/*    font-family: 'Cairo', sans-serif !important;*/
/*}*/

/*body {*/
/*    background-color: #000;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    min-height: 100vh;*/
/*}*/

.custom-navbar {
    background-color: #000;
    padding: 15px 0;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    direction: ltr !important;
}

.custom-nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 20px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-logo {
    height: 35px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a:hover, .nav-links a.active-link {
    color: var(--primary-orange);
}

.nav-links i {
    font-size: 10px;
}

.mobile-only {
    display: none !important;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-track-btn, .nav-login-btn {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-track-btn {
    background-color: var(--primary-orange);
    padding: 8px 15px;
    border-radius: 6px;
    transition: 0.3s;
}

.nav-track-btn:hover {
    background-color: var(--dark-orange);
}

.nav-login-btn:hover {
    color: var(--primary-orange);
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 2100;
}

.nav-right .lang-btn {
    background: transparent;
    border: 1px solid #555;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    outline: none;
}

.nav-right .lang-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.nav-right .lang-btn i {
    font-size: 14px;
    color: inherit;
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 70px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    gap: 20px;
    min-width: 0;
}

.hero-text-col {
    flex: 1;
    color: #fff;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s forwards;
    animation-delay: 1s;
}

.hero-text-wrapper h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.highlight-text {
    color: var(--primary-orange);
    display: inline-block;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.highlight-text.fade-out {
    opacity: 0;
    transform: translateX(20px);
}

.hero-text-wrapper p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 500px;
    color: #e0e0e0;
    margin: 0;
}

.hero-form-col {
    flex: 0 0 450px;
    max-width: 100%;
    min-width: 0;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s forwards;
    animation-delay: 2.5s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.rides_box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    overflow: visible;
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.ride_tabs ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    background: #fff;
    border-radius: 11px 11px 0 0;
    overflow: visible;
    border-bottom: 1px solid var(--border-gray);
}

body.ar-mode .ride_tabs ul {

}

.ride_tabs li {
    flex: 1;
    border-right: 1px solid var(--border-gray);
    position: relative;
}

.ride_tabs li:first-child { border-top-left-radius: 11px; }
.ride_tabs li:last-child { border-top-right-radius: 11px; border-right: none; }

body.ar-mode .ride_tabs li {
    border-left: none;
    border-right: 1px solid var(--border-gray);
}
body.ar-mode .ride_tabs li:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 11px;
    border-right: none;
}
body.ar-mode .ride_tabs li:last-child {
    border-top-left-radius: 11px;
    border-top-right-radius: 0;
    border-left: none;
}

.rideTabBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 5px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    background: transparent;
    cursor: pointer;
    border: none;
    width: 100%;
    white-space: nowrap;
    border-radius: inherit;
}

body.ar-mode .rideTabBtn { flex-direction: row-reverse; }

.rideTabBtn i, .rideTabBtn svg, .rideTabBtn img {
    width: 20px;
    height: 20px;
    color: #333;
    object-fit: contain;
}

.rideTabBtn.active {
    background-color: var(--primary-orange);
    color: #fff;
}

.rideTabBtn.active i, .rideTabBtn.active svg { color: #fff; }
.rideTabBtn.active img { filter: brightness(0) invert(1); }

.tab-info-btn {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 16px;
    height: 16px;
    background-color: #ffbfa8;
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 50;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

body.ar-mode .tab-info-btn {
    right: auto;
    left: 3px;
}

.tab-tooltip {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    font-size: 12px;
    color: #333;
    text-align: center;
    line-height: 1.4;
    white-space: normal;
}

.tab-tooltip::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}

.rides_form {
    padding: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
}
.ride_tab_show { display: none; }
.ride_tab_show.active-content { display: block; }

.form_row {
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
}


.form_cell { flex: 1; position: relative; }
.cellCol50 { width: 50%; }

.form_field {
    position: relative;
    background-color: #fff;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    height: 48px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.form_field:hover {
    cursor: pointer;
    border-color: var(--primary-orange);
}

.form_field:focus-within, .form_field.active-field {
    border-color: var(--primary-orange);
    box-shadow: 0 4px 10px rgba(255, 111, 67, 0.1);
}

.form_field.input-error { border-color: var(--error-red) !important; }

.error_text {
    color: var(--error-red);
    font-size: 11px;
    margin-top: 4px;
    display: block;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
}
body.ar-mode .error_text { text-align: right; }

.floating-input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    padding: 0 15px 0 45px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    outline: none;
    z-index: 2;
    cursor: inherit;
}
body.ar-mode .floating-input { padding: 0 45px 0 15px; text-align: right; font-size: 14px;}
/*body.ar-mode .floating-input { text-align: right; }*/
body.ar-mode input[name="tracking_number"]{
    text-align: right;
    padding: 8px;
}
.time-trigger { padding-right: 15px !important; padding-left: 45px !important; }
body.ar-mode .time-trigger { padding-right: 45px !important; padding-left: 15px !important; }

.field_icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 3;
    pointer-events: none;
}
.field_icon svg { width: 22px; height: 22px; }
.field_icon svg path, .field_icon svg circle { stroke: var(--icon-gray) !important; fill: transparent; }
.field_icon.filled-icon svg path { fill: var(--icon-gray) !important; stroke: none !important; }
body.ar-mode .field_icon { left: auto; right: 15px; }

.dropdown-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.dropdown-arrow svg path { stroke: var(--icon-gray) !important; }
body.ar-mode .dropdown-arrow { right: auto; left: 15px; }
.form_field.active-field .dropdown-arrow { transform: translateY(-50%) rotate(180deg); }

.form_field.with-border-label { margin-top: 12px; }
.border-label {
    position: absolute;
    top: -10px;
    left: 12px;
    background: #fff;
    padding: 0 6px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    z-index: 4;
    pointer-events: none;
    line-height: 1;
}
body.ar-mode .border-label { left: auto; right: 12px; }
.form_field.with-border-label .floating-input::placeholder { color: #999; opacity: 1; }

.search-dropdown-list, .customDropdownBox, .time-picker-dropdowns {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 999;
    margin-top: 5px;
    border: 1px solid #eee;
}
.customDropdownBox { padding: 10px; }
.search-dropdown-list { background: #f4f4f4; overflow: hidden; }
.time-picker-dropdowns { background: #f4f4f4; }

.select2-search {
    display: block;
    padding: 8px;
    background: #fff;
    border-bottom: 1px solid #eee;
}
.select2-search__field {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    outline: none;
}
.select2-search__field:focus { border-color: var(--primary-orange); }

.custom-options, .time-picker-list-single {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 180px;
    overflow-y: auto;
}
.time-picker-dropdowns.single-col-time {
    display: none;
    flex-direction: column;
    max-height: 250px;
    height: auto;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    z-index: 1005;
    background: #fff;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.custom-options li, .time-picker-list-single li {
    padding: 8px 12px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    transition: 0.2s;
    border-bottom: 1px solid #f0f0f0;
}
.time-picker-list-single li { text-align: center; }
.custom-options li:hover, .time-picker-list-single li:hover {
    background-color: var(--light-orange-bg);
    color: var(--primary-orange);
}
[dir="rtl"] .custom-options li { text-align: right; }

.time-picker-dropdowns.single-col-time::-webkit-scrollbar,
.custom-options::-webkit-scrollbar { width: 6px; }
.time-picker-dropdowns.single-col-time::-webkit-scrollbar-thumb,
.custom-options::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

.adults_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}
.adults_row:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.adults_info h4 { margin: 0; font-size: 14px; font-weight: 600; color: #333; }
.adults_info p { margin: 0; font-size: 12px; color: #777; margin-top: 2px; }
body.ar-mode .adults_info { text-align: right; }

.increment-box {
    display: flex;
    align-items: center;
    background: #efefef;
    border-radius: 6px;
    overflow: hidden;
    height: 40px;
    width: 110px;
    justify-content: space-between;
    padding: 0 5px;
}
.increment-box button {
    border: none;
    background: transparent;
    width: 30px;
    height: 100%;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.increment-box button:hover { color: var(--primary-orange); }
.increment-box input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    outline: none;
    -moz-appearance: textfield;
}

.trip-type-row { margin-bottom: 15px; }
.radio-group { display: flex; gap: 15px; justify-content: flex-start; align-items: center; }

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    padding: 8px 15px;
    border-radius: 8px;
    transition: 0.3s;
}
body.ar-mode .radio-option { flex-direction: row-reverse; }
.radio-option:hover { background-color: #f9f9f9; }
.radio-option input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-gray);
    border-radius: 50%;
    position: relative;
    transition: 0.3s;
}
.radio-option input[type="radio"]:checked+.radio-custom { border-color: var(--primary-orange); }
.radio-option input[type="radio"]:checked+.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary-orange);
    border-radius: 50%;
}
.radio-label { font-weight: 600; user-select: none; }

.all_btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    transition: 0.3s;
}
.rides_search_btn {
    background-color: var(--dark-orange);
    color: #fff;
    border: none;
    padding: 18px;
    font-size: 16px;
    border-radius: 0 0 12px 12px;
}

.packages_container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    width: 100%;
    scroll-behavior: smooth;
    width: 100%;
    padding-bottom: 20px;
    align-items: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.packages_container::-webkit-scrollbar {
    display: none;
}

.custom-scrollbar-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 5px 0 5px;
    width: 100%;
    box-sizing: border-box;
}

.scroll-btn {
    background: none;
    border: none;
    color: var(--primary-orange);
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    line-height: 1;
}

.scroll-btn:hover { color: var(--dark-orange); transform: scale(1.2); }

.scroll-track {
    flex-grow: 1;
    height: 5px;
    background-color: #f0f0f0;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.scroll-thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--primary-orange);
    border-radius: 4px;
    width: 20%;
    cursor: grab;
    transition: background-color 0.2s;
}

.scroll-thumb:active { cursor: grabbing; background-color: var(--dark-orange); }



.pkg_categories {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
body.ar-mode .pkg_categories { flex-direction: row-reverse; }

.pkg_cat_btn {
    background: #fff;
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    padding: 8px 10px;
    font-size: 12px;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-weight: 600;
    flex: 0 0 auto;
    white-space: nowrap;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}
.pkg_cat_btn:hover { border-color: var(--primary-orange); color: var(--primary-orange); }
.pkg_cat_btn.active { background-color: var(--primary-orange); border-color: var(--primary-orange); color: #fff; }

.pkg_name_filter_wrapper {
    margin: 15px 0;
    padding: 0;
    position: relative;
}

.pkg_name_filter_wrapper .form_field {
    margin-bottom: 0;
    cursor: pointer;
    position: relative;
}

.pkg_name_filter_wrapper .floating-input {
    border: none;
    padding: 0 45px 0 45px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    padding: 0 45px 0 45px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    font-weight: 500;
}

.pkg_name_filter_wrapper .field_icon svg path {
    fill: currentColor !important;
    stroke: none !important;
}
.pkg_name_filter_wrapper .field_icon svg polygon {
    fill: none !important;
    stroke: currentColor !important;
}

.pkg_name_filter_wrapper .field_icon {
    left: 15px;
}

.pkg_name_filter_wrapper .field_icon svg {
    width: 24px;
    height: 24px;
}

.pkg_name_filter_wrapper .field_icon svg path,
.pkg_name_filter_wrapper .field_icon svg polygon {
    stroke: #666;
    fill: #666;
}

.pkg_name_filter_wrapper .dropdown-arrow {
    position: absolute;
    right: 15px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.pkg_name_filter_wrapper .dropdown-arrow i {
    color: #666;
    font-size: 16px;
    display: block;
}

.pkg_name_filter_wrapper .form_field.active-field .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}

body.ar-mode .pkg_name_filter_wrapper .floating-input {
    padding: 0 45px 0 45px;
    text-align: right;
}

body.ar-mode .pkg_name_filter_wrapper .field_icon {
    left: auto;
    right: 15px;
}

body.ar-mode .pkg_name_filter_wrapper .dropdown-arrow {
    right: auto;
    left: 15px;
}

.pkg_name_filter_wrapper .search-dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-height: 300px;
    overflow-y: auto;
    z-index: 50;
    margin-top: 5px;
    display: none;
}

.pkg_name_filter_wrapper .search-dropdown-list .select2-search {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.pkg_name_filter_wrapper .search-dropdown-list .select2-search__field {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.pkg_name_filter_wrapper .search-dropdown-list .custom-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkg_name_filter_wrapper .search-dropdown-list .custom-options li {
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f5f5f5;
}

.pkg_name_filter_wrapper .search-dropdown-list .custom-options li:hover {
    background: #f8f8f8;
}

.pkg_name_filter_wrapper .search-dropdown-list .custom-options li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .pkg_name_filter_wrapper {
        margin: 12px 0;
    }

    .pkg_name_filter_wrapper .floating-input {
        font-size: 14px;
        padding: 0 40px 0 40px;
    }
}

.package_card:hover { transform: translateY(-3px); }

.pkg_header {
    height: 130px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-image: url('../assets/images/package.webp');
}
.pkg_badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 6px;
}
body.ar-mode .pkg_badge { right: auto; left: 12px; }


.pkg_body {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
body.ar-mode .pkg_body { text-align: right; }

.pkg_header_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.pkg_title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.pkg_price {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 20px;
    white-space: nowrap;
}

.pkg_separator {
    height: 1px;
    background: #e0e0e0;
    margin: 3px 8px;
}

.pkg_content_grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 10px;
    align-items: start;
}

.pkg_details_col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pkg_label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.pkg_desc {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    padding-bottom: 1px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pkg_car_info_box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: #fafafa;
    max-width: 150px;
}

.pkg_car_name {
    font-size: 10px;
    font-weight: 600;
    color: #555;
    text-align: center;
    line-height: 1.2;
}

.pkg_car_img_wrapper {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pkg_car_img_wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pkg_car_specs {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #666;
}

.pkg_spec_item {
    display: flex;
    align-items: center;
    gap: 2px;
}

.pkg_spec_icon {
    font-size: 13px;
    display: flex;
    align-items: center;
}

.pkg_spec_icon img {
    height: 16px;
    width: auto;
    display: block;
}

.pkg_spec_value {
    font-weight: 600;
    font-size: 10px;
}

.pkg_spec_dot {
    color: #999;
    font-weight: bold;
}

.pkg_footer {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pkg_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pkg_tag {
    background: #f3f3f3;
    color: #555;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 500;
}

.video-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
    position: relative;
    background: #000;
    border: 1px solid #e0e0e0;
}
video { width: 100%; height: auto; display: block; cursor: pointer; }
.custom-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
.custom-play-btn i { color: #fff; font-size: 30px; margin-left: 5px; }

#ui-datepicker-div {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    padding: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    width: 240px;
    display: none;
    position: absolute;
    z-index: 99999;
}
body.ar-mode #ui-datepicker-div { font-family: 'Cairo', sans-serif !important; direction: rtl; }
.ui-datepicker-header {
    background-color: var(--primary-orange);
    color: #fff;
    padding: 8px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.ui-datepicker-prev, .ui-datepicker-next {
    cursor: pointer;
    font-weight: bold;
    color: #fff !important;
    padding: 0 8px;
}
body.ar-mode .ui-datepicker-prev { order: 2; }
body.ar-mode .ui-datepicker-next { order: 0; }
.ui-datepicker-title { display: flex; gap: 5px; font-weight: 600; }
.ui-datepicker-title select {
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    padding:2px;
}
.ui-datepicker-title select option { color: #333; }
.ui-datepicker-calendar { width: 100%; border-collapse: collapse; }
.ui-datepicker-calendar th { color: #333; padding: 6px 0; font-weight: 600; }
.ui-datepicker-calendar td { text-align: center; padding: 2px; }
.ui-datepicker-calendar td a {
    display: block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 4px;
    text-decoration: none;
    color: #666;
    margin: 0 auto;
    transition: 0.2s;
    cursor: pointer;
}
.ui-datepicker-calendar td a:hover { background-color: var(--light-orange-bg); color: var(--primary-orange); }
.ui-datepicker-calendar td a.ui-state-active {
    background-color: var(--dark-orange) !important;
    color: #fff !important;
    font-weight: 600;
    border-radius: 4px;
}
.ui-datepicker-calendar td a.ui-state-disabled {
    color: #ccc !important;
    background: transparent !important;
    cursor: default !important;
    pointer-events: none !important;
    box-shadow: none !important;
}

@media (max-width: 1024px) {
    .nav-right { display: none; }

    .mobile-menu-toggle { display: block; }

    .nav-links {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 300px;
        height: 100vh;
        background-color: #f9f9f9;
        padding: 15px;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        z-index: 2000;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-only {
        display: flex !important;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .lang-btn-mobile {
        background: transparent;
        border: 1px solid #333;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        color: #333;
        display: flex;
        align-items: center;
        gap: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .lang-btn-mobile:hover {
        border-color: var(--primary-orange);
        color: var(--primary-orange);
    }

    .mobile-action-row {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 25px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .mobile-track-btn {
        background-color: var(--primary-orange);
        color: #fff;
        padding: 8px 12px;
        border-radius: 5px;
        font-weight: 700;
        text-decoration: none;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        flex: 0 0 auto;
        width: auto;
        justify-content: center;
        text-transform: uppercase;
        transition: 0.3s;
    }

    .mobile-track-btn:hover {
        background-color: var(--dark-orange);
    }

    .mobile-login-link {
        color: #000 !important;
        text-decoration: none;
        font-size: 12px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 5px;
        white-space: nowrap;
        transition: 0.3s;
    }

    .mobile-login-link:hover {
        color: var(--primary-orange) !important;
    }

    .nav-links > a:not(.mobile-only) {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 15px 0;
        color: #333;
        font-size: 16px;
        font-weight: 600;
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-links > a:not(.mobile-only):hover {
        color: var(--primary-orange);
    }

    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 2100;
        position: fixed;
        top: 25px;
        right: 20px;
    }


    .bar {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #fff;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: #000;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: #000;
    }
    .hero-container {
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding-top: 20px;
        min-height: auto;
    }

    .hero-text-col {
        text-align: center;
        margin-bottom: 0px;
    }

    .hero-text-wrapper h1 { font-size: 32px; }
    .hero-text-wrapper p { margin: 0 auto 30px auto; }

    .hero-form-col {
        width: 100%;
        max-width: 550px;
        flex: 0 0 auto;
        min-width: 0;
    }

    .rides_form { padding: 15px; }
    .form_row { margin-bottom: 10px; }
    .form_field { height: 48px; }
    .form_field.with-border-label { margin-top: 8px; }
    .trip-type-row { margin-bottom: 10px; }
    .rides_search_btn { padding: 14px; }
    .rideTabBtn { padding: 12px 5px; }
}


@media (max-width: 1024px) {
    .hero-text-wrapper p {
        display: none;
    }
    .hero-text-wrapper h1 {
        margin-bottom: 0px;
        font-size: 28px;
    }
    .hero-container {
        padding-top: 15px;
        gap: 2px;
        height: auto;
        justify-content: flex-start;
        padding-bottom: 40px;
    }

    .hero-section {
        min-height: calc(100vh - 70px);
        min-height: calc(100dvh - 70px);
        height: auto;
        padding-bottom: 0px;
        align-items: center;
        overflow-x: hidden;
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .nav-links {
        width: 80%;
        min-width: auto;
    }

    .hero-container { padding-left: 10px; padding-right: 10px; }


    .rides_form { padding: 10px 12px; }
    .form_row { flex-wrap: wrap; gap: 4px; margin-bottom: 8px; }
    .cellCol50 { width: 100%; }

    .form_field { height: 42px; }
    .floating-input { font-size: 14px; }
    .form_field.with-border-label { margin-top: 5px; }
    .border-label { top: -8px; font-size: 10px; }

    .trip-type-row { margin-bottom: 8px; }

    .rides_search_btn { padding: 10px; font-size: 14px; }

    #ui-datepicker-div {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%);
        width: 90%;
    }

    .rideTabBtn {
        flex-direction: row;
        padding: 8px 2px;
        justify-content: center;
        gap: 4px;
    }

    .rideTabBtn span {
        display: inline-block;
        font-size: 11px;
        white-space: nowrap;
    }

    body.ar-mode .rideTabBtn span { margin-left: 0; margin-right: 2px; }

    .rideTabBtn i, .rideTabBtn svg, .rideTabBtn img {
        width: 14px;
        height: 14px;
        font-size: 14px;
        margin: 0;
        flex-shrink: 0;
    }

    .ride_tabs li { min-width: 0; }

    .hero-text-wrapper h1 { font-size: 20px; margin-bottom: 2px; }

    .custom-options, .time-picker-list-single, .time-picker-dropdowns.single-col-time {
        max-height: 140px !important;
    }
}

@media (max-width: 425px) {
    .pkg_header { height: 100px !important; }
    .pkg_car_box { height: 45px !important; width: 70px !important; }
    .pkg_desc { margin-bottom: 2px !important; }

    .tab-info-btn {
        width: 14px;
        height: 14px;
        font-size: 9px;
        top: 2px;
        right: 2px;
    }

    body.ar-mode .tab-info-btn {
        right: auto;
        left: 2px;
    }

    .tab-tooltip {
        width: 180px;
        font-size: 11px;
    }
}

@media (max-width: 355px) {
    .pkg_body { padding: 10px !important; }
    .pkg_title { font-size: 15px !important; }
    .pkg_desc { font-size: 11px !important; margin-bottom: 2px !important; }
    .pkg_header { height: 120px !important; }
    .pkg_car_box { height: 48px !important; width: 80px !important; }
    .hero-text-wrapper h1 { font-size: 18px !important; }
    .pkg_cat_btn { padding: 5px 8px; font-size: 11px; }
}

@media (max-width: 320px) {
    .pkg_header { height: 85px !important; }
    .pkg_body { padding: 2px !important; gap: 2px !important; }
    .pkg_categories { margin-bottom: 2px !important; }
    .packages_container { padding: 0 5px !important; }

    .pkg_separator { margin: 2px 4px !important; }
    .pkg_content_grid { gap: 5px !important; }
    .pkg_title { font-size: 13px !important; margin-bottom: 0 !important; }
    .pkg_price { font-size: 14px !important; }
    .pkg_car_box { padding: 1px !important; gap: 0 !important; }
    .pkg_car_img_wrapper { height: 30px !important; }
    .pkg_desc { line-height: 1.3 !important; font-size: 9px !important; -webkit-line-clamp: 3; padding-bottom: 1px; }
    .pkg_tag { padding: 1px 5px !important; font-size: 9px !important; }
    .pkg_footer { gap: 2px !important; }

    .rides_form.packages-tab-active {
        padding: 1px 1px !important;
    }
    .rides_form.packages-tab-active .pkg_categories {
        margin-bottom: 0px !important;
        gap: 2px !important;
    }
    .rides_form.packages-tab-active .packages_container {
        padding: 1px 0 !important;
    }
    .rides_form.packages-tab-active .custom-scrollbar-wrapper {
        padding: 0px 3px 0 3px !important;
    }
    .rides_form.packages-tab-active .pkg_cat_btn {
        padding: 3px 6px !important;
        font-size: 10px !important;
        height: 26px !important;
    }
}


.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 2000;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    display: block;
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 15px;
        right: 10px;
    }
    .whatsapp-float img {
        width: 40px;
        height: 40px;
    }
}

.package_card {
    cursor: default !important;
}

.pkg_choose_btn {
    width: 100%;
    display:block;
    text-align:center;
    background-color: var(--dark-orange);
    color: #fff;
    border: none;
    padding: 4px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    font-family: inherit;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .rides_form.packages-tab-active {
        padding: 2px 2px !important;
    }
    .rides_form.packages-tab-active .pkg_categories {
        margin-bottom: 1px !important;
        gap: 4px !important;
    }
    .rides_form.packages-tab-active .packages_container {
        padding: 2px 0 !important;
    }
    .rides_form.packages-tab-active .custom-scrollbar-wrapper {
        padding: 1px 5px 0 5px !important;
    }
}

.pkg_choose_btn:hover {
    background-color: #d14924;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 92, 53, 0.3);
}

@media (max-width: 576px) {
    .pkg_choose_btn {
        margin-top: 8px;
    }
    .pkg_categories {
        margin-bottom: 5px !important;
    }
}

.rides_form {
    padding: 15px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}


.packages_container {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    width: 100%;
    min-width: 0;
    padding: 10px 2px;
    align-items: flex-start;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

@media (max-width: 1024px) {
    .packages_container {
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    .packages_container::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        background: transparent !important;
        -webkit-appearance: none !important;
    }
}


.packages_container .package_item {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
    padding: 0 3px;
    box-sizing: border-box;
}

.package_card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    cursor: auto;
    width: 100%;
    height: auto;
    margin-bottom: 5px;
    box-sizing: border-box;
}

.packages_container .package_item .package_card {
    display: block;
}

.pkg-pagination-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 5px 0 10px 0;
    width: 100%;
}

.pkg-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e0e0e0;
    transition: all 0.3s ease;
}

.pkg-dot.active {
    background-color: var(--primary-orange);
    transform: scale(1.2);
}

.custom-scrollbar-wrapper {
    display: flex;
    direction: ltr !important;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 2px 5px 0 5px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 100;
}

.scroll-btn {
    background: none;
    border: none;
    color: var(--primary-orange);
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    line-height: 1;
}

.scroll-btn:hover { color: var(--dark-orange); transform: scale(1.2); }

.scroll-track {
    flex-grow: 1;
    height: 5px;
    background-color: #f0f0f0;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}
.scroll-thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--primary-orange);
    border-radius: 4px;
    width: 20%;
    cursor: grab;
    transition: background-color 0.2s;
}
.scroll-thumb:active { cursor: grabbing; background-color: var(--dark-orange); }

html[dir="ltr"] .hero-text-wrapper, html[dir="ltr"] .pkg_details_col, html[dir="ltr"] .pkg_footer, html[dir="ltr"] #package-options-list li{
    text-align:left;
}
.payment-option-card{
    display: flex;
    background: rgb(249, 249, 249);
    border-color: rgb(238, 238, 238);
}
.payment-option-card.selected{
    border-color: rgb(232, 92, 46);
    background:#fff5f2;
}
