/*
 * Main site stylesheet. High use of !important is legacy technical debt;
 * prefer CSS variables and specificity over time when touching related rules.
 */

/* start global  */

/* Heart favorite buttons — toggled in main.js via .is-liked */
.heart-btn.is-liked i.fa-heart {
    color: var(--main-color);
}

.heart-btn:not(.is-liked) i.fa-heart {
    color: #000;
}

@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: #067fc9;
    --main-hover: #056fb1;
    --main-color-rgb: 6, 127, 201;
    --accent-color: #ffa812;
    --accent-color-rgb: 255, 168, 18;
    --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: var(--main-color);
}

.text-main {
    color: var(--main-color) !important;
}

.btn-main {
    background-color: var(--main-color);
    color: white;
}

.btn-main-outline {
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

.bg-main-light {
    background-color: rgba(var(--main-color-rgb), 0.08) !important;
}

.bg-accent-light {
    background-color: rgba(var(--accent-color-rgb), 0.08) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.btn-accent {
    background-color: var(--accent-color);
    color: white;
}


.text-black {
    color: black;
}

.text-red {
    color: red;
}

/* Override Bootstrap warning colors to match brand */
.text-warning {
    color: var(--main-color) !important;
}

.bg-warning {
    background-color: var(--main-color) !important;
}

.badge.bg-warning {
    background-color: var(--main-color) !important;
}

.btn-warning {
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}

.btn-warning:hover,
.btn-warning:focus {
    background-color: var(--main-hover) !important;
    border-color: var(--main-hover) !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: var(--main-color);
    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: var(--main-color);
    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: var(--main-color) !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,
.lang-dropdown .dropdown-menu.lang-menu {
    --bs-dropdown-min-width: 0;
    min-width: 0 !important;
    width: max-content !important;
    max-width: calc(100vw - 2rem);
    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: var(--main-hover);
    padding: 10px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .offcanvas {
        background-color: var(--main-color) !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  */

/* ── Premium Home Utilities ─────────────────────────────── */
.home-glass-card {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15) !important;
    border-radius: 32px !important;
}

.home-section-head {
    margin-bottom: 3.5rem;
}

.home-section-head h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #111;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.home-section-head .section-divider {
    width: 60px;
    height: 4px;
    background: var(--main-color);
    margin: 0 auto;
    border-radius: 2px;
}

.home-section-head p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* Advantage Cards (Why Choose Us) */
.advantage-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: var(--soft-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f2f5;
    height: 100%;
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--premium-shadow);
    border-color: var(--main-color);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(var(--main-color-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--main-color);
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    background: var(--main-color);
    color: #fff;
    transform: rotate(10deg);
}

.advantage-card h4 {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Premium Testimonials */
.premium-testimonial-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--soft-shadow);
    border-bottom: 4px solid #f0f2f5;
    transition: all 0.3s ease;
}

.premium-testimonial-card:hover {
    border-bottom-color: var(--main-color);
    transform: translateY(-5px);
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
    color: #444;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar-premium {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-user h6 {
    margin: 0;
    font-weight: 800;
    color: #111;
}

.testimonial-user span {
    font-size: 12px;
    color: #888;
}

/* ── Premium Policy Pages ──────────────────────────────── */
.policy-header {
    margin-top: 100px;
    padding: 100px 0 80px;
    background: #fff;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.policy-header .glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 10%, rgba(var(--main-color-rgb), 0.1), transparent 70%);
    z-index: 0;
}

.policy-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -2px;
    margin: 0;
}

.policy-card {
    background: #fff;
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f2f5;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.policy-content {
    line-height: 2.1;
    font-size: 1.15rem;
    color: #4a4a4a;
    font-family: 'Inter', 'Roboto', sans-serif;
}

.policy-content h2 {
    color: #111;
    font-weight: 800;
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.policy-content h2::before {
    content: '';
    display: inline-block;
    width: 35px;
    height: 4px;
    background: var(--main-color);
    border-radius: 10px;
}

.policy-content h3 {
    color: #222;
    font-weight: 700;
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content p {
    margin-bottom: 1.8rem;
}

.policy-content ul, .policy-content ol {
    margin-bottom: 2rem;
    padding-inline-start: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.8rem;
    position: relative;
}

.policy-content ul li::marker {
    color: var(--main-color);
    font-size: 1.2rem;
}

.policy-content strong, .policy-content b {
    color: #111;
    font-weight: 700;
}

.policy-content blockquote {
    border-inline-start: 4px solid var(--main-color);
    background: rgba(var(--main-color-rgb), 0.03);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: #555;
}

[dir="rtl"] .policy-content blockquote {
    border-radius: 16px 0 0 16px;
}

/* Response for Mobile */
@media (max-width: 768px) {
    .policy-header {
        margin-top: 60px;
        padding: 60px 0 100px;
    }
    .policy-card {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
        margin-top: -80px;
        margin-left: 15px;
        margin-right: 15px;
    }
    .policy-content {
        font-size: 1rem;
        line-height: 1.9;
    }
}

/* ───────────────────────────────────────────────────────── */

/* 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;
    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(var(--main-color-rgb), 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;
}

.text-main {
    color: var(--main-color) !important;
}
.bg-main {
    background-color: var(--main-color) !important;
    color: #fff !important;
}

/* Station Group Spacing */
.station-group .row {
    --bs-gutter-x: 3.5rem !important; 
}

/* Enforce rigid circular shape for passenger buttons */
.mo-btn-32 {
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #eaeaea !important;
    border-radius: 50% !important;
}
.mo-btn-32 i {
    margin: 0 !important;
}

.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;
    z-index: 2;
}

.swap-btn-floating {
    position: relative;
    z-index: 10;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    font-size: 1rem;
    margin: 0 auto;
}

.swap-btn-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(var(--main-color-rgb), 0.2) !important;
    color: #fff !important;
    background: var(--main-color) !important;
}

.swap-btn-floating:active {
    transform: scale(0.95);
}

@media (max-width: 767px) {
    .swap-btn-floating {
        transform: rotate(90deg);
        margin: 5px auto;
    }
    .swap-btn-floating:hover {
        transform: rotate(90deg) scale(1.1);
    }
}
    .station-group .row {
        --bs-gutter-y: 1rem !important; 
    }
}

.input-with-icon {
    position: relative !important; /* Ensure children anchor here */
    margin-bottom: 0; /* Let the parent handle spacing */
    width: 100%;
}

/* Station search dropdowns — isolated from global .dropdown-menu to fix width issues */
.station-results-container {
    position: absolute !important;
    top: calc(100% + 5px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    display: none; /* Controlled by JS */
    max-height: 280px;
    overflow-y: auto;
    z-index: 1050;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    background: #fff;
    padding: 8px !important;
    list-style: none;
    margin: 0 !important;
}

.station-results-container .dropdown-item {
    border-radius: 12px;
    padding: 10px 15px;
    font-weight: 600;
    color: #444;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.station-results-container .dropdown-item:hover {
    background-color: rgba(var(--main-color-rgb), 0.08);
    color: var(--main-color);
    transform: translateX(5px);
}

[dir="rtl"] .station-results-container .dropdown-item:hover {
    transform: translateX(-5px);
}

.station-results-container .dropdown-header {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--main-color);
    font-weight: 800;
    padding: 10px 15px 5px;
    opacity: 0.8;
}

/* RTL: flip anchor so dropdown still aligns under the input */
[dir="rtl"] .station-results-container {
    left: 0 !important;
    right: 0 !important;
}

.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(var(--main-color-rgb), 0.1);
    outline: none;
}

.hero-btn {
    height: 65px;
    width: 100%;
    background: linear-gradient(to right, var(--main-color), var(--main-hover));
    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(var(--main-color-rgb), 0.3);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(var(--main-color-rgb), 0.4);
    background: linear-gradient(to right, var(--main-color), var(--main-hover));
    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;
}

/* Hidden native date input — only Flatpickr opens the calendar (avoid broken native month/year UI) */
.datepicker-real {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.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;
}

/*
 * Flatpickr: do not override internal flex/table layout (breaks day grid).
 * Keep calendar LTR internally so weekday + day rows stay aligned on RTL pages.
 */
.flatpickr-calendar {
    direction: ltr;
    font-family: inherit;
    z-index: 1100 !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

[dir="rtl"] .flatpickr-calendar {
    direction: ltr;
}

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

.search-trip-btn {
    height: 63px;
    border: none;
    background-color: var(--main-color);
    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: var(--main-color);
}

.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: var(--main-color);
    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: var(--main-color);
    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: var(--main-color);
    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: var(--main-color);
    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, var(--main-color), var(--main-hover)),
        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 .testimonial-avatar {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
}

.testimonials .testimonial-avatar img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonials .testimonial-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--main-color), var(--main-hover));
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
}

/* 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: var(--main-color);
    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  */

/* ── Premium Dark Footer ──────────────────────────────── */
footer {
    padding-top: 100px;
    padding-bottom: 0;
    color: #ffffff;
    background-color: #0b0c10 !important;
    background-image: radial-gradient(circle at 50% -20%, rgba(var(--main-color-rgb), 0.15), transparent 60%) !important;
    height: auto;
    position: relative;
    overflow: hidden;
}

/* Subtle separator at the very top of footer */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(var(--main-color-rgb), 0.3), transparent);
}

footer .footer-links-top {
    color: var(--main-color);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
}

footer .footer-links-top::after {
    content: '';
    position: absolute;
    bottom: -8px;
    inset-inline-start: 0;
    width: 30px;
    height: 2px;
    background: var(--main-color);
    border-radius: 2px;
}

footer .footer-links {
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}

footer .footer-links:hover {
    color: var(--main-color);
    transform: translateX(5px);
}

[dir="rtl"] footer .footer-links:hover {
    transform: translateX(-5px);
}

footer .footer-links i {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Newsletter Redesign */
.footer-newsletter-column h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #fff;
}

.footer-input-group {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 6px;
    display: flex;
    transition: border-color 0.3s ease;
}

.footer-input-group:focus-within {
    border-color: var(--main-color);
}

.footer-input-group input {
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: #fff;
    flex: 1;
    font-weight: 600;
    outline: none;
}

.footer-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-join-btn {
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px 25px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer-join-btn:hover {
    background: var(--main-hover);
    transform: scale(1.02);
}

/* Social Icons */
.social-footer {
    display: flex;
    gap: 12px;
}

.social-footer a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-footer a:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(var(--main-color-rgb), 0.3);
}

.social-footer a i {
    font-size: 1.1rem;
}

/* Copyright Row */
.footer-bottom {
    margin-top: 80px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

.copyright-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin: 0;
}

.google-play-box-footer {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    transition: all 0.3s ease;
    min-width: 170px;
}

.google-play-box-footer:hover {
    border-color: var(--main-color);
    transform: translateY(-3px);
}

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

.google-play-footer h6 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 0;
}

.google-play-footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    margin-bottom: 0;
    text-transform: uppercase;
}

@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 summer-discovery-section */
.summer-discovery-section {
    min-height: 500px;
    background: #000;
}

.summer-discovery-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), 
                url('/brain/30d4a04b-58da-4706-b3b1-9b2de08be26e/egypt_beach_hero_1776361050504.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.discovery-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.discovery-divider {
    width: 100px;
    height: 4px;
    background: var(--main-color);
    border-radius: 2px;
}

.transform-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(var(--main-color-rgb), 0.4) !important;
}

@media (max-width: 991px) {
    .summer-discovery-bg {
        background-attachment: scroll;
    }
    .summer-discovery-section h2 {
        font-size: 1.75rem !important;
    }
}
/* ── Home Page Modernization & Theme Alignment ───────────────── */

/* 1. Global Section Head Refinement */
.home-section-head h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #111;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.home-section-head .pre-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--main-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

/* 2. Advantage Cards (Why Choose Us) */
.advantage-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(var(--main-color-rgb), 0.2);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: rgba(var(--main-color-rgb), 0.1);
    color: var(--main-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon {
    background: var(--main-color);
    color: #fff;
    transform: rotateY(180deg);
}

.advantage-card h4 {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #111;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* 3. Stats Section (Dark Theme) */
.home-stats-section {
    background-color: #0b0c10;
    background-image: radial-gradient(circle at 50% 50%, rgba(var(--main-color-rgb), 0.15), transparent 70%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.premium-stats-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.premium-stats-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: scale(1.05);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--main-color);
    margin-bottom: 1.5rem;
    display: block;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

/* 4. Quality Commitment Cards */
.quality-card {
    background: #fff;
    border-radius: 28px;
    padding: 3rem 2.5rem;
    border: 1px solid #f0f0f0;
    transition: all 0.5s ease;
    height: 100%;
}

.quality-card:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.quality-card i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--main-color), #ffcc33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* 5. Popular Destination Card Refinement */
.popular-dest-card__inner {
    border: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.popular-dest-card:hover .popular-dest-card__inner {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12) !important;
}

.popular-dest-card__overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    backdrop-filter: blur(2px);
}

.popular-dest-card__name {
    font-weight: 800;
    font-size: 1.5rem !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .premium-stats-card {
        padding: 2.5rem 1.5rem;
        margin-bottom: 1rem;
    }
    .stat-number {
        font-size: 2.75rem;
    }
}
/* 6. Stations & City Dropdowns Refinement (Compact Version) */
.main-stations, 
.sub-stations-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important; /* Forces it to match .input-with-icon exactly */
    max-height: 350px;
    overflow-y: auto;
    overflow-x: hidden !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 45px rgba(0,0,0,0.12) !important;
    margin-top: 8px !important;
    background: #fff !important;
    z-index: 1050 !important;
    padding: 5px 0 !important;
}

/* Reset side forced alignments */
[dir="ltr"] .main-stations,
[dir="ltr"] .sub-stations-dropdown,
[dir="rtl"] .main-stations,
[dir="rtl"] .sub-stations-dropdown {
    left: 0 !important;
    right: 0 !important;
}

.main-stations .dropdown-header,
.sub-stations-dropdown .dropdown-header {
    background: #fbfbfb;
    color: var(--main-color);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 10px 15px !important;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 5px;
}

.main-stations .dropdown-item,
.sub-stations-dropdown .dropdown-item {
    padding: 10px 15px !important;
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    border-bottom: none !important;
    border-radius: 0;
    transition: all 0.2s ease;
    white-space: normal; /* Allow text wrapping if needed */
}

.main-stations .dropdown-item:hover,
.sub-stations-dropdown .dropdown-item:hover {
    background-color: var(--main-color) !important;
    color: #fff !important;
}

.main-stations .dropdown-item i,
.sub-stations-dropdown .dropdown-item i {
    font-size: 0.7rem;
    opacity: 0.5;
}
/* ───────────────────────────────────────────────────────────── */
/* ───────────────────────────────────────────────────────────── */

/* 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: var(--main-color);
}

.popular .reserve {
    width: 115px;
    height: 50px;
    background-color: var(--main-color);
    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(var(--main-color-rgb), 0.85), rgba(var(--main-color-rgb), 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 about-us */

/* ── Hero ─────────────────────────────────────────────── */
.about-hero {
    margin-top: 100px;
    position: relative;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid rgba(var(--main-color-rgb), 0.15);
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), 0.08), rgba(var(--main-color-rgb), 0.03));
    pointer-events: none;
    border-radius: 0 0 0 80px;
}

.about-hero-img-wrap {
    position: relative;
    height: 420px;
}

.about-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.about-hero-img-wrap::after {
    content: '';
    position: absolute;
    bottom: -20px;
    inset-inline-end: -20px;
    width: 80%;
    height: 80%;
    border: 3px solid rgba(var(--main-color-rgb), 0.4);
    border-radius: 28px;
    z-index: 0;
}

.about-hero-content {
    color: #111;
    padding: 4rem 2rem;
}

.about-hero-content .badge-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--main-color-rgb), 0.12);
    color: #8a6200;
    border: 1px solid rgba(var(--main-color-rgb), 0.35);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.about-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #111;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.about-hero-content h1 span {
    color: var(--main-color);
}

.about-hero-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    max-width: 540px;
}

.about-hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.about-stat-item {
    text-align: center;
}

.about-stat-item .stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--main-color);
    line-height: 1;
}

.about-stat-item .stat-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero-stats-divider {
    width: 1px;
    background: rgba(var(--main-color-rgb), 0.25);
    align-self: stretch;
}

/* ── Section Heading ──────────────────────────────────── */
.about-sections-wrap {
    padding: 80px 0;
    background: #f7f8fc;
}

.about-section-heading {
    text-align: center;
    margin-bottom: 3.5rem;
}

.about-section-heading .pre-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--main-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.about-section-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #111;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.about-section-heading .subtitle {
    color: #666;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ── Feature Cards ────────────────────────────────────── */
.feature-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem 1.75rem;
    height: 100%;
    border: 1px solid #eef0f5;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--main-color), var(--main-hover));
    border-radius: 0 0 4px 0;
    transition: height 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.09);
    border-color: transparent;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), 0.12), rgba(var(--main-color-rgb), 0.22));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.35s ease;
}

.feature-card-icon i {
    font-size: 1.4rem;
    color: var(--main-color);
    transition: transform 0.35s ease;
}

.feature-card:hover .feature-card-icon {
    background: var(--main-color);
}

.feature-card:hover .feature-card-icon i {
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

.feature-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.75;
    margin: 0;
    /* Clamp to 4 lines by default */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* When expanded, remove the clamp */
.feature-card p.expanded {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

/* Read more / Read less toggle button */
.fc-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--main-color);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease;
    letter-spacing: 0.3px;
}

.fc-read-more-btn:hover {
    color: var(--main-hover);
}

.fc-read-more-btn i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.fc-read-more-btn.expanded i {
    transform: rotate(180deg);
}

/* ── Legacy ───────────────────────────────────────────── */
.box-shadow {
    box-shadow: 0px 4px 4px #00000040;
}

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

.blogs-taps .nav-pills .nav-link.active {
    background-color: var(--main-color);
    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: var(--main-hover);
    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 */

/* ── Contact Hero ───────────────────────────────────── */
.contact-hero {
    margin-top: 100px;
    background: #fff;
    border-bottom: 1px solid rgba(var(--main-color-rgb), 0.15);
}

.contact-hero-content {
    padding: 5rem 0;
}

.contact-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #111;
    letter-spacing: -1px;
}

.contact-hero-content p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
}

/* ── Contact Card (Forms & Info) ─────────────────────── */
.contact-card {
    background: #fff;
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f2f5;
    height: 100%;
}

.contact-form-label {
    font-weight: 700;
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
    display: block;
}

.contact-input-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.contact-input-wrapper i {
    position: absolute;
    inset-inline-start: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-color);
    font-size: 1.1rem;
    z-index: 1;
}

.contact-input-wrapper textarea + i {
    top: 25px;
    transform: none;
}

.contact-control {
    width: 100%;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 14px 20px 14px 50px;
    font-weight: 600;
    color: #111;
    transition: all 0.3s ease;
}

[dir="rtl"] .contact-control {
    padding: 14px 50px 14px 20px;
}

.contact-control:focus {
    background: #fff;
    border-color: var(--main-color);
    box-shadow: 0 0 0 4px rgba(var(--main-color-rgb), 0.1);
    outline: none;
}

.contact-submit-btn {
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, var(--main-color), var(--main-hover));
    color: #fff;
    border: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(var(--main-color-rgb), 0.3);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(var(--main-color-rgb), 0.4);
    color: #fff;
}

/* ── Info Action Cards ───────────────────────────────── */
.info-action-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid #eef0f5;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
    text-decoration: none !important;
}

.info-action-card:hover {
    transform: translateX(8px);
    border-color: var(--main-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

[dir="rtl"] .info-action-card:hover {
    transform: translateX(-8px);
}

.info-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(var(--main-color-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon-box i {
    font-size: 1.2rem;
    color: var(--main-color);
}

.info-text-box .label {
    display: block;
    font-size: 13px;
    color: #888;
    font-weight: 600;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.info-text-box .value {
    display: block;
    font-size: 1.05rem;
    color: #111;
    font-weight: 700;
    word-break: break-all;
}

.complaints-banner {
    background: linear-gradient(135deg, var(--main-color), var(--main-hover));
    border-radius: 24px;
    padding: 2.2rem;
    color: #fff;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(var(--main-color-rgb), 0.25);
}

.complaints-banner i.corner-icon {
    position: absolute;
    inset-inline-end: -25px;
    bottom: -25px;
    font-size: 9rem;
    opacity: 0.15;
    transform: rotate(-15deg);
    color: #fff;
}

.complaints-banner h5 {
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #fff;
    font-size: 1.35rem;
}

.complaints-banner p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.complaints-banner a {
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.15);
    padding: 8px 20px;
    border-radius: 12px;
    display: inline-block;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.complaints-banner a:hover {
    background: rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
    color: #fff;
}

/* 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: var(--main-color);
    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: var(--main-color);
    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 var(--main-color);
    /* Customize the color */
    border-radius: 8px;
    background-color: white;
    color: var(--main-color);
}

@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: var(--main-color);
    border-radius: 5px;
    font-size: 20px;
}

.profile-page .logout {
    border: 1px solid var(--main-color);
    background-color: white;
    border-radius: 5px;
    font-weight: 400;
    font-size: 20px;
    width: 100%;
    height: 48px;
    color: var(--main-color);
    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: var(--main-color);
    font-weight: 400;
    border: none;
    color: white;
}

.no-btn {
    background-color: #fff;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}

.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: var(--main-color);
    color: white;
    width: 165px;
    height: 46px;
    border-radius: 8.68px;
    font-weight: 400;
    font-size: 22px;
}

/* End profile-page  */

/* start chairs (Premium Booking UI) */
.chairs {
    margin-top: 2rem;
    padding-bottom: 4rem;
}

/* Bus Cabin Container */
.bus-cabin {
    background: #fdfdfd;
    border: 3px solid #e0e0e0;
    border-radius: 40px 40px 15px 15px;
    padding: 30px 20px 20px;
    position: relative;
    max-width: fit-content;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.bus-cabin::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 20%;
    right: 20%;
    height: 4px;
    background: #eee;
    border-radius: 2px;
}

/* Steering wheel icon for front of bus */
.bus-front {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 20px;
    border-bottom: 2px dashed #eee;
    margin-bottom: 25px;
}

.bus-front .steering-icon {
    width: 35px;
    height: 35px;
    opacity: 0.3;
}

/* Legend */
.chairs .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.chairs .your-chair, .chairs .available-chair, .chairs .reserved-chair {
    width: 20px;
    height: 20px;
    border-radius: 6px;
}

.chairs .your-chair { background-color: #13ae47; border: 1px solid #0e8a38; }
.chairs .available-chair { background-color: #f1f1f1; border: 1px solid #ddd; }
.chairs .reserved-chair { background-color: #e2e2e2; border: 1px solid #ccc; position: relative; }
.chairs .reserved-chair::after {
    content: "×";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #999;
    font-size: 14px;
}

/* Seat Item Styling */
.chair-number {
    width: 48px;
    height: 48px;
    margin: 8px;
    position: relative;
    perspective: 1000px;
}

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

.chair-number label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    font-size: 13px;
    color: #555;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    user-select: none;
}

.chair-number label:hover {
    transform: translateY(-2px);
    border-color: var(--main-color);
    box-shadow: 0 8px 15px -1px rgba(var(--main-color-rgb), 0.2);
}

.chair-number input[type="checkbox"]:checked + label {
    background-color: #13ae47;
    border-color: #0e8a38;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 10px 20px -5px rgba(19, 174, 71, 0.4);
}

.chair-number input[type="checkbox"]:disabled + label {
    background-color: #f1f1f1;
    color: #ccc;
    cursor: not-allowed;
    border-color: #eee;
    box-shadow: none;
    transform: none;
}

.chair-number input[type="checkbox"]:disabled + label::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 2px;
    background: #ddd;
    transform: rotate(-45deg);
}

/* Destination & Blog Premium Card Styles */
.cardSection.card {
    border: none !important;
    border-radius: 24px !important;
    background: #fff;
    box-shadow: var(--soft-shadow) !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
}

.cardSection.card:hover {
    transform: translateY(-12px);
    box-shadow: var(--premium-shadow) !important;
}

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

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

.destination-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(var(--main-color-rgb), 0.95);
    backdrop-filter: blur(8px);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cardbody.card-body {
    padding: 24px !important;
}

.popular-title {
    font-weight: 800 !important;
    font-size: 22px !important;
    color: #1a1a1a;
    margin-bottom: 12px !important;
}

.reserve {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--main-color);
    color: white !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    white-space: nowrap;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(var(--main-color-rgb), 0.2);
    position: relative;
    width: 100%;
}

@media (max-width: 380px) {
    .reserve {
        padding: 10px 12px;
        font-size: 13px;
        gap: 6px;
    }
}

.reserve i {
    flex-shrink: 0;
    font-size: 1em;
}

.reserve:hover {
    background: var(--main-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--main-color-rgb), 0.4);
    filter: brightness(1.1);
}

/* Glassmorphism Search for Destinations */
.hero-section-destination .search-wrapper {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 10px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-section-destination .search-wrapper:hover,
.hero-section-destination .search-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.3);
}

.hero-section-destination .destination-search-input {
    background: transparent !important;
    border: none !important;
    color: white !important;
    font-weight: 500;
}

.hero-section-destination .destination-search-input::placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
}

.hero-section-destination .search-icon {
    color: white !important;
}

/* Blogs Polish */
.blogs-taps .nav-pills .nav-link {
    background: #f8f9fa;
    color: #555;
    border-radius: 50px !important;
    margin: 0 8px 12px;
    font-weight: 700;
    padding: 10px 24px !important;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.blogs-taps .nav-pills .nav-link.active {
    background: var(--main-color) !important;
    color: white !important;
    border-color: var(--main-color);
    box-shadow: 0 6px 20px rgba(var(--main-color-rgb), 0.3);
}

.blog-meta-item {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-content {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Summary Card */
.booking-summary-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: var(--premium-shadow);
    padding: 24px;
    position: sticky;
    top: 120px;
}

.summary-route {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 15px;
}

.route-dot {
    width: 12px;
    height: 12px;
    border: 3px solid var(--main-color);
    border-radius: 50%;
    background: white;
}

/* Payment Method Cards */
.payment-methods-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 15px;
}

.payment-method-card {
    position: relative;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-method-card:hover {
    border-color: var(--main-color-rgb);
    background: rgba(var(--main-color-rgb), 0.02);
}

.payment-method-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-method-card .custom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.payment-method-card input[type="radio"]:checked ~ .custom-radio {
    border-color: var(--main-color);
    background: var(--main-color);
}

.payment-method-card input[type="radio"]:checked ~ .custom-radio::after {
    content: "";
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.payment-method-card.active {
    border-color: var(--main-color);
    background: rgba(var(--main-color-rgb), 0.05);
}

/* Buttons */
.btn-pay, .btn-pay-disabled {
    width: 100%;
    height: 60px;
    border-radius: 16px;
    border: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-pay {
    background: linear-gradient(135deg, var(--main-color), #d09623);
    color: white;
    box-shadow: 0 10px 25px rgba(var(--main-color-rgb), 0.3);
}

.btn-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(var(--main-color-rgb), 0.4);
}

.btn-pay-disabled {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
}

/* 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(var(--main-color-rgb), 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  */

/* Legacy bottom navbar removed to prevent conflict with Premium UI */

/* Popular Destinations — carousel (cards + nav + scrollbar) */
.popular-destinations {
    background: linear-gradient(180deg, #f8f9fb 0%, #eef1f5 100%);
}

.popular-destinations__title {
    letter-spacing: -0.02em;
}

.popular-destinations__carousel-wrap {
    padding-inline: clamp(2.75rem, 8vw, 4rem);
    padding-bottom: 0.25rem;
}

@media (max-width: 575.98px) {
    .popular-destinations__carousel-wrap {
        padding-inline: 0.25rem;
    }
}

.popular-destinations .popular-destinations-swiper {
    padding-bottom: 2rem;
    overflow: visible;
}

.popular-destinations .popular-destinations-swiper .swiper-slide {
    height: auto;
}

/* ============================================================
   Popular Destinations Cards — Premium Redesign
   ============================================================ */
.popular-dest-card {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popular-dest-card:hover {
    transform: translateY(-6px);
}

.popular-dest-card:hover .popular-dest-card__inner {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18) !important;
}

.popular-dest-card__inner {
    transition: box-shadow 0.35s ease;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.popular-dest-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    min-height: 0;
}

/* Same visual slot with or without photo */
.popular-dest-card__media > .popular-dest-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.popular-dest-card__media > img.popular-dest-card__img {
    object-fit: cover;
}

.popular-dest-card:hover .popular-dest-card__img:not(.popular-destination-placeholder) {
    transform: scale(1.08);
}

.popular-destination-thumb {
    background: #1a1a2e;
}

/* Premium placeholder: brand-colored mesh gradient */
.popular-destination-placeholder {
    background:
        radial-gradient(ellipse at 20% 20%, rgba(var(--main-color-rgb), 0.55) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(var(--accent-color-rgb), 0.4) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(26, 26, 60, 0.9) 0%, transparent 80%),
        linear-gradient(145deg, #1a1a3e 0%, #2d2d5e 50%, #1a2a4a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
}

.popular-destination-placeholder__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(var(--main-color-rgb), 0.8) 1px, transparent 0);
    background-size: 22px 22px;
    pointer-events: none;
}

.popular-destination-placeholder__icon {
    position: relative;
    z-index: 1;
    font-size: clamp(2.2rem, 6vw, 3rem);
    color: rgba(var(--main-color-rgb), 0.75);
    text-shadow: 0 0 30px rgba(var(--main-color-rgb), 0.4);
    margin-bottom: 0.5rem;
}

.popular-destination-placeholder__label {
    position: relative;
    z-index: 1;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* Glassmorphism overlay — replaces old dark gradient */
.popular-dest-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.85rem 1rem 1rem;
    /* Top fade then glass bottom */
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.28) 50%,
        transparent 100%
    );
    color: #fff;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Glass badge at the bottom */
.popular-dest-card__glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.4rem;
    background: rgba(var(--main-color-rgb), 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(var(--main-color-rgb), 0.4);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #fff !important;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.popular-dest-card:hover .popular-dest-card__glass-badge {
    background: rgba(var(--main-color-rgb), 0.45);
    border-color: rgba(var(--main-color-rgb), 0.7);
}

.popular-dest-card__name {
    font-family: "Outfit", "Jozoor", sans-serif;
    font-size: clamp(1.05rem, 2.8vw, 1.3rem);
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.01em;
}

.popular-dest-card__hint {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.3rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.95) !important;
    white-space: nowrap;
}

.popular-dest-card__hint-icon {
    font-size: 0.65rem;
    color: var(--main-color);
    opacity: 1;
}

/* Side navigation */
.popular-dest-btn.popular-dest-btn--prev,
.popular-dest-btn.popular-dest-btn--next {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 2.75rem;
    height: 2.75rem;
    margin-top: 0 !important;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    color: var(--main-color);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.popular-dest-btn.popular-dest-btn--prev:hover,
.popular-dest-btn.popular-dest-btn--next:hover {
    background: var(--main-color);
    color: #fff;
    box-shadow: 0 8px 24px rgba(var(--main-color-rgb), 0.35);
}

.popular-dest-btn.popular-dest-btn--prev::after,
.popular-dest-btn.popular-dest-btn--next::after {
    font-size: 0.85rem;
    font-weight: 700;
}

/* Override global html[dir="rtl"] .swiper-button-* (bus carousel) — RTL: prev on physical right, next on left */
.popular-destinations .popular-dest-btn.popular-dest-btn--prev,
.popular-destinations .popular-dest-btn.popular-dest-btn--next {
    left: auto !important;
    right: auto !important;
}

html[dir="ltr"] .popular-destinations .popular-dest-btn.popular-dest-btn--prev {
    left: 0 !important;
    right: auto !important;
}

html[dir="ltr"] .popular-destinations .popular-dest-btn.popular-dest-btn--next {
    right: 0 !important;
    left: auto !important;
}

html[dir="rtl"] .popular-destinations .popular-dest-btn.popular-dest-btn--prev {
    right: 0 !important;
    left: auto !important;
}

html[dir="rtl"] .popular-destinations .popular-dest-btn.popular-dest-btn--next {
    left: 0 !important;
    right: auto !important;
}

.popular-dest-btn.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

@media (max-width: 575.98px) {
    .popular-dest-btn.popular-dest-btn--prev,
    .popular-dest-btn.popular-dest-btn--next {
        display: none;
    }
}

/* Draggable scrollbar under carousel */
.popular-destinations .swiper-scrollbar-popular.swiper-scrollbar {
    position: relative !important;
    left: 0 !important;
    bottom: auto !important;
    width: 100%;
    height: 4px;
    margin-top: 0.5rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.08);
}

.popular-destinations .swiper-scrollbar-popular .swiper-scrollbar-drag {
    background: var(--main-color);
    border-radius: 999px;
}

/* 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-x: hidden;
    }
    .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;
        overflow: hidden;
    }
    .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 .popular-dest-card__media--mobile {
        aspect-ratio: 3 / 4;
        border-radius: 18px;
    }
    .new-places-mobile .popular-dest-card__inner {
        border-radius: 18px;
    }
    .new-places-mobile .popular-dest-card__overlay--mobile {
        padding: 0.65rem 0.75rem 0.8rem;
    }
    .new-places-mobile .popular-dest-card__name {
        font-size: clamp(0.9rem, 3.8vw, 1.05rem);
        font-weight: 800;
    }
    .new-places-mobile .popular-dest-card__glass-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.55rem;
    }
}

.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: var(--main-color) !important;
}

.mo-view .form-check-input-pay:checked {
    border-color: var(--main-color);
}

/* 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: var(--main-color);
    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;
    cursor: grab;
    user-select: none;
}

.mo-view .tabs-wrapper.active-dragging {
    cursor: grabbing;
    scroll-behavior: auto; /* Disable smooth scroll while dragging for better response */
}

.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.8rem 0.5rem;
    font-weight: 700;
    font-size: 13px;
    background-color: rgba(0,0,0,0.03);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    color: #444;
    margin: 0 5px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 75px; /* Ensure consistent width to prevent overlapping text */
    height: 65px;
}

.mo-view .nav-tabs .nav-link .day-name {
    font-size: 11px;
    text-transform: uppercase;
    opacity: 0.7;
    line-height: 1;
}

.mo-view .nav-tabs .nav-link span:not(.day-name) {
    font-size: 12px;
    line-height: 1;
}

.mo-view .nav-tabs .nav-link.active {
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color);
    box-shadow: 0 4px 12px rgba(var(--main-color-rgb), 0.3);
    transform: translateY(-2px);
}

@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 {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

/* Journey Card - Mobile */
.mobile-journey-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 1rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.journey-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.journey-node .city {
    font-size: 16px;
    font-weight: 800;
    color: #111;
}

.journey-node .station {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.journey-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0.3;
}

/* Empty State Styling */
.empty-state-card {
    padding: 3rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.empty-state-card p {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.empty-state-icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(var(--main-color-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.empty-state-icon-wrapper i {
    font-size: 40px;
    color: var(--main-color);
}

.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;
}

.bg-main-light {
    background-color: rgba(var(--main-color-rgb), 0.1) !important;
}

.journey-track .dot-start {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
}

.journey-track .dot-end {
    width: 8px;
    height: 8px;
    background: #dc3545;
    border-radius: 50%;
}

.journey-track .dot-line {
    width: 2px;
    height: 12px;
    background: rgba(0,0,0,0.1);
    margin: 2px 0;
}

.trip-card-mobile {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trip-card-mobile:active {
    transform: scale(0.98);
}

/* Mobile Premium Input Card */
.premium-mobile-input-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    padding: 12px 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.premium-mobile-input-card:focus-within {
    border-color: var(--main-color);
    box-shadow: 0 8px 25px rgba(var(--main-color-rgb), 0.1);
}

.premium-mobile-input-card label {
    display: flex;
    align-items: center;
    font-size: 10px;
    font-weight: 900;
    color: #bbb;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.premium-mobile-input-card label i {
    width: 18px;
    color: var(--main-color);
    margin-right: 6px;
    font-size: 11px;
}

.premium-mobile-input-card .form-control,
.premium-mobile-input-card .form-select,
.premium-mobile-input-card .select2-container--bootstrap-5 .select2-selection {
    border: none !important;
    padding: 0 !important;
    font-weight: 700;
    color: #111;
    background: transparent !important;
    box-shadow: none !important;
    min-height: auto !important;
    font-size: 16px;
}

.premium-mobile-input-card .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    padding: 0 !important;
    line-height: 1.4 !important;
    color: #111 !important;
}

/* Select2 Dropdown Mobile Refinement */
.trip-s2-dropdown-mobile {
    border: none !important;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2) !important;
    border-radius: 24px !important;
    margin-top: 10px !important;
    overflow: hidden;
    z-index: 10000 !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.trip-s2-dropdown-mobile .select2-search__field {
    border-radius: 12px !important;
    margin: 12px !important;
    width: calc(100% - 24px) !important;
    background: #f1f3f5 !important;
    border: none !important;
    padding: 10px 15px !important;
    font-weight: 600;
}

.trip-s2-dropdown-mobile .select2-results__option {
    padding: 12px 20px !important;
    font-weight: 600;
    font-size: 15px;
}

.trip-s2-dropdown-mobile .select2-results__option--highlighted {
    background-color: var(--main-color) !important;
}

.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: var(--main-color);
    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);
    box-shadow:
        0 0 0 4px rgba(var(--main-color-rgb), 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);
}

.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);
}

.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 class consolidated above */

/* 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;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
    color: var(--main-color);
    transition: transform 0.3s;
}

.mo-swap-btn i {
    font-size: 1rem;
    line-height: 1;
    max-width: 1.25rem;
    max-height: 1.25rem;
}

.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;
}

.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(var(--main-color-rgb), 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 date picker: styles are NOT scoped to max-width so columns never render
 * as in-flow text (Arabic month names + numbers) when media queries do not match.
 * Closed state uses translateY so tall content cannot peek into the viewport.
 */
.wheel-picker-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-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;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100vw;
    max-height: 85vh;
    max-height: 85dvh;
    background: #fff;
    border-radius: 30px 30px 0 0;
    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;
    transform: translateY(100%);
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    contain: layout paint;
}

.wheel-picker-container.active {
    transform: translateY(0);
    pointer-events: auto;
}

.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;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    height: min(220px, 40vh);
    min-height: 160px;
    position: relative;
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    isolation: isolate;
}

.wheel-column {
    flex: 1 1 0;
    min-width: 0;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    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: color 0.2s ease, font-weight 0.2s ease, transform 0.2s ease;
    scroll-snap-align: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.wheel-item.spacer {
    height: 44px;
    min-height: 44px;
    flex-shrink: 0;
    pointer-events: none;
    visibility: hidden;
}

.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(var(--main-color-rgb), 0.05);
    border-top: 1px solid rgba(var(--main-color-rgb), 0.1);
    border-bottom: 1px solid rgba(var(--main-color-rgb), 0.1);
    pointer-events: none;
    z-index: 10;
}

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

/* Mobile Premium Journey Card */
.mobile-journey-card {
    background: #fff;
    padding: 22px 18px;
    border-radius: 26px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 100;
}

.mobile-journey-card .journey-node {
    flex: 1;
    min-width: 0;
}

.mobile-journey-card .journey-node .city {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    display: block;
    line-height: 1.1;
    margin-bottom: 4px;
}

.mobile-journey-card .journey-node .station {
    font-size: 13px;
    color: #888;
    font-weight: 600;
}

.mobile-journey-card .journey-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
}

.mobile-journey-card .journey-arrow i {
    opacity: 0.8;
    color: var(--main-color);
}

/* Date Pills Scroller Fix */
.tabs-container {
    padding: 10px 0 20px;
    overflow: hidden;
    margin: 0 -15px; /* Compansate for parent padding */
}

.tabs-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0 15px 12px;
    gap: 12px;
}

.tabs-wrapper::-webkit-scrollbar {
    display: none !important;
}

.tabs-wrapper form {
    flex-shrink: 0 !important;
    margin: 0 !important;
}

.date-pill {
    background: #fff;
    border: 1px solid #f0f0f0 !important;
    border-radius: 20px !important;
    min-width: 80px !important;
    height: 100px !important;
    padding: 15px 8px !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #444;
    cursor: pointer;
    flex-shrink: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    outline: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.date-pill.active {
    background: var(--main-color) !important;
    border-color: var(--main-color) !important;
    color: #fff !important;
    box-shadow: 0 12px 30px rgba(var(--main-color-rgb), 0.4) !important;
    transform: translateY(-4px);
    z-index: 1;
}

.date-pill .day-name {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 6px;
    opacity: 0.7;
    text-transform: uppercase;
}

.date-pill .day-num {
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}

.date-pill .month-name {
    font-size: 11px;
    font-weight: 700;
    opacity: 0.7;
}

.date-pill.active .day-name,
.date-pill.active .month-name {
    opacity: 1;
}

/* Trip Card Premium Fix */
.premium-trip-card {
    background: #fff;
    border-radius: 26px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.03) !important;
    padding: 22px !important;
    transition: transform 0.2s;
}

.premium-trip-card:active {
    transform: scale(0.98);
}

.bus-icon-wrapper {
    background: rgba(var(--main-color-rgb), 0.08) !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 18px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fs-16 { font-size: 16px !important; }
.fs-18 { font-size: 18px !important; }
.fs-12 { font-size: 12px !important; }
.fs-11 { font-size: 11px !important; }
.fs-10 { font-size: 10px !important; }

/* Empty State Fix */
.empty-state-card {
    border-radius: 40px !important;
    border: 1px solid #f0f0f0 !important;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.07) !important;
}

.empty-state-icon-wrapper {
    background: rgba(var(--main-color-rgb), 0.08) !important;
    width: 90px !important;
    height: 90px !important;
    font-size: 40px !important;
}

/* Journey Header Arrow & Badges — direction follows from → to (LTR / RTL) */
.arrow-line {
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        rgba(var(--main-color-rgb), 0.2),
        var(--main-color),
        rgba(var(--main-color-rgb), 0.2)
    );
}

[dir="rtl"] .arrow-line {
    transform: scaleX(-1);
}

/* Arrow cap sits on the destination side: LTR = inline-end (right), RTL = inline-start (left) */
.arrow-head {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1;
    inset-inline-end: 0;
    inset-inline-start: auto;
}

.mo-trip-date-section-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #555;
    margin-bottom: 0.35rem;
}

html[dir="rtl"] .mo-trip-date-section-label {
    letter-spacing: 0;
}

.mobile-journey-card .date-badge .label {
    font-size: 11px !important;
    font-weight: 800 !important;
}

.date-badge {
    background: rgba(var(--main-color-rgb), 0.05);
    border-radius: 12px;
    min-width: 110px;
}


.fw-900 { font-weight: 900 !important; }

/* Premium Mobile Navigation */
@media (max-width: 991px) {
    .mobile-header {
        height: 62px;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 1050;
        box-shadow: 0 2px 15px rgba(0,0,0,0.03) !important;
    }

    .bottom-navbar {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-top: 1px solid rgba(0,0,0,0.05);
        height: 72px;
        padding: 10px 0;
        padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
        border-radius: 24px 24px 0 0;
        box-shadow: 0 -8px 30px rgba(0,0,0,0.06);
        display: flex !important;
        justify-content: space-around;
        align-items: center;
        z-index: 2000;
    }

    .bottom-navbar .nav-item {
        color: #777 !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        flex: 1;
        opacity: 0.6;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .bottom-navbar .nav-item i {
        font-size: 1.35rem;
        margin-bottom: 5px;
        transition: all 0.3s ease;
    }

    .bottom-navbar .nav-item p {
        font-size: 10px;
        font-weight: 800;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .bottom-navbar .nav-item.active {
        color: var(--main-color) !important;
        opacity: 1;
        transform: translateY(-3px);
    }


    .bottom-navbar .nav-item.active i {
        transform: scale(1.15);
    }

    /* Premium Bottom Sheet Styling */
    .offcanvas-bottom {
        border-top-left-radius: 28px !important;
        border-top-right-radius: 28px !important;
        max-height: 85vh !important;
        background: rgba(255,255,255,0.98) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
        border: none !important;
        z-index: 25000 !important; /* Higher than bottom-navbar (20000) */
    }

    .offcanvas-backdrop {
        z-index: 24000 !important; /* Higher than sticky headers and bottom-navbar */
    }

    .offcanvas-bottom .offcanvas-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .offcanvas-bottom .offcanvas-body {
        padding-top: 0.5rem;
        padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px)); /* Ensure last items are visible */
    }

    /* Ensure Nav items in sidebar are vertical and clean */
    .offcanvas-bottom .nav-link {
        border-radius: 12px;
        transition: background 0.2s ease;
    }

    .offcanvas-bottom .nav-link:active {
        background: rgba(var(--main-color-rgb), 0.08);
        color: var(--main-color);
    }

    /* Final Ultimate Fix for Overlay Issues */
    footer {
        display: none !important;
    }

    .bottom-navbar {
        z-index: 20000 !important; /* Higher than any aggressive sticky elements */
    }

    .bottom-navbar .nav-item,
    .bottom-navbar .nav-item i,
    .bottom-navbar .nav-item p,
    .bottom-navbar .nav-item div {
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
    }

    .bottom-navbar .nav-item.active {
        transform: translateY(-5px);
        opacity: 1;
    }
}

/* ========================================================================= */
/* PREMIUM THEME UTILITIES (Added for Mobile Modernization)                  */
/* ========================================================================= */

.shadow-premium {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.input-group-premium {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-group-premium .icon {
    position: absolute;
    color: #999;
    font-size: 16px;
    z-index: 5;
}

html[dir="rtl"] .input-group-premium .icon,
body[dir="rtl"] .input-group-premium .icon,
[dir="rtl"] .input-group-premium .icon {
    right: 15px;
}

html[dir="ltr"] .input-group-premium .icon,
body[dir="ltr"] .input-group-premium .icon,
[dir="ltr"] .input-group-premium .icon {
    left: 15px;
}

.form-control-premium {
    width: 100%;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border: 2px solid #eee;
    border-radius: 16px !important;
    color: #333;
    font-size: 15px;
    font-weight: 800;
    transition: all 0.3s ease;
    outline: none;
}

html[dir="rtl"] .form-control-premium,
body[dir="rtl"] .form-control-premium,
[dir="rtl"] .form-control-premium {
    padding-right: 45px;
}

html[dir="ltr"] .form-control-premium,
body[dir="ltr"] .form-control-premium,
[dir="ltr"] .form-control-premium {
    padding-left: 45px;
}

.form-control-premium:focus {
    background-color: #fff;
    border-color: var(--main-color);
    box-shadow: 0 5px 15px rgba(var(--main-color-rgb), 0.15);
}

.input-group-premium .password-toggle,
.input-group-premium .fas.fa-eye,
.input-group-premium .fas.fa-eye-slash {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    color: #999;
}

html[dir="rtl"] .input-group-premium .password-toggle,
html[dir="rtl"] .input-group-premium .fas.fa-eye,
html[dir="rtl"] .input-group-premium .fas.fa-eye-slash,
[dir="rtl"] .input-group-premium .password-toggle,
[dir="rtl"] .input-group-premium .fas.fa-eye,
[dir="rtl"] .input-group-premium .fas.fa-eye-slash {
    left: 15px;
    right: auto;
}

html[dir="ltr"] .input-group-premium .password-toggle,
html[dir="ltr"] .input-group-premium .fas.fa-eye,
html[dir="ltr"] .input-group-premium .fas.fa-eye-slash,
[dir="ltr"] .input-group-premium .password-toggle,
[dir="ltr"] .input-group-premium .fas.fa-eye,
[dir="ltr"] .input-group-premium .fas.fa-eye-slash {
    right: 15px;
    left: auto;
}

.hover-bg-light {
    transition: all 0.3s ease;
}

.hover-bg-light:hover, .hover-bg-light:active {
    background-color: #f8f9fa !important;
}

.bg-danger-subtle {
    background-color: rgba(220, 53, 69, 0.1) !important;
}

.bg-warning-subtle {
    background-color: rgba(255, 193, 7, 0.1) !important;
}

.bg-success-subtle {
    background-color: rgba(40, 167, 69, 0.1) !important;
}

.bg-info-subtle {
    background-color: rgba(23, 162, 184, 0.1) !important;
}
