@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {
    --status-pending-bg:  #FEF3C7; /* yellow-100 */
    --status-pending-text: #92400E; /* yellow-800 */

    --status-approved-bg: #DBEAFE; /* blue-100 */
    --status-approved-text: #1E40AF; /* blue-800 */

    --status-cancel-bg: #FEE2E2; /* red-100 */
    --status-cancel-text: #991B1B; /* red-800 */

    --status-start-bg: #E0E7FF; /* indigo-100 */
    --status-start-text: #3730A3; /* indigo-800 */

    --status-complete-bg: #D1FAE5; /* green-100 */
    --status-complete-text: #065F46; /* green-800 */
}


* {
    margin: 0;
    padding: 0;
    font-family: Inter;
    font-size: 16px;
}

body {
    background: #F9F9F7;
}

a {
    color: var(--bs-black);
    text-decoration: none;
}

.list-style-none {
    list-style: none;
}

header {
    height: 60px;
}

.search-change {
    z-index: 99;
    height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    visibility: hidden;
    transition: height 0.3s ease-in-out,
        opacity 0.3s ease-in-out,
        visibility 0.3s linear;
}

.search-change.active {
    height: 65vh;
    opacity: 1;
    padding: 1rem;
    padding-top: 3rem;
    visibility: visible;
}


.dropdawn {
    z-index: 99;
    height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: height 0.3s ease-in-out,
        opacity 0.3s ease-in-out,
        visibility 0.3s linear;
}

.dropdawn.active {
    height: 65vh;
    opacity: 1;
    padding: 1rem;
    padding-top: 3rem;
    visibility: visible;
}


.outline-none {
    outline: none;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--bs-warning);
    color: var(--bs-black);
}

.heading-img-set-height {
    z-index: -1;
    height: calc(80vh - 60px);
}

.background-size-cover {
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}

.heading-text {
    color: var(--bs-white);
}

.booking-labels {
    color: #A4A4A4;
}

.z-index-1 {
    z-index: 1;
}

.booking-card {
    translate: 0 50%;
    left: 20%;
    right: 20%;
    background: linear-gradient(to bottom, #f7f7f7 50%, #fff 50%) !important;
}

.travels {
    margin: 120px 0 50px 0;
}

.object-fit-cover {
    object-fit: cover;
}

.cards-main {
    overflow: hidden;
}

.cards-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(10, 10, 10, 0.3) 50%,
            rgba(5, 5, 5, 0.7) 80%,
            var(--bs-black) 100%);

}

.play-button {
    z-index: 999;
    background-color: transparent;
    right: 20px;
    top: 15px;
}

.play-button.tgray {
    background: rgb(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
    left: 20px;
    right: unset;
    top: 15px;
}

.cards-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999;
    padding: 15px 20px 10px 20px;
}


/* Slider Styles */
.slider-container {
    position: relative;
    padding: 0px;
}

.slider-content,
.slider-content-explore,
.slider-content-tands,
.slider-content-reviews {
    transition: transform 0.5s ease;
}

.slider-nav {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.1s ease-in-out;
    background: var(--bs-warning);
}

.slider-nav:disabled {
    opacity: 0.5;
    background: #F3F2F8;
    cursor: not-allowed;
}

.slider-nav:hover:not(:disabled) {
    filter: contrast(0.9);
}

@media (max-width: 768px) {
    .slider-container {
        padding: 0 30px;
    }

    .slider-nav {
        width: 30px;
        height: 30px;
    }

    .img{
        width: 70% !important;
    }
    .img-rotated{
        width: 70% !important;
    }
}

.aspect-ratio-11 {
    aspect-ratio: 1/1;
}

.aspect-ratio-21 {
    aspect-ratio: 2/1;
}

.aspect-ratio-12 {
    aspect-ratio: 1/1.3;
}

#dateInput {
    width: 20px !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

.placeholder-black::placeholder {
    color: var(--bs-black) !important;
}

.mt--1 {
    margin-top: -1px !important;
}

.exclusive-routes {
    background-color: #F3F2F8;
}

.user-info .user-img {
    width: 80px !important;
    height: 80px;
}

.flex-direction-col {
    flex-direction: column;
}

.flex-direction-row {
    flex-direction: row;
}

.gray-card-review {
    background-color: #F3F2F8;
}

.accordion-item {
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--bs-white);
    color: var(--bs-black);
    box-shadow: none;
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
}

.desktop-menu {
    display: block;
}

    .booking-card input{
        padding-left: 0;
        padding-right: 0;
    }

.mobile-menu-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu-container.active {
    transform: translateX(0);
}

.mobile-menu ul {
    flex-direction: column;
    gap: 15px;
    padding: 0;
}

.mobile-menu li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.nvbr-toggler{
    outline: none;
    border: none;
}

.search-icon {
    margin-left: auto;
}

@media (max-width: 993px) {
    .desktop-menu {
        display: none;
    }

    .navbar-toggler {
        display: block;
    }

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

    nav ul {
        gap: 2rem;
    }

    .booking-card {
        background: #fff !important;
    }

    .booking-card .center-md {
        width: 100%;
        justify-content: center;
    }

    .booking-card .center-md button {
        width: auto !important;
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

    .travels {
        margin-top: 220px;
    }

    .exclusive-routes .mt-md {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .col-1 {
        width: 150px;
    }

    .search-change {
        padding: 15px 0;
    }

    .search-change input {
        padding: 10px;
    }

    .booking-card {
        /* background: linear-gradient(to bottom, #f7f7f7 50%, #fff 50%) !important; */
        background: #fff !important;
    }

    .travels {
        margin-top: 220px;
    }

    .travels .cards-main p {
        font-size: 12px !important;
        line-height: normal;
    }

    .travels .cards-main h5 {
        font-size: 16px;
    }

    .slider-container {
        padding: 0;
    }

    .booking-card {
        translate: 0 50%;
        left: 10%;
        right: 10%;
    }
    .exclusive-routes .card p:first-of-type{
        font-size: 16px !important;
    }
    .booking-card .center-md{
        width: 100%;
        display: block !important;
    }
    .booking-card .center-md button{
        width: 100% !important;
    }
}

.no-scroll {
    overflow: hidden;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url("../sources/icons/menu-burger.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
    color: #333;
}

@media (min-width: 993px) {
    .mobile-menu-close {
        display: none;
    }
}

.h-60 {
    height: 60px;
}

.logo {
    width: 90px !important;
    height: 40px !important;
}

#customDateDisplay{
    padding: 6px 0;
}


footer {
    background-color: #F3F2F8;
}

.footer-icons {
    width: 42px;
}

.userRegistration input::placeholder, .userRegistration select:required:invalid {
    color: #a4a4a4;
}
option {
    color: #000;
}
.flags{
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 50%;
}
.fz-42{
    font-size: 42px !important;
}
.w-90{
    width: 90%;
}

.img, .img-rotated{
    width: 50%;
    border-radius: 30px;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.img-rotated{
    position: absolute;
    left: 15%;
    translate: 0% 60%;
    transform: rotate(-20deg);
    border: 5px solid white;
}

.dropdown-toggle::after{
    display: none !important;
}

span#rate{
    display: flex;
    align-items: bottom;
}
.icon-rate{
    width: 20px !important;
    aspect-ratio: 1/1;
    margin-right: 5px;
}
.attention{
    background-color: #EB43350A;
}
.dot {
    display: block;
    box-sizing: border-box;
    width: 10px;
    height: 10px;
    aspect-ratio: 1/1;
    background: var(--bs-warning);
    border-radius: 50%;
}

.user-image{
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.w-200{
    width: 250px;
    max-height: 200px;
    overflow-y: auto;
}
.w-200 img{
    width: 20px !important;
    margin-right: 10px;
}
.w-200 li{
    /* margin-bottom: 10px; */
    padding: 10px 0;
    border-bottom: 1px solid #ddd;

    display: flex;
    align-items: center;
}
.w-200 p{
    font-size: 13px !important;
}
