/* start global  */

@font-face {
    font-family: "Jozoor";
    src:
        url("./fonts/ArbFONTS-Jozoor-Font.ttf") format("truetype"),
        url("./fonts/ArbFONTS-Jozoor-Font.otf") format("otf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Jozoor";
    src: url("./fonts/ArbFONTS-Jozoor-Font.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: "Inter", "Jozoor", sans-serif;
    color: #333;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Outfit", "Jozoor", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* text-transform: capitalize; */ /* Removing global capitalize as it often breaks design intent */
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

:root {
    --main-color: #dc143c;
    --main-hover: #b8112d;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --soft-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --premium-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    --layered-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --card-radius: 24px;
    --input-radius: 14px;
}

.glass-morphism {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.bg-main {
    background-color: #dc143c;
}

.text-main {
    color: #dc143c !important;
}

.btn-main {
    background-color: #dc143c;
    color: white;
}

.btn-main-outline {
    color: #dc143c;
    border: 1px solid #dc143c;
}

.text-black {
    color: black;
}

.text-red {
    color: red;
}

/* Override Bootstrap warning colors to match brand */
.text-warning {
    color: #dc143c !important;
}

.bg-warning {
    background-color: #dc143c !important;
}

.badge.bg-warning {
    background-color: #dc143c !important;
}

.btn-warning {
    background-color: #dc143c !important;
    border-color: #dc143c !important;
}

.btn-warning:hover,
.btn-warning:focus {
    background-color: #b8112d !important;
    border-color: #b8112d !important;
}

/* Global Dropdown Premium Styles */
@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 18px !important;
    padding: 10px 6px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05) !important;
    margin-top: 15px !important;
    animation: dropdownSlide 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    min-width: 200px !important;
}

.dropdown-item {
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 10px 16px !important;
    border-radius: 12px !important;
    color: #444 !important;
    margin-bottom: 2px !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.dropdown-item:last-child {
    margin-bottom: 0 !important;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: var(--main-color) !important;
    color: white !important;
    transform: translateX(4px);
}

[dir="rtl"] .dropdown-item:hover, [dir="rtl"] .dropdown-item:focus {
    transform: translateX(-4px);
}


/* End global  */

/* start navBar  */
#navbar.navbar .container,
.navbar-white .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}
.navbar-brand img {
    width: 100px;
    height: 70px;
}

/* navbar dropdown adjustment */
.navbar .dropdown {
    width: auto !important;
    min-width: 130px;
    height: 38px !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .dropdown-toggle {
    border: none;
    height: 38px !important;
    font-weight: 600;
    font-size: 13px;
    background-color: transparent;
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar .dropdown-menu .dropdown-item {
    text-align: right;
}

.navbar .dropdown-menu .dropdown-item:hover {
    color: #dc143c;
    text-decoration: underline;
}

.nav-link {
    font-weight: 500;
    font-size: 16px;
    color: white;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 12px;
    padding: 8px 0 !important;
}

.navbar-white .nav-link {
    color: #444;
}

.navbar-nav .nav-link:hover {
    color: var(--main-color);
}

.navbar-nav .nav-link.active {
    color: white;
    font-weight: 600;
}

.navbar-white .navbar-nav .nav-link.active {
    color: var(--main-color);
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--main-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
    width: 100%;
}

html[dir="rtl"] .navbar-nav {
    margin-left: auto !important;
    margin-right: 0 !important;
}

html[dir="ltr"] .navbar-nav {
    margin-right: auto !important;
    margin-left: 0 !important;
}

.loginBtn {
    border: none;
    background-color: transparent;
}

.loginBtn p {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: white;
}

.fa-unlock {
    color: white;
}

.navbar-white .loginBtn p,
.navbar-white .loginBtn .fa-unlock {
    color: black;
}

.navbar.scrolled .loginBtn p,
.navbar.scrolled .fa-unlock {
    color: black;
}

.phoneInput,
.passwordInput {
    width: 100%;
    height: 66.73228454589844px;
    background-color: white;
    border: 1.33px solid #eef0eb;
    border-radius: 10px;
    padding-right: 30px;
    font-weight: 400;
    font-size: 21.35px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #8c8d89;
}

.login-form p {
    font-weight: 400;
    font-size: 16.02px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    color: #5a5a5a;
    margin-top: 5px;
}

.phone-icon {
    position: absolute;
    top: 40%;
    right: 10px;
}

.submitBtn {
    width: 167px;
    height: 53px;
    border-radius: 20.49px;
    background-color: #dc143c;
    color: white;
    border: none;
}

.modal-content {
    background-color: #f5f5f5;
    padding-bottom: 50px;
    padding: 20px;
}

.modal-header {
    display: flex;
    justify-content: center;
    position: relative;
}

.modal-header .btn-close {
    position: absolute;
    left: 10px;
}

.navbar {
    transition: background-color 0.3s ease-in-out;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999 !important;
    height: 100px;
    box-shadow: none;
}

.navbar.scrolled {
    background-color: white !important;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-nav .nav-link.active,
.navbar-nav .show > .nav-link {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: black !important;
    margin: 0 5px;
}

.navbar.scrolled .navbar-nav .nav-link.active::after {
    background-color: black;
}

/* When navbar is scrolled (white bg), make user dropdown and toggler visible */
.navbar.scrolled .dropdown .dropdown-toggle span {
    color: #212529 !important;
}
.navbar.scrolled .navbar-toggler,
.navbar.scrolled .navbar-toggler .fa-bars {
    color: #212529 !important;
    border-color: rgba(0, 0, 0, 0.1);
}

/* Offcanvas: on desktop (light bg) ensure nav links and dropdown text are visible */
@media (min-width: 769px) {
    .offcanvas .offcanvas-body .nav-link {
        color: #212529 !important;
    }
    .offcanvas .offcanvas-body .navbar-nav .nav-link.active {
        color: var(--main-color) !important;
    }
    .offcanvas .offcanvas-body .navbar-nav .nav-link:hover {
        color: var(--main-color) !important;
    }
    .offcanvas .offcanvas-body .dropdown .dropdown-toggle span {
        color: #212529 !important;
    }
}

.navbar-white {
    transition: background-color 0.3s ease-in-out;
    background-color: #fff !important;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999 !important;
    height: 100px;
}

.navbar-white.scrolled {
    /* background-color: #DC143C !important; */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-white.scrolled .nav-link,
.navbar-white.scrolled .navbar-nav .nav-link.active,
.navbar-nav .show > .nav-link {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    /* color: white !important; */
    margin: 0 5px;
}

.select-lang {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    height: 38px !important;
    padding: 5px 15px;
    position: relative;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.select-lang::after {
    display: none !important;
}

.select-lang:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.navbar.scrolled .select-lang, .navbar-white .select-lang {
    background-color: #f8f9fa;
    color: #333 !important;
    border-color: #eee;
    background-image: none !important;
}

.navbar.scrolled .select-lang:hover, .navbar-white .select-lang:hover {
    background-color: #f1f3f5;
    border-color: #dee2e6;
    color: var(--main-color) !important;
}

.dropdown-menu {
    border: 1px solid rgba(0,0,0,0.05) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
}

.dropdown-item {
    font-weight: 500;
    font-size: 14px;
    padding: 10px 16px !important;
}

.dropdown-item.active {
    background-color: var(--main-color) !important;
    color: white !important;
}

.select-lang {
    width: auto !important;
    min-width: fit-content;
    padding-left: 12px !important;
    padding-right: 12px !important;
}

.lang-dropdown-menu {
    min-width: fit-content !important;
    width: auto !important;
    padding: 6px 8px !important;
}

.lang-dropdown-menu .dropdown-item {
    text-align: center;
    white-space: nowrap;
    padding: 8px 16px !important;
}

/* .navbar-white .select-lang {
    color: black;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='20' height='20' fill='%23000'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
} */


.fa-bars {
    background-color: #b8112d;
    padding: 10px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .offcanvas {
        background-color: #dc143c !important;
        padding: 20px;
    }

    .navbar-brand img {
        width: 70px;
        height: 50px;
    }

    .navbar-nav .nav-link.active::after {
        width: 100%;
    }

    .select-lang {
        margin: 0 !important;
    }
}

/* End navBar  */

/* start hero-section */
.hero-section {
    position: relative;
    height: 800px;
    overflow: visible !important;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%),
        url(/images/hero-section.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    z-index: -1;
}

/* Trip Type Tabs */
.trip-type-tabs {
    background: #f0f0f0 !important;
    padding: 6px !important;
    border-radius: 16px !important;
    gap: 5px;
    display: inline-flex;
    margin-bottom: 2rem;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.trip-type-tabs .nav-link {
    color: #666;
    font-weight: 600;
    border-radius: 12px !important;
    padding: 10px 25px !important;
    transition: all 0.3s ease;
    border: none;
    margin: 0;
}

.trip-type-tabs .nav-link.active {
    background-color: var(--main-color) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.25);
}

.trip-type-tabs .nav-link::after {
    display: none;
}

/* Custom Radio Styling */
.form-check-input:checked {
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}

/* Station Group Spacing */
.station-group .row {
    --bs-gutter-x: 2rem !important; /* Move them a bit away from each other */
}

.hero-section .card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--card-radius);
    background: #ffffff;
    box-shadow: var(--premium-shadow);
    overflow: visible;
    padding: 1rem;
}

.hero-section .card-title {
    font-weight: 800;
    font-size: 32px;
    color: #111;
    letter-spacing: -1px;
    margin-bottom: 2rem !important;
}

/* Station Input Group */
.station-group {
    position: relative;
}

.swap-btn-floating {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.swap-btn-floating:active {
    transform: translate(-50%, -50%) scale(0.9);
}

@media (max-width: 767px) {
    .swap-btn-floating {
        top: 120px; /* Position it between the stacked inputs */
        transform: translate(-50%, -50%) rotate(90deg);
    }
    .swap-btn-floating:hover {
        transform: translate(-50%, -50%) rotate(270deg) scale(1.1);
    }
}

.input-with-icon {
    position: relative;
    margin-bottom: 1rem;
}

.input-with-icon > i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 1;
}

[dir="rtl"] .input-with-icon > i {
    left: auto;
    right: 15px;
}

.modern-input {
    width: 100%;
    height: 60px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: var(--input-radius);
    padding: 0 15px 0 45px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

[dir="rtl"] .modern-input {
    padding: 0 45px 0 15px;
}

.modern-input:focus {
    background: #fff;
    border-color: var(--main-color);
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1);
    outline: none;
}

.hero-btn {
    height: 65px;
    width: 100%;
    background: linear-gradient(to right, var(--main-color), #f01440);
    border: none;
    border-radius: var(--input-radius);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.3);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.4);
    background: linear-gradient(to right, #f01440, var(--main-color));
    color: #fff;
}

.hero-btn:active {
    transform: translateY(0);
}

.hero-section-destination {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-section-destination::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to right, #00000040, #00000040),
        url(/images/banners/1.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    z-index: -1;
}

.hero-section-destination .box-destination {
    height: 100%;
    position: relative;
}

.hero-section-destination .box-destination form {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-section-destination .box-destination form input[type="search"] {
    width: 100%;
    height: 70px;
    padding: 20px;
    border: none;
    border-radius: 50px;
    outline: none;
    font-size: 16px;
    text-align: center;
    text-align: right;
    color: #686767;
    font-weight: 400;
    font-size: 30px;
}

.search-icon {
    position: absolute;
    font-size: 30px;
    color: #686767;
    margin-left: 10px;
    cursor: pointer;
    left: 30px;
}

.google-play p {
    font-size: 10px;
    margin: 0;
    text-align: left;
    font-weight: 400;
}

.hero-caption-title p {
    font-weight: 400;
    font-size: 50px;
}

.hero-caption-title h6 {
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 30px;
}

.google-play-box {
    width: 200px;
    height: auto;
    border: 1px solid white;
    background-color: black;
    color: white;
}

.google-play-box img {
    width: 30px;
    height: 30px;
}

.fa-apple {
    font-size: 35px;
}

.trip-type {
    background-color: #0000000a;
    width: 85%;
    margin: auto;
    border-radius: 15px;
    border-radius: 15px;
    border: 0.5px solid #00000033;
}

.btn-secondary {
    background-color: #cccaca75 !important;
}

.travel-box .btn-secondary {
    background-color: #cccaca75 !important;
    height: 30px;
}

.fa-minus,
.fa-plus {
    font-size: 20px;
}

.travel-box .fa-minus,
.travel-box .fa-plus {
    font-size: 10px;
}

.travel-box select,
.travel-box input {
    height: 40px !important;
}

.trip-select,
.trip-input,
.datepicker-text,
.desktop-from-input {
    border-radius: var(--input-radius) !important;
    border: 1.5px solid #eee !important;
    height: 52px;
    padding: 0 15px;
    font-size: 15px;
    color: #444;
    transition: border-color 0.3s ease;
    background-color: #f9f9f9;
}

.trip-input:focus-within,
.desktop-from-input:focus {
    border-color: var(--main-color) !important;
    background-color: #fff;
}

.hero-section .minus-btn,
.hero-section .plus-btn {
    color: #4f4c4c;
    border: none;
    background-color: #cccaca75;
    width: 27px;
    height: 27px;
    border-radius: 7px;
    font-size: 16px;
    margin: auto;
    text-align: center;
}

.mo-view .plus-btn,
.mo-view .minus-btn {
    color: #4f4c4c;
    border: none;
    background-color: #cccaca75;
    width: 27px;
    height: 27px;
    border-radius: 7px;
    font-size: 16px;
    margin: auto;
    text-align: center;
}

[dir="rtl"] .trip-select {
    background-position: left 0.75rem center;
    padding-left: 2.5rem;
    padding-right: 0.75rem;
}

[dir="ltr"] .trip-select {
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
    padding-left: 0.75rem;
}

.trip-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 16px 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.datepicker-real {
    position: absolute;
    /* top: 0;
    left: 0; */
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    border-radius: 12px !important;
    border: 0.5px solid #000000 !important;
    height: 44px;
    width: 217px !important;
    max-width: 100%;
}

.datepicker-text {
    background-color: white;
    cursor: pointer;
    border-radius: 12px !important;
    border: 0.5px solid #000000 !important;
    height: 44px;
    width: 217px !important;
    max-width: 100%;
}

[dir="rtl"] .datepicker-real {
    left: auto;
    right: 0;
}

.hero-section .arrival-time {
    font-weight: 400;
    font-size: 13px;
    text-decoration: underline;
}

.search-trip-btn {
    height: 63px;
    border: none;
    background-color: #dc143c;
    border-radius: 16px;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    box-shadow: none;
    color: white;
}

.search-trip-btn:hover {
    background-color: white;
    color: #dc143c;
}

.hero-caption-box {
    padding-top: 10%;
}

@media (max-width: 992px) {
    .hero-section .box {
        padding-top: 10%;
    }

    .google-play-box,
    .hero-caption,
    .trip-type {
        width: 100%;
    }

    .hero-section {
        height: auto;
        padding-bottom: 20px;
    }

    .hero-section-destination {
        height: 350px;
    }

    .hero-section-destination .box-destination form {
        width: 100%;
        bottom: 30px;
    }

    .hero-caption {
        font-size: 30px;
    }

    .hero-caption-box {
        padding-top: 1%;
    }

    .hero-section-destination .box-destination form input[type="search"] {
        width: 100%;
        height: 50px;
        font-size: 20px;
    }
}

/* End hero-section */

/* start any-where-caption */
.any-where-caption h2 {
    font-weight: 400;
    font-size: 40px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #000000;
}

.any-where-caption p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #000000;
}

.any-where-caption h6 {
    color: #000000;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0%;
}

.map img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.map .circle-alex {
    width: 20px;
    height: 20px;
    background-color: #dc143c;
    border: 3px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 12%;
    left: 32%;
    z-index: 3;
}

.map .title-alex {
    width: 80px;
    height: 25px;
    background-color: #fff;
    position: absolute;
    top: 14%;
    left: 34.5%;
    color: #000000;
    text-align: center;
}

.map .circle-cairo {
    width: 20px;
    height: 20px;
    background-color: #dc143c;
    border: 3px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 28%;
    left: 45%;
    z-index: 3;
}

.map .title-cairo {
    width: 80px;
    height: 25px;
    background-color: #fff;
    position: absolute;
    top: 30%;
    left: 47%;
    color: #000000;
    text-align: center;
}

.map .circle-sharm {
    width: 20px;
    height: 20px;
    background-color: #dc143c;
    border: 3px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 37%;
    right: 22%;
    z-index: 3;
}

.map .title-sharm {
    width: 80px;
    height: 25px;
    background-color: #fff;
    position: absolute;
    top: 34%;
    right: 24%;
    color: #000000;
    text-align: center;
}

.map .circle-her {
    width: 20px;
    height: 20px;
    background-color: #dc143c;
    border: 3px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 45%;
    right: 28%;
    z-index: 3;
}

.map .title-her {
    width: 80px;
    height: 25px;
    background-color: #fff;
    position: absolute;
    top: 46.5%;
    right: 29.5%;
    color: #000000;
    text-align: center;
}

/* End any-where-caption */

/* start pay  */
.pay h2 {
    font-weight: 400;
    font-size: 40.13px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
}

.pay img {
    width: 170px;
    height: 60px;
    object-fit: cover;
    margin-bottom: 15px;
}

/* End pay  */

/* start bus type  */
.bus-type {
    background:
        linear-gradient(to right, #dc143c, #dc143c),
        url(../images/bus-type-bg.png);
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    height: 550px;
    display: flex;
    align-items: center;
}

.bus-bg {
    z-index: 1;
    background-color: #f7f9fd;
    width: 163px;
    height: 163px;
    border-radius: 50%;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bus-bg-box img {
    position: relative;
    z-index: 2;
    width: 217px;
    height: 123px;
}

.swiper-buttons {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper-button-prev,
.swiper-button-next {
    color: white;
    width: 50px;
    height: 100px;
    background-color: #1c1c1c99;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s ease;
}

.swiper-button-next {
    right: 0px;
    left: auto;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.swiper-button-prev {
    left: 0px;
    right: auto;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #1c1c1cc5;
}

html[dir="rtl"] .swiper-button-next {
    right: 0px;
    left: auto;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

html[dir="rtl"] .swiper-button-prev {
    left: 0px;
    right: auto;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.bus-type h2 {
    font-weight: 400;
    font-size: 40.13px;
    line-height: 100%;
    letter-spacing: 0%;
    color: white;
}

.bus-type .swiper {
    width: 100%;
    height: auto;
}

.bus-type .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.bus-type .cardSection {
    padding: 15px;
}

.bus-type .card {
    border: 0;
    box-shadow: none;
}

/* End bus type  */

/* start testimonials  */
.testimonials img {
    width: 50px;
    height: 50px;
}

/* End testimonials  */

/* start reservation  */
.reservation {
    background-image:
        linear-gradient(to right, #343a40, #00000033), url(../images/beach.jpeg);
    height: 550px;
    background-position: center;
    background-size: cover;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.reservation h2 {
    font-weight: 400;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    width: 90%;
}

.reservation p {
    width: 80%;
    margin-top: 20px;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
}

.reservation button,
.reservation a {
    width: 190px;
    height: 80px;
    background-color: #dc143c;
    color: white;
    border: none;
    border-radius: 27px;
    font-weight: 400;
    font-size: 35px;
    display: flex;
    /* علشان نقدر نوسّط العناصر */
    justify-content: center;
    /* توسيط أفقي */
    align-items: center;
    /* توسيط عمودي */
    text-align: center;
    /* لو النص سطرين */
}

/* End reservation  */

/* start blogs  */
.blogs h2 {
    font-weight: 400;
    font-size: 40.13px;
    color: #000000;
    margin-bottom: 30px;
}

.blogs .cardSection {
    box-shadow: 0 10px 30px #00000040;
    border-radius: 15px;
}

.blogs .cardSection h5 {
    font-family: "Roboto";
    font-weight: 700;
    font-size: 24px;
    color: #000000;
    margin-top: 15px;
}

.blogs .cardSection .cardBody p {
    font-family: "Roboto";
    font-weight: 400;
    font-size: 20px;
    color: #9ca3af;
}

.blogs .cardSection .cardBody h6 {
    font-family: "Roboto";
    font-family: "Roboto";
    font-weight: 400;
    font-size: 20px;
    color: #000000;
}

/* End blogs  */

/* start Footer  */
footer {
    padding-top: 80px;
    padding-bottom: 50px;
    color: #ffffff;
    background-color: var(--main-color) !important;
    background-image: none !important;
    height: auto;
    clip-path: ellipse(130% 100% at center bottom);
}

footer .footer-links {
    font-weight: 400;
    font-size: 20.2px;
    line-height: 32.66px;
    letter-spacing: 0%;
    text-align: right;
    color: #ffffff;
}

footer .footer-links-top {
    color: #ffffff;
    font-weight: 400;
    font-size: 31.45px;
    line-height: 32.66px;
    letter-spacing: 0%;
}

.footer-input {
    border: 0.5px solid #00000071;
    width: 400px;
    border-radius: 13px;
    background-color: #dc143c;
    overflow: hidden;
}

/* الإيميل */
.footer-input input[type="email"] {
    width: 245px;
    height: 50px;
    padding: 10px;
    border: none;
    background-color: white;
}

/* الزرار */
.footer-input button {
    border: none;
    width: 155px;
    height: 50px;
    background-color: #dc143c;
    color: white;
}

/* خاص بالإنجليزي */
[dir="ltr"] .footer-input input[type="email"] {
    border-top-left-radius: 13px;
    border-bottom-left-radius: 13px;
}

[dir="ltr"] .footer-input button {
    border-top-right-radius: 13px;
    border-bottom-right-radius: 13px;
    margin-left: -10px; /* الزرار يقرب ناحية الإيميل */
}

/* خاص بالعربي */
[dir="rtl"] .footer-input input[type="email"] {
    border-top-right-radius: 13px;
    border-bottom-right-radius: 13px;
}

[dir="rtl"] .footer-input button {
    border-top-left-radius: 13px;
    border-bottom-left-radius: 13px;
    margin-right: -10px; /* الزرار يقرب ناحية الإيميل */
}

footer .footer-links-top {
    margin-bottom: 15px;
}

.footer-links {
    color: white;
    font-size: 18px;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    margin-bottom: 5px;
}

.footer-links::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -3px;
    left: 50%;
    background: linear-gradient(to right, #000000, #000000);
    transition: all 0.4s ease-in-out;
    transform: translateX(-50%);
}

.footer-links:hover {
    color: #000000;
    transform: scale(1.1);
}

.footer-links:hover::before {
    width: 100%;
}

.social a {
    border: 2px solid white;
    border-radius: 50px;
    height: 50px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.social a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-color: white;
    transition: all 0.3s ease-in-out;
    border-radius: 50px;
}

.social a:hover::before {
    left: 0;
}

.social a i {
    font-size: 25px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease-in-out;
}

.social a:hover i {
    color: #000000;
}

.social a img {
    width: 35px;
    height: 35px;
}

.google-play-box-footer {
    width: 192px;
    border: 1px solid white;
    background-color: black;
    color: white;
}

.google-play-box-footer img {
    width: 20px;
    height: 20px;
}

.google-play-footer p {
    font-size: 10px;
    margin: 0;
    text-align: left;
    font-weight: 400;
}

.google-play-footer h6 {
    font-size: 14px;
    margin: 0;
    text-align: left;
    font-weight: 400;
}

@media (max-width: 1300px) {
    .footer-input {
        width: 100%;
        background-color: #dc9401;
        border: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-input input[type="email"] {
        width: 100%;
        border: 0.5px solid #00000071;
        border-radius: 13px;
    }

    .footer-input button {
        width: 100%;
        margin-right: 0;
        margin-top: 5px;
        border-radius: 13px;
    }
}

@media (max-width: 768px) {
    footer {
        padding-top: 20px;
        height: auto;
        clip-path: ellipse(200% 100% at center bottom);
    }

    .footer-center {
        text-align: center;
    }

    .google-play-box-footer {
        width: 255px;
        border: 1px solid white;
        background-color: black;
        color: white;
    }
}

/* End Footer  */

/* start destination  */
/* start popular  */
.popular .heart-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.popular .heart-btn i {
    color: black;
    font-size: 30px;
}

.popular .heart-btn.active i {
    color: #dc143c;
}

.popular .reserve {
    width: 115px;
    height: 50px;
    background-color: #dc143c;
    font-weight: 400;
    font-size: 22px;
    color: white;
    border: 0;
    border-radius: 15px;
}

.popular .popular-title {
    font-weight: 400;
    font-size: 26.08px !important;
}

.popular .cardBody h6 {
    font-weight: 400;
    font-size: 25.08px;
    color: #000000;
}

.popular .cardBody p {
    font-weight: 400;
    font-size: 16.08px;
    color: #000000;
}

.popular .cardSection {
    box-shadow: 0 10px 30px #00000040;
    border-radius: 15px;
}

/* End popular  */

/* start try */
.try {
    background-image: linear-gradient(rgba(220, 20, 60, 0.85), rgba(220, 20, 60, 0.85)), url(../images/try-bg.png);
    background-color: var(--main-color);
    height: auto;
    background-size: cover;
    background-attachment: fixed;
    padding: 60px 0;
}

.try .try-caption {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.try .try-caption h6 {
    font-weight: 800;
    font-size: 42px;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.try .try-caption p {
    font-weight: 500;
    font-size: 22px;
    line-height: 1.6;
    max-width: 85%;
    opacity: 0.95;
}

.try .try-img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

@media (max-width: 800px) {
    .try .try-caption h6 {
        font-size: 30px;
    }

    .try .try-caption p {
        font-size: 20px;
        line-height: 50px;
        /* width: 100%; */
    }

    .try .try-caption {
        padding-top: 20px;
    }
}

/* End try */

/* start app  */
.app .try-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.app .try-caption h4 {
    font-weight: 400;
    font-size: 50px;
    line-height: 70px;
    text-align: center;
}

.app .try-caption h5 {
    font-weight: 400;
    font-size: 35px;
    line-height: 60px;
    text-align: center;
}

.app .box img {
    width: 450px;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .app .try-caption h4 {
        font-size: 30px;
        line-height: 60px;
    }

    .app .try-caption h5 {
        font-size: 20px;
        line-height: 50px;
    }

    .app .try-caption {
        padding-top: 20px;
    }
}

/* End app  */
/* End destination  */

/* start blogs */
.about-us-caption {
    margin-top: 100px;
}

.box-shadow {
    box-shadow: 0px 4px 4px #00000040;
}

.about-us-caption-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-us-caption-box h2 {
    font-weight: 400;
    font-size: 40px;
    color: #000000;
}

.about-us-caption-box p,
.about-us-caption-box h6 {
    color: #000000;
    font-weight: 400;
    font-size: 20px;
    line-height: 40px;
}

.blogs-taps h2 {
    font-weight: 400;
    font-size: 40px;
    color: #000000;
}

.blogs-taps .nav-pills .nav-link.active {
    background-color: #dc143c;
    color: black;
    border-radius: 100px;
    font-size: 29px;
}

.blogs-taps .nav-pills .nav-link {
    background-color: #eef0eb;
    color: black;
    border-radius: 100px;
    font-size: 29px;
}

.blogs-taps .cardSection {
    box-shadow: 0 10px 30px #00000040;
    border-radius: 15px;
}

.trip-start-caption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.trip-start-caption h2 {
    font-weight: 400;
    font-size: 60px;
    color: #000000;
}

.trip-start-caption h6 {
    font-weight: 400;
    font-size: 20px;
    color: #000000;
}

.trip-start-caption p {
    font-weight: 400;
    font-size: 40px;
    color: #000000;
}

.trip-start-caption button {
    width: 168px;
    height: 70px;
    font-weight: 400;
    font-size: 23px;
    color: white;
    background-color: #b8112d;
    border-radius: 16px;
    border: none;
    margin-top: 20px;
}

.trip-start {
    background-color: #ffefcd9e;
}

.trip-start img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.trip-start .img-1 {
    height: 292px;
    width: 208px;
}

.trip-start .img-2 {
    height: 196px;
    width: 208px;
}

.trip-start .img-3,
.trip-start .img-5 {
    height: 127px;
}

.trip-start .img-4 {
    height: 292px;
}

.about-caption-text h6 {
    font-weight: 400;
    font-size: 40px;
    color: #000000;
    text-align: center;
    margin-bottom: 25px;
}

.about-caption-text p {
    font-weight: 400;
    font-size: 20px;
    font-size: 30px;
    text-align: center;
    color: #000000;
}

@media (max-width: 768px) {
    .trip-start .img-1,
    .trip-start .img-2,
    .trip-start .img-3,
    .trip-start .img-4,
    .trip-start .img-5 {
        height: 100%;
        width: 100%;
    }

    .about-caption-text h6 {
        font-size: 20px;
    }

    .about-caption-text p {
        font-size: 16px;
    }
}

/* End blogs */

/* start contact us  */
.contact-us {
    margin-top: 100px;
}

.contact-us h2 {
    font-weight: 400;
    font-size: 40px;
    color: #000000;
}

.contact-us p {
    font-weight: 400;
    font-size: 20px;
    color: #000000;
}

.contact-us .contact-btn {
    background-color: #dc143c;
    color: white;
    border-radius: 20px;
    border: none;
    font-weight: 400;
    font-size: 28px;
    width: 280px;
    height: 63px;
    max-width: 100%;
}

.contact-us form .fa-user,
.contact-us form .fa-envelope,
.contact-us form .fa-phone {
    position: absolute;
    top: 35%;
    right: 10px;
    color: #333333;
}

.contact-us form .fa-envelope {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #333333;
}

.input-box {
    position: relative;
    width: 80%;
    margin: 10px auto;
}

.contact-us .input-box textarea {
    height: 180px;
    padding: 5px 30px;
    border-radius: 10px;
    border: 1.5px solid #eef0eb;
    color: #8c8d89;
    width: 100%;
}

.contact-us form input {
    padding: 5px 30px;
    height: 66px;
    border-radius: 10px;
    border: 1.5px solid #eef0eb;
    color: #8c8d89;
    width: 100%;
}

.contact-us .need-help h2 {
    font-weight: 400;
    font-size: 35px;
    color: #000000;
}

.contact-us .need-help a,
.contact-us .need-help span {
    font-weight: 400;
    font-size: 15px;
    color: #000000;
}

/* End contact us  */

/* End Qusetions  */
.questions {
    margin-top: 100px;
}

.questions p,
.questions h6 {
    line-height: 40px !important;
    color: #000000;
    font-size: 25px;
}

.accordion-button::after {
    display: none !important;
}

.accordion {
    direction: rtl;
    text-align: right;
}

.accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: right;
}

.accordion-button::after {
    display: none !important;
}

.accordion-button .icon {
    font-size: 20px;
    margin-right: 10px;
    transition: transform 0.3s ease-in-out;
}

.accordion-button:not(.collapsed) {
    color: #000000;
}

.accordion-button .icon {
    color: #000000 !important;
}

/* End Qusetions  */

/* start reservation  */
.reservation-header {
    margin-top: 110px;
}

.reservation-travel-box {
    background-color: #f5f5f5;
    border: 0.5px solid #00000033;
    border-radius: 15px;
    height: 118px;
}

.reservation-travel-box .search-edit-btn {
    color: #dc143c;
    border: none;
    background-color: transparent;
    font-weight: 400;
    font-size: 15.61px;
    text-decoration: underline;
}

.travel-direction h6 {
    font-weight: 400;
    font-size: 35px;
}

.travel-direction .fa-bus {
    font-size: 40px;
}

.travel-direction .fa-arrow-left {
    font-size: 40px;
}

.travel-direction p {
    font-weight: 400;
    font-size: 20px;
}

.travel-direction-box h6 {
    font-weight: 400;
    font-size: 16px;
}

.travel-direction-box .fa-bus {
    font-size: 20px;
}

.travel-direction-box .fa-arrow-left {
    font-size: 20px;
}

.travel-direction-box p {
    font-weight: 400;
    font-size: 14px;
}

.choose-trip .green-circle {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: green;
}

.choose-trip .red-circle {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: red;
}

.choose-trip .line {
    width: 60px;
    height: 4px;
    background-color: #818181;
}

.green-circle-mobile {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: green;
}

.red-circle-mobile {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: red;
}

.line-mobile {
    width: 2px;
    height: 30px;
    background-color: #818181;
}

.choose-trip .vip {
    width: 80px;
    height: 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15.8px;
}

.choose-trip .bus-box {
    background-color: #fbecde;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bus-box-mobile {
    background-color: #fbecde;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.choose-trip .fa-bus {
    font-size: 40px;
}

.trip-details .reserve-btn,
.choose-trip,
.trip-choose-btn {
    width: 100%;
    height: 40px;
    background-color: #dc143c;
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    font-weight: 400;
    font-size: 15.18px;
}

.reserve-btn .choose-trip .trip-choose-btn {
    height: 27px;
}

.selected-trip-button {
    border: 2px solid #dc143c;
    /* Customize the color */
    border-radius: 8px;
    background-color: white;
    color: #dc143c;
}

@media (max-width: 992px) {
    .reservation-container {
        width: 100% !important;
    }
}

/* End reservation  */

/* start profile-page  */
.profile-page {
    margin-top: 100px;
}

.profile-page .nav-pills .nav-link {
    padding: 15px;
    font-size: 20px;
    color: #000000;
    width: 100%;
}

.profile-page .nav-pills .nav-link.active {
    background-color: #ffeac057;
    color: #dc143c;
    border-radius: 5px;
    font-size: 20px;
}

.profile-page .logout {
    border: 1px solid #dc143c;
    background-color: white;
    border-radius: 5px;
    font-weight: 400;
    font-size: 20px;
    width: 100%;
    height: 48px;
    color: #dc143c;
    margin-top: 5px;
}

.passenger-place .bus-box {
    background-color: white;
    width: 10px;
    height: 10px;
}

.passenger-place .fa-bus {
    font-size: 20px;
    color: #000000;
}

.passenger-place .line {
    width: 60px;
    height: 0;
    border-top: 2px dashed #00000040;
    background-color: transparent;
}

.passenger-place {
    border-top: 1px solid #00000040;
    border-right: 1px solid #00000040;
    border-bottom: 1px solid #00000040;
}

.trip-desc {
    border-top: 1px solid #00000040;
    border-right: 1px solid #00000040;
    border-left: 1px solid #00000040;
}

.passenger-info {
    border-right: 2px dashed #00000040;
    border-top: 1px solid #00000040;
    border-left: 1px solid #00000040;
    border-bottom: 1px solid #00000040;
}

.total-price {
    border-top: 2px dashed #00000040;
    border-right: 1px solid #00000040;
    border-left: 1px solid #00000040;
    border-bottom: 1px solid #00000040;
}

.profile-page .passenger-place .btn-reserve {
    width: 73px;
    height: 20px;
    border-radius: 6.36px;
    background-color: #12a34e;
    font-weight: 400;
    font-size: 10.23px;
    text-align: center;
    color: white;
    border: none;
}

.profile-page .passenger-place .btn-cancel {
    background-color: white;
    border: 1px solid #ff1821;
    color: #ff1821;
}

.yes-btn {
    width: 80px;
    height: 40px;
    border-radius: 13.02px;
    background-color: #dc143c;
    font-weight: 400;
    border: none;
    color: white;
}

.no-btn {
    background-color: #fff;
    border: 1px solid #dc143c;
    color: #dc143c;
}

.cancel-reserve .confirm-icon-box {
    border: 6px solid #dc9401;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cancel-reserve .confirm-icon-box .fa-check {
    font-size: 40px;
    color: #dc9401;
}

.cancel-reserve p {
    font-weight: 400;
    font-size: 35.09px;
}

.cancel-reserve h6 {
    font-weight: 400;
    font-size: 12px;
    color: #5a5a5a;
}

.my-data {
    font-weight: 400;
    font-size: 35px;
    color: #000000;
}

.save-data-btn {
    border: none;
    background-color: #dc143c;
    color: white;
    width: 165px;
    height: 46px;
    border-radius: 8.68px;
    font-weight: 400;
    font-size: 22px;
}

/* End profile-page  */

/* start chairs  */
.chairs {
    margin-top: 10px;
}

.chairs .your-chair {
    width: 25px;
    height: 25px;
    border-radius: 8px;
    background-color: #13ae47;
}

.chairs .available-chair {
    background-color: #dad9db;
    width: 25px;
    height: 25px;
    border-radius: 8px;
}

.chairs .reserved-chair {
    background-color: #686767;
    width: 25px;
    height: 25px;
    border-radius: 8px;
}

.chair-number-pay {
    background-color: white;
    color: #dc9401;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    font-size: 15px;
    text-align: center;
    line-height: 26px;
}

.money-account {
    font-weight: 500;
    font-size: 16px;
    line-height: 21.87px;
    letter-spacing: 0%;
    text-align: center;
}

.chair-number {
    width: 40px;
    margin-inline: 5px;
    margin-top: 5px;
    position: relative;
}

.chair-number input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.chair-number label {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #e0e0e0;
    border-radius: 5px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.chair-number input[type="checkbox"]:checked + label {
    background-color: #4caf50;
    color: white;
    border-color: #2e7d32;
}

.chair-number input[type="checkbox"]:disabled + label {
    background-color: #686767;
    color: white;
    cursor: not-allowed;
}

.chair-number input[type="checkbox"]:disabled:checked + label {
    background-color: #9e9e9e;
}

.your-chair-box {
    background-color: #2196f3;
    color: white;
}

.fawry-label-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.chairs .form-check-input-pay {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #dc143c;
    border-radius: 50%;
    background-color: white;
    position: relative;
    cursor: pointer;
}

.chairs .form-check-input-pay:checked {
    border-color: #dc143c;
}

.chairs .form-check-input-pay:checked::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.chairs .form-check-input-pay[type="radio"]:checked:after {
    background-color: #dc143c;
}

.chairs .form-check-input-pay:hover,
.chairs .form-select:hover {
    border-color: #dc143c;
    box-shadow: 0 0 5px #dc143c;
}

.chairs .form-check-input-pay:focus {
    outline: none;
    border-color: #ff5733 !important;
    box-shadow: 0 0 5px #ff5733 !important;
}

.chairs .form-select:focus {
    outline: none;
    border-color: #28a745 !important;
    box-shadow: 0 0 5px #28a745 !important;
}

.pay-label-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.chairs .btn-pay {
    width: 100%;
    height: 50px;
    border-radius: 22px;
    border: none;
    font-weight: 400;
    font-size: 25px;
    color: white;
    background-color: #dc143c;
}

.chairs .btn-pay-disabled {
    width: 100%;
    height: 50px;
    border-radius: 22px;
    border: none;
    font-weight: 400;
    font-size: 25px;
    color: white;
    background-color: #cfc5b1;
}

/* End chairs  */

/* start cancel-reservation  */
.cancel-reservation {
    margin-top: 120px;
}

.cancel-reservation .hr-dashed {
    border: 1px dashed #a7a5a5;
}

.cancel-reservation .cancel-reservation-btn {
    width: 172px;
    height: 50px;
    border: 1px solid red;
    background-color: transparent;
    font-weight: 400;
    font-size: 25.34px;
    text-align: center;
    color: red;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

/* End cancel-reservation  */

/* End desktop view  */

/* start mobile view - space above bottom nav so swiper/content never sits under the footer */
.mo-view {
    padding-bottom: calc(160px + env(safe-area-inset-bottom, 0px));
    min-height: 0;
}

/* start header  */
.mo-view .mobileHeader .mo-bell-box {
    width: 48px;
    height: 48px;
    background-color: rgba(220, 20, 60, 0.12);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mo-view .mobileHeader .mo-bell-box p {
    top: 10px;
    right: 10px;
    background-color: var(--main-color);
    border-radius: 50%;
    width: 13px;
    height: 13px;
    color: white;
    font-size: 8px;
    text-align: center;
}

/* End header  */

/* start trip type  */
.mo-view .special-offer {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--main-color);
    text-align: center;
    color: white;
    font-size: 9px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mo-view .form-to {
    color: #8c8d89;
}

.mo-view .passenger-btn {
    line-height: 0;
    border: 0;
}

.mo-view .date-passenger {
    color: #000000;
}

.mo-view .search-btn {
    background-color: var(--main-color);
    color: white;
    border-radius: 15px;
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    text-align: center;
    height: 48px;
    width: 100%;
    border: 0;
}

.mo-view .last-search p {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #141511;
}

.mo-view .last-search a {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: var(--main-color);
}

/* End trip type  */

/* start bottom navbar  */
@media (max-width: 991px) {
    .bottom-navbar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #ffffff;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 12px 0;
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        padding-left: env(safe-area-inset-left, 0px);
        padding-right: env(safe-area-inset-right, 0px);
        box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        min-height: 56px;
    }
}

.bottom-navbar {
    display: none;
}

@media (max-width: 991px) {
    .bottom-navbar {
        display: flex;
    }
}

.bottom-navbar .nav-item,
.bottom-navbar button.nav-item {
    flex: 1;
    min-width: 0;
}

.bottom-navbar button.nav-item {
    cursor: pointer;
}

.nav-item {
    text-align: center;
    color: #8c8d89;
    text-decoration: none;
    font-size: 14px;
}

.nav-item.active {
    color: var(--main-color);
    font-weight: bold;
}

.nav-item.active i {
    color: var(--main-color);
}

/* End bottom navbar  */

/* Extra spacing so swiper section is fully above the footer (nothing under it) */
@media (max-width: 991px) {
    .mo-view .new-places,
    .mo-view .new-places-mobile {
        margin-bottom: 2.5rem;
        padding-bottom: 1.5rem;
    }
}

/* Mobile: Explore the Most Popular Destinations – responsive section */
@media (max-width: 991px) {
    .new-places-mobile {
        padding-bottom: 1rem;
        overflow: visible;
    }
    .new-places-mobile .new-places-title {
        font-size: clamp(1.1rem, 4.5vw, 1.35rem);
        line-height: 1.3;
        padding-left: 2px;
        padding-right: 2px;
    }
    .new-places-swiper {
        margin-left: -4px;
        margin-right: -4px;
        padding: 4px 0 8px;
    }
    .new-places-swiper .swiper-slide {
        height: auto;
        display: flex;
        flex-direction: column;
    }
    .new-places-mobile .reserve {
        display: block;
        width: 100%;
        aspect-ratio: 17 / 6;
        max-height: 72px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    .new-places-mobile .new-places-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }
    .new-places-mobile .new-places-name {
        font-size: clamp(0.8rem, 3.5vw, 0.95rem);
        padding: 0 2px;
        margin-top: 6px;
    }
}

.text-gray {
    color: #8c8d89 !important;
}

.text-half-gray {
    color: #5a5a5a !important;
}

.fs-25 {
    font-size: 25px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-10 {
    font-size: 10px !important;
}

.fs-8 {
    font-size: 8px !important;
}

.swiper-wrapper {
    display: flex;
    flex-direction: row;
}

[dir="rtl"] .swiper-wrapper {
    flex-direction: row-reverse;
}

.mo-view .promo .promo-box {
    position: relative;
    overflow: hidden;
    height: 130px;
}

.mo-view .promo-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, #73809300, #25313f);
    z-index: 1;
    border-radius: 7px;
}

.mo-bell-box {
    cursor: pointer;
}

.notifications-dropdown {
    position: absolute;
    top: 100%;
    width: 300px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

[dir="ltr"] .notifications-dropdown {
    right: 0;
    left: auto;
    text-align: right;
}

[dir="rtl"] .notifications-dropdown {
    left: 0;
    right: auto;
    text-align: left;
}

.notification-header {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    background: #f9f9f9;
}

.notification-list {
    max-height: 300px;
    overflow-y: auto;
}

.notification-item {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.notification-item.unread {
    background-color: #f0f7ff;
}

.notification-time {
    display: block;
    font-size: 12px;
    color: #777;
    margin-top: 5px;
}

.notification-footer {
    padding: 10px 15px;
    text-align: center;
    border-top: 1px solid #eee;
}

.notification-count {
    top: -8px;
    right: -8px;
    background: red;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.mo-view .promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
    transform: scaleX(-1);
}

.mo-view .promo-box .promo-caption {
    position: absolute;
    z-index: 2;
    color: white;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.mo-view .form-check-input-pay[type="radio"]:checked:after {
    background-color: #dc143c !important;
}

.mo-view .form-check-input-pay:checked {
    border-color: #dc143c;
}

/* start welcome page  */
.mo-view .welcome-img {
    transform: scaleX(-1);
    border-radius: 50%;
    width: 256px;
    height: 256px;
    object-fit: cover;
}

.mo-view .login {
    width: 100%;
    max-width: 100%;
    height: 48px;
    background-color: var(--main-color);
    color: white;
    font-weight: 600;
    font-size: 20px;
    line-height: 48px;
    text-align: center;
    display: block;
    border-radius: 0;
    text-decoration: none;
    border: none;
    border-radius: 10px;
}
.a {
    color: #000000;
    text-decoration: none;
    color: #000000;
}
.mo-view .disabled-button {
    background-color: #aeaeae;
    width: 100%;
    max-width: 100%;
    height: 48px;

    color: white;
    font-weight: 600;
    font-size: 20px;
    line-height: 48px;
    text-align: center;
    display: block;
    border-radius: 0;
    text-decoration: none;
    border: none;
    border-radius: 10px;
}

.mo-view .signin {
    width: 100%;
    max-width: 100%;
    height: 48px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    font-weight: 600;
    font-size: 20px;
    line-height: 48px;
    text-align: center;
    display: block;
    border-radius: 0;
    text-decoration: none;
    border-radius: 10px;
}

.mo-view .border-top {
    border-top: 1.5px solid #5a5a5a !important;
}

/* End welcome page  */

/* start login page  */
.mo-view .login-form .fa-phone,
.mo-view .login-form .fa-user {
    right: 15px;
    color: #000000;
    font-size: 16px;
}

.mo-view .login-form .fa-envelope {
    top: 10px;
    right: 15px;
    color: #000000;
    font-size: 16px;
}

.mo-view .login-form input {
    height: 47px;
    padding-right: 40px;
}

.mo-view .login-form textarea {
    height: 170px;
    padding-right: 40px;
}

/* End login page  */

/* start profile-edit-page  */
.mo-view .profile-edit-form .profile-img-container {
    position: relative;
    width: 120px;
    height: 120px;
}

.mo-view .profile-edit-form img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.mo-view .profile-edit-form .profile-img-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.432),
        rgba(255, 255, 255, 0.432)
    );
    z-index: 0;
}

.mo-view .profile-edit-form .fa-pen-to-square {
    position: absolute;
    bottom: 0px;
    right: 10px;
    z-index: 2;
    color: #000000;
    padding: 5px;
    border-radius: 50%;
}

.bg-light {
    background-color: #2427600d !important;
}

.mo-view .vip {
    width: 50px;
    height: 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15.8px;
    background-color: #dc143c;
    text-align: center;
    color: white;
}

/* end profile-edit-page  */

/* start cancel-tickets  */
.form-check-input[type="checkbox"]:checked {
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}

.mo-view .hr-dashed {
    border: 1px dashed #a7a5a5;
}

/* End cancel-tickets  */

.mo-view .login-form {
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.mo-view .otp-box {
    width: 42px;
    height: 38px;
    align-items: center;
    border-radius: 10.96px;
    background-color: #d9d9d9;
    border: none;
    padding: 5px;
    font-size: 16px;
    color: #000;
}

.mo-view .green-circle,
.mo-view .red-circle {
    width: 13px;
    height: 13px;
    border-radius: 50%;
}

.mo-view .green-circle {
    background-color: green;
}

.mo-view .red-circle {
    background-color: red;
}

.mo-view .line {
    width: 50px;
    height: 2px;
    background-color: #ddd;
}

.bus .line {
    width: 4px;
    height: 15px;
    background-color: #ddd;
}

/* start bus  */
.mo-view .tabs-container {
    display: flex;
    align-items: center;
    position: relative;
}

.mo-view .tabs-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    flex: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mo-view .tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.mo-view .nav-tabs {
    display: inline-flex;
    flex-wrap: nowrap;
    border-bottom: none;
}

.mo-view .nav-item {
    flex-shrink: 0;
}

/* .scroll-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s;
}

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

.scroll-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
} */

.mo-view .nav-tabs .nav-link {
    white-space: nowrap;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem 0.25rem 0 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    background-color: #dad9db33;
    border-radius: 15px;
    border: 1px solid #eef0eb;
    color: #000000;
    margin: 0 2px;
}

.mo-view .nav-tabs .nav-link.active {
    color: #fff;
    background-color: var(--main-color);
    border: 1px solid #eef0eb;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .mo-view .tabs-container {
        padding: 0 15px;
    }

    .mo-view .nav-tabs .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

.mo-view .bus-box {
    background-color: #fbecde;
    width: 90px;
    height: 90px;
    font-size: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mo-view .bus-card {
    box-shadow: 1px 2px 0px #00000040;
}

.mo-view .xmark-box {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mo-view .btn-group {
    box-shadow: none !important;
}

/* start search  */
.mo-view .custom-dropdown {
    width: 100%;
}

.mo-view .custom-dropdown .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: right;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    background-color: white;
    box-shadow: none !important;
}

.mo-view .custom-dropdown .dropdown-toggle::after {
    display: none;
}

.mo-view .custom-dropdown .dropdown-menu {
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 4px;
    margin-top: 5px;
}

.mo-view .custom-dropdown .dropdown-item {
    padding: 8px 16px;
}

.mo-view .custom-dropdown .dropdown-divider {
    margin: 0;
    border-top: 1px solid #e9ecef;
}

.mo-view .dropdown-arrow {
    margin-right: 8px;
    transition: transform 0.3s;
}

.mo-view .show .dropdown-arrow {
    transform: rotate(180deg);
}

/* end search  */
/* End mobile view  */

/* Mostafa Edits  */

.btn-search {
    width: 100%;
    height: 40px;
    background-color: #dc143c;
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    font-weight: 400;
    font-size: 15.18px;
}

.register-desktop,
.otp-desktop {
    margin-top: 120px;
    margin-bottom: 50px;
}

/* Responsive View Handling */
.desktop,
.mobile {
    transition: opacity 0.3s ease-in-out;
}

/* Hide mobile view on larger screens */
@media (min-width: 992px) {
    .mobile {
        display: none !important;
    }

    .desktop {
        display: block !important;
    }
}

/* Hide desktop view on smaller screens */
@media (max-width: 991.98px) {
    .desktop {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }
}

/* Ensure content doesn't shift during transition */
body {
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Prevent horizontal scrolling */
.container-fluid {
    overflow-x: hidden;
}

/* Smooth font scaling */
@media (max-width: 991.98px) {
    html {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    html {
        font-size: 16px;
    }
}

/* Responsive spacing adjustments */
@media (max-width: 768px) {
    .mo-view {
        padding-left: 15px;
        padding-right: 15px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Responsive image handling */
img {
    max-width: 100%;
    height: auto;
}

/* ===== Date wheel picker modal (Reference style) ===== */
.date-wheel-picker {
    text-align: center;
    min-width: 100%;
}

.date-wheel-column {
    flex: 1;
    min-width: 0;
}

.date-wheel-column .form-select {
    width: 100%;
    font-size: 1.1rem;
    padding: 0.8rem;
    border-radius: 12px;
    text-align: center;
}

.date-wheel-column .form-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    display: block;
    color: #666;
    margin-bottom: 8px;
}

/* ===== Date wheel picker modal (Reference style) ===== */
.date-wheel-picker {
    text-align: center;
    min-width: 100%;
}

.date-wheel-column {
    flex: 1;
    min-width: 0;
}

.date-wheel-column .form-select {
    width: 100%;
    font-size: 1.1rem;
    padding: 0.8rem;
    border-radius: 12px;
    text-align: center;
}

.date-wheel-column .form-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    display: block;
    color: #666;
    margin-bottom: 8px;
}

/* ===== Premium Input Component Styles ===== */
.premium-input-wrapper {
    position: relative;
    width: 100%;
}

.premium-label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.premium-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: var(--input-radius, 14px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.premium-input-group:focus-within {
    border-color: var(--main-color, #dc143c);
    box-shadow:
        0 0 0 4px rgba(220, 20, 60, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.05);
}

.premium-input-group.is-invalid-group {
    border-color: #dc3545;
}

.premium-input-group:focus-within .premium-label {
    color: var(--main-color, #dc143c);
}

.premium-input-icon {
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    border-left: 1px solid #f0f0f0; /* Default for LTR, will flip for RTL */
}

[dir="rtl"] .premium-input-icon {
    border-left: none;
    border-right: 1px solid #f0f0f0;
}

.premium-input-group:focus-within .premium-input-icon {
    color: var(--main-color, #dc143c);
}

.premium-input, 
.premium-select,
.premium-textarea {
    flex: 1;
    border: none !important;
    background: transparent !important;
    padding: 14px 18px;
    font-size: 1rem;
    color: #333;
    outline: none !important;
    box-shadow: none !important;
    height: 54px;
}

.premium-textarea {
    height: auto;
    min-height: 120px;
}

.premium-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='20' height='20' fill='%23999999'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    padding-right: 40px !important;
}

[dir="rtl"] .premium-select {
    background-position: left 15px center !important;
    padding-left: 40px !important;
    padding-right: 18px !important;
}

.premium-input::placeholder {
    color: #bbb;
    font-weight: 400;
}

.premium-error-icon {
    padding: 0 15px;
    color: #dc3545;
    font-size: 1rem;
}

.premium-error-text {
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 500;
}
/* Destinations Page Premium Styles */
.hero-section-destination {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
    overflow: hidden;
}

.hero-section-destination::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.box-destination {
    position: relative;
    z-index: 2;
}

.search-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.search-wrapper input[type="search"] {
    width: 100%;
    padding: 18px 60px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.search-wrapper input[type="search"]:focus {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.search-wrapper .search-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 25px;
    font-size: 20px;
    color: var(--main-color);
    pointer-events: none;
    transition: all 0.3s ease;
}

.search-wrapper .clear-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    cursor: pointer;
    font-size: 18px;
    color: #888;
    display: none;
    transition: all 0.2s ease;
}

.search-wrapper .clear-icon:hover {
    color: var(--main-color);
}

[dir="rtl"] .search-wrapper input[type="search"] {
    padding: 18px 60px;
}

[dir="rtl"] .search-wrapper .search-icon {
    left: auto;
    right: 25px;
}

[dir="rtl"] .search-wrapper .clear-icon {
    right: auto;
    left: 25px;
}

.popular-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 15px 0 10px !important;
}

.cardSection {
    border: none !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.cardSection:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.cardSection img {
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cardSection:hover img {
    transform: scale(1.08);
}

.reserve {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--main-color);
    color: white !important;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.reserve:hover {
    background-color: var(--main-hover);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-section-destination {
        height: 300px;
    }
    
    .search-wrapper input[type="search"] {
        padding: 14px 50px;
        font-size: 16px;
    }
    
    .cardSection img {
        height: 180px;
    }
    
    .popular {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* Mobile Home Premium Utilities */
.mo-trip-type-container {
    background: #f0f0f0;
    border-radius: 14px;
}

.mo-trip-type-nav-link {
    border-radius: 10px !important;
}

.mo-station-group-bg {
    background: #f8f9fa;
}

.mo-location-icon-box {
    width: 36px;
    height: 36px;
    border: 1px solid #eee;
}

.mo-swap-btn {
    width: 44px;
    height: 44px;
    color: var(--main-color);
    transition: transform 0.3s;
}

.mo-passenger-count-btn {
    width: 24px;
    height: 24px;
}

.mo-btn-32 {
    width: 32px;
    height: 32px;
}

.mo-bg-gray {
    background: #f8f9fa !important;
}

.sticky-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    z-index: 100;
}

.rtl-dir {
    direction: rtl;
}

.ltr-dir {
    direction: ltr;
}

.icon-large {
    font-size: 50px;
}

.rounded-9 {
    border-radius: 18px !important;
}

.passenger-box-home {
    background: #f8f9fa;
    border: 1px dashed #ddd;
}

.text-inherit {
    color: inherit !important;
}
/* Station Dropdowns */
.main-stations,
.sub-stations-dropdown {
    transform: none !important;
    top: calc(100% + 10px) !important;
    width: 100% !important;
    max-height: 350px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    min-width: 280px;
    border-radius: 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
    padding: 10px 0 !important;
    animation: dropdownFadeIn 0.3s ease;
    z-index: 1050 !important;
    display: none;
    left: 0 !important;
    right: auto !important;
}

[dir="rtl"] .main-stations,
[dir="rtl"] .sub-stations-dropdown {
    left: auto !important;
    right: 0 !important;
}

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

.dropdown-header {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-weight: 700;
    padding: 12px 20px !important;
}

.dropdown-item {
    padding: 14px 20px !important;
    font-weight: 600;
    color: #444;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 8px;
    margin: 2px 8px;
    position: relative;
}

.dropdown-item:hover {
    background-color: rgba(220, 20, 60, 0.05) !important;
    color: var(--main-color) !important;
}

.dropdown-item i {
    font-size: 14px;
    color: var(--main-color);
    opacity: 0.7;
}

.back-item {
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    color: var(--main-color) !important;
    font-size: 13px;
    cursor: pointer;
}

.back-item:hover {
    background-color: #f1f3f5 !important;
}

#from-sub-stations,
#to-sub-stations {
    max-height: 350px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

.flatpickr-day.selected {
    background: var(--main-color) !important;
    border-color: var(--main-color) !important;
}

/* Wheel Picker Component Styles (Mobile Only) - Responsive */
@media (max-width: 991px) {
    /* Hidden by default; JS sets display:block when opening the date picker */
    .wheel-picker-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 2000;
        animation: fadeIn 0.3s ease;
    }

    .wheel-picker-container {
        position: fixed;
        bottom: -100%;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100vw;
        max-height: 85vh;
        max-height: 85dvh;
        background: white;
        border-radius: 30px 30px 0 0;
        transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 2001;
        padding: 16px 16px calc(24px + env(safe-area-inset-bottom, 0px));
        padding-left: calc(16px + env(safe-area-inset-left, 0px));
        padding-right: calc(16px + env(safe-area-inset-right, 0px));
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
        overflow: hidden;
        box-sizing: border-box;
    }

    .wheel-picker-container.active {
        bottom: 0;
    }

    .wheel-picker-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 1px solid #f0f0f0;
        flex-wrap: nowrap;
    }

    .wheel-picker-header .btn {
        min-height: 44px;
        min-width: 44px;
        padding: 10px 16px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .wheel-picker-header h5 {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
        margin: 0;
        color: #333;
        flex-shrink: 0;
    }

    .wheel-picker-content {
        display: flex;
        justify-content: center;
        height: min(220px, 40vh);
        min-height: 160px;
        position: relative;
        background: #f8f9fa;
        border-radius: 16px;
        overflow: hidden;
    }

    .wheel-column {
        flex: 1;
        min-width: 0;
        overflow-y: scroll;
        scrollbar-width: none;
        position: relative;
        -ms-overflow-style: none;
        scroll-snap-type: y mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .wheel-column::-webkit-scrollbar {
        display: none;
    }

    .wheel-item {
        height: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: clamp(16px, 4vw, 18px);
        color: #999;
        transition: all 0.2s ease;
        scroll-snap-align: center;
    }

    .wheel-item.selected {
        color: var(--main-color);
        font-weight: 700;
        font-size: clamp(18px, 4.5vw, 22px);
        transform: scale(1.1);
    }

    .wheel-selection-indicator {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 44px;
        transform: translateY(-50%);
        background: rgba(220, 20, 60, 0.05);
        border-top: 1px solid rgba(220, 20, 60, 0.1);
        border-bottom: 1px solid rgba(220, 20, 60, 0.1);
        pointer-events: none;
        z-index: 10;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
