@import url("https://fonts.googleapis.com/css2?family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap");

body {
    font-family: "Zain", serif;
    text-align: right;
}

a {
    text-decoration: none;
}

.full-width {
    display: block;
    width: 100%;
}
.FlexBox {
    display: flex;
}

.p-2 {
    padding: 2px;
}

.padding-5 {
    padding: 5px;
}

.br-5 {
    border-radius: 5px;
}

.br-10 {
    border-radius: 10px;
}

.card-white {
    background: #fff;
    padding: 25px;
    /*border-radius: 10px;*/
}

.full-radius {
    border-radius: 100px !important;
}

.sec-btn {
    background: #131d3d;
    border-radius: 10px;
    font-size: 18px;
    text-decoration: none;
    padding: 11px 24px 0px 24px;
    color: #fff;
    display: inline-block;
    text-align: center;
}

.btn-main-color {
    background: #ff6900;
    border-radius: 10px;
    font-size: 18px;
    text-decoration: none;
    padding: 8px 24px 8px 24px;
    color: #fff;
    display: inline-block;
    text-align: center;
    border-style: none;
}

.btn-border-main-color {
    background: #fff;
    border-radius: 10px;
    font-size: 18px;
    text-decoration: none;
    padding: 8px 24px 8px 24px;
    color: #ff6900;
    display: inline-block;
    text-align: center;
    border: 1px solid #ff6900;
}

.btn-danger-color {
    background: #bc3226;
    border: 1px solid #bc3226;
}

.sec-btn i {
    padding-right: 10px;
}

input,
select,
textarea {
    display: block;
    width: 100%;
    border-style: none !important;
    /* background: #ecfdf3; */
    border: 1px solid #0000002d !important;
    margin-bottom: 20px;
    border-radius: 13px;
    outline: none;
    padding: 10px 20px;
}

.dark-input,
.dark-select,
.dark-textarea {
    display: block;
    width: 100%;
    border-style: none !important;
    background: #efefef;
    border: none;
    margin-bottom: 20px;
    border-radius: 8px;
    outline: none;
    padding: 12px 20px;
}

.box-input {
    border: 1px solid #ff6900;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.box-input input,
.box-input select {
    display: inline-block;
    width: auto;
    border-style: none !important;
    margin-bottom: 0px;
    padding: 0px;
}

.box-input i {
    font-size: 22px;
    color: #ff6900;
}

.box-input span {
    font-size: 26px;
    padding: 0px 10px;
    display: inline-block;
    color: #ff6900;
}

.box-input label {
    position: absolute;
    margin-top: -23px;
    background: #fff;
    padding: 0px 18px;
    color: #686868d7;
    font-size: 18px;
}

.card {
    padding: 30px;
    border-radius: 20px;
    background: #673ab708;
}

.btn-action {
    font-size: 20px;
    padding: 10px;
    color: var(--bs-indigo);
    cursor: pointer;
    background: transparent;
    border-style: none;
    font-weight: 900;
}

.btn-action .fa-trash-alt {
    color: var(--bs-red);
}

.swapCities {
    position: absolute;
    right: 192px;
    top: 12px;
    font-size: 24px;
    color: #ffffff;
    width: 25px;
    cursor: pointer;
    font-size: 13px;
    background: #000;
    height: 25px;
    border-radius: 30px;
    padding: 5px 7px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    user-select: none;
}

.custom-checkbox input {
    display: none; /* إخفاء مربع الاختيار الافتراضي */
}

.custom-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #007bff;
    border-radius: 4px;
    display: inline-block;
    margin-right: 10px;
    position: relative;
    background: #fff;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.custom-checkbox input:checked + .checkmark {
    background-color: #007bff;
    border-color: #007bff;
}

.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-checkbox input:checked + .checkmark::after {
    opacity: 1;
}

.btn-register {
    padding: 20px;
    display: block;
    font-size: 22px;
}

.btns-login {
    background: aliceblue;
    display: table;
    margin: auto;
    padding: 14px 7px;
    border-radius: 38px;
    font-weight: 500;
}

.btns-login a {
    padding: 10px 20px;
    border-radius: 33px;
    letter-spacing: 1px;
    font-size: 18px;
}

.btns-login .active {
    background: var(--bs-blue);
    color: #fff;
}

.menu-right {
    background: #cff4fc17;
    height: 100vh;
}

.menu-right li {
    font-size: 20px;
    list-style: none;
    /* border-bottom: 1px solid #ccc; */
    padding: 10px;
}

.menu-right li i {
    font-weight: 300;
    width: 35px;
    color: #969cba;
    text-align: center;
}
.menu-right li a {
    color: #969cba;
}

.menu-right .active-menu {
    background: #ff6900;
    color: #fff;
    border-radius: 10px;
}

.active-menu a,
.active-menu i {
    color: #fff !important;
}

.main-color {
    color: #ff6900;
}

.btn-action {
    font-size: 20px;
    padding: 9px;
    color: var(--bs-indigo);
    cursor: pointer;
    background: transparent;
    border-style: none;
    font-weight: 900;
    width: 40px !important;
    height: 40px !important;
    color: #fff;
    border-radius: 100px;
    display: inline-block;
}

.bg-gray {
    background-color: gray;
}

.bg-red {
    background-color: #ff3d00;
}

.form-icon {
    border-radius: 80px;
    position: relative;
    display: flex;
    padding: 0px 5px;
    margin-bottom: 20px;
}

.form-icon label {
    display: inline-block;
    position: absolute;
    right: 39px;
    top: -11px;
    background: #fff;
    padding: 0px 10px;
    color: #6B6B6B;
    font-size: 15px;
}

.form-icon input,
.form-icon select {
    width: 100%;
    display: inline-block;
    margin-bottom: 0px;
    border-style: none !important;
    padding: 10px 0px;
}
.form-join-car .col-md-2 {
    padding: 3px;
}

/*.form-icon input[type="datetime-local"] {*/
/*    margin-right: -44px;*/
/*}*/

.form-icon i {
    border-radius: 80px;
    position: relative;
    padding: 12px 2px;
    font-size: 18px;
    color: #ff6900;
}

.form-icon input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
    appearance: none; /* إخفاء الشكل الافتراضي */
}

.form-icon i {
    cursor: pointer;
}

/*input[type="datetime-local"]::-webkit-calendar-picker-indicator {*/
    display: none; /* إخفاء أيقونة التقويم الافتراضية */
/*}*/



.book-car .car-card img {
    width: 100%;
    height: 80px;
}

.left-section {
    background-size: cover !important;
    background-position: center !important;
}

.input-light-icon {
background: #F4F6F9;
border-radius: 8px;
}

.input-light-icon input {
border-style: none  !important;
background: transparent;
margin-bottom: 0px;
width: 100%;
}

.input-light-icon i {
padding: 14px;
font-size: 20px;
cursor: pointer;
}

.login-form {
margin: auto;
margin-top: 100px
}

@media (max-width: 768px) {
.left-section {
    height: auto;
    padding: 50px;
}
.login-form {
    height: auto;
}
.login-container {
 height: auto; 
}
.right-section {
    margin: auto;
}
}










.small-btn {
    font-size: 15px;
    padding: 4px 13px;
}







/*----------------------------------------------------------------------------*/
/*------------------------------ الكاليندر ----------------------------------*/
        .calendar-container {
            width: 1000px;
            margin: auto;
        }
        .calendar-container .calendar-table td {
            width: 140px;
            height: 63px;
            text-align: center;
            cursor: pointer;
            font-size: 20px;
        }
        .calendar-container .selected {
            background-color: #ff6900!important; /* برتقالي */
            color: white;
            transition: background-color 0.3s ease;
        }
        .calendar-container .selected-red {
            background-color: #ff6900!important; /* أحمر */
            color: white;
            transition: background-color 0.3s ease;
        }
        .calendar-container .in-range {
            background-color: #eee !important; /* برتقالي فاتح */
            color: black;
            transition: background-color 0.3s ease;
        }
        .calendar-container .form-control {
            width: 100%;
            max-width: 1000px;
            text-align: center;
            font-size: 18px;
            padding: 10px;
            border: 2px solid #ff6900;
            border-radius: 10px;
            margin: auto;
            display: block;
        }
        .calendar-container .month-slider {
            display: flex;
            overflow-x: auto;
            white-space: nowrap;
            width: 100%;
            padding: 10px;
            background-color: #f1f1f1;
        }
        .calendar-container .month-slider-item {
            margin: 0 10px;
            cursor: pointer;
            font-size: 20px;
            padding: 5px;
            transition: background-color 0.3s ease;
        }
        .calendar-container .month-slider-item:hover {
            background-color: #ff6900;
            color: white;
            border-radius: 5px;
        }
/*------------------------------ الكاليندر ----------------------------------*/     
/*----------------------------------------------------------------------------*/

        
        
        
        
        
/*----------------------------------------------------------------------------*/
/*-------------------------- استداء السيارات فقط ---------------------------*/     

.section_travel .active, .section_hour .active  {
    background: #ff690026;
    border: 1px solid #ff6900 !important;
}
        
.aaa {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.cars .checkbox-option {
    width: 150px;
    border: 1px solid #707070;
    border-radius: 17px;
}

.horizontal-scroll {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
    scrollbar-width: auto;
    scroll-behavior: smooth;
}

.horizontal-scroll::-webkit-scrollbar {
    display: block;
    height: 8px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.horizontal-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}
        
.cars {
    display: inline-block;
    white-space: nowrap;
}
        
.cars label {
    display: inline-block;
    width: 220px;
    margin: 0 2px;
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 8px;
    vertical-align: top;
    cursor: pointer;
    position: relative;
}
        
.cars label:hover {
    transform: scale(1.05);
    z-index: 99;
}
        
.car-card {
    padding: 15px;
    text-align: center;
}
        
.car-card h5 {
    color: #333;
    font-size: 16px;
}
        
.car-card img {
    height: 60px;
    object-fit: contain;
}
        
.car-card span {
    display: block;
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}
        
.cars label.selected {
    /*border: 2px solid #007bff;*/
    /*box-shadow: 0 0 15px rgba(0, 123, 255, 0.4);*/
}
        
#price_ford_taurus,
#price_james,
#price_camry,
#price_staria,
#price_vip,
#price_hayes,
#price_businessmen {
    display: block;
    font-weight: bold;
}

/* أزرار التمرير */
.scroll-btn {
    position: absolute;
    top: 88%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    display: none; /* مخفية بشكل افتراضي */
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 10;
}

.scroll-btn:hover {
    background: #f5f5f5;
}

.scroll-btn.left {
    left: 10px;
}

.scroll-btn.right {
    right: 10px;
}

.scroll-btn i {
    color: #ff6900;
    font-size: 18px;
}

/* مؤشرات السلايدر */
.slider-indicators {
    text-align: center;
    margin-top: 10px;
    padding-bottom: 10px;
    display: none; /* مخفية بشكل افتراضي */
}

.slider-indicators .indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicators .indicator.active {
    background: #ff6900;
    transform: scale(1.2);
}

/* كلاس لإظهار العناصر بعد الاستعلام */
.show-after-query {
    display: none;
}

.show-after-query.visible {
    display: block;
}        

/*-------------------------- استداء السيارات فقط ---------------------------*/ 
/*----------------------------------------------------------------------------*/