:root {
    --primary-gradient: linear-gradient(135deg, #6366f1, #8b5cf6);
    --secondary-gradient: linear-gradient(135deg, #f472b6, #db2777);
    --bg-color: #ffffff;
    --chat-bg: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --bot-message-bg: #f1f5f9;
    --user-message-bg: #818cf8;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --box-shadow-color: #00000052;
}

[data-theme="dark"] {
    --bg-color: #0f172a;
    --chat-bg: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --bot-message-bg: #334155;
    --user-message-bg: #6366f1;
    --border-color: #334155;
    --box-shadow-color: #ffffff63;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 90px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.05s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

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

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
    background-color: #FFFFFF;
    border-radius: 5px;
    padding: 5px;
}

/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 35px 15px;
    color: var(--bs-white) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active  {
        color: var(--bs-primary) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 99;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-primary);
        transition: .5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 700px;
        margin-top: -100px;
    }

    .carousel-header {
        /*height: 700px !important;*/
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }

    .search-bar {
        margin-top: -100px;
        transition: 0.5s;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background-position: center center;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-attachment: fixed ;
    padding: 150px 0 50px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}
/*** About End ***/


/*** Services Start ***/
.service .service-content-inner {
    transition: 0.5s;
}
.service .service-content-inner:hover {
    position: relative;
    background: var(--bs-primary) !important;
}

.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
    transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5,
.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-icon i {
    color: var(--bs-white) !important;
}
/*** Service End ***/


/*** Payment Start ***/
.container-fluid.destination {
    overflow: unset;
}

.destination .tab-class .tab-content .tab-pane .destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.destination .tab-class .tab-content .tab-pane .destination-img .destination-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: 3;
    transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    padding: 20px 20px 0 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.5s;

}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon a i {
    opacity: 0;
    transition: 0.5s;
    display: flex;
}

.destination .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.destination .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.destination .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon {
    background: rgba(19, 53, 123, 0.4);
}

.destination .tab-class .tab-content .destination-img:hover .destination-overlay {
    bottom: 0;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon a i {
    opacity: 1;
}

.destination .tab-class .tab-content .destination-img img {
    height: 100%;
    transition: 0.5s;
}

.destination .tab-class .tab-content .destination-img:hover img {
    /*transform: scale(1.2);*/
}
/*** Payment End ***/


/*** Packages Start ***/
.packages .packages-item .packages-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    z-index: 1;
}

.packages .packages-item .packages-img .packages-info {
    background: rgba(0, 0, 0, .3);
}

.packages .packages-item .packages-img .packages-info small,
.packages .packages-item .packages-img .packages-info small i {
    color: var(--bs-white);
    transition: 0.5s;
}

.packages .packages-item .packages-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px solid;
    border-radius: 10px !important;
    visibility: hidden;
    transition: 0.7s;
    z-index: 3;
}

.packages .packages-item .packages-img:hover.packages-img::after {
    width: 100%;
    height: 100%;
    border: 300px solid;
    border-color: rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6);
    visibility: visible;
}

.packages .packages-item .packages-img small,
.packages .packages-item .packages-img small i {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover small,
.packages .packages-item .packages-img:hover small i {
    color: var(--bs-white) !important;

}

.packages .packages-item .packages-img img {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover img {
    transform: scale(1.3);
}

.packages .packages-item .packages-img .packages-price {
    position: absolute;
    width: 100px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    background: var(--bs-primary);
    color: var(--bs-white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 5;
}

.packages .packages-carousel {
    position: relative;
}

.packages .packages-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -50px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-next {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}
/*** Packages End ***/


/*** Explore Tour Start ***/
.ExploreTour .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.ExploreTour .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.ExploreTour .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}


/* National Tour Start */
.ExploreTour #NationalTab-1 .national-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #NationalTab-1 .national-item img {
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #NationalTab-1 .national-item .national-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #NationalTab-1 .national-item .national-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-plus-icon {
    opacity: 1;
}

.ExploreTour #NationalTab-1 .national-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 40px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

/* International Tour Start */
.ExploreTour #InternationalTab-2 .international-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .international-item img {
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #InternationalTab-2 .international-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 30px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

.ExploreTour #InternationalTab-2 .international-item .international-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .3);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #InternationalTab-2 .international-item .international-content .international-info a {
    font-size: 14px;
}

.ExploreTour #InternationalTab-2 .international-item .international-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-plus-icon {
    opacity: 1;
}

/* carousel Start */
.ExploreTour #InternationalTab-2 .InternationalTour-carousel .international-item {
    position: relative;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}
/*** Explore Tour End ***/


/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-item img {
    min-height: 300px;
    object-fit: cover;
}

.gallery .gallery-item .gallery-content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-content .gallery-info {
    position: relative;
    margin-bottom: -100%;
    opacity: 0;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
    opacity: 1;
    margin: 0;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
    background: rgba(19, 53, 123, 0.8);
}

.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

/*** Gallery End ***/

/*** Tour Product Start ***/
.booking {
    background: linear-gradient(rgba(19, 53, 123, .8), rgba(19, 53, 123, .8)), url(../images/tour-booking-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;

}


.booking .container .section-booking-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.booking .container .section-booking-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.booking .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.booking .container form .btn.btn-primary:hover {
    box-shadow: inset 800px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}



/*** Tour Product end ***/

/*** Travel Guide Start ***/
.guide .guide-item .guide-img {
    position: relative;
}

.guide .guide-item .guide-img .guide-icon {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: -50px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
    z-index: 9;
}

.guide .guide-item .guide-img .guide-img-efects {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.guide .guide-item .guide-img .guide-img-efects::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: rgba(19, 53, 123, .5);
}

.guide .guide-item .guide-img-efects img {
    transition: 0.5s;
}
.guide .guide-item:hover .guide-img-efects img {
    transform: scale(1.1);
}

.guide .guide-item .guide-title {
    position: relative;
    background: var(--bs-light);
    transition: 0.5s;
}

.guide .guide-item .guide-title::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
    height: 100%;
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

.guide .guide-item .guide-title .guide-title-inner,
.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title .guide-title-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 2;
}

.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    color: var(--bs-white);
}
/*** Travel Guide End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgba(255, 255, 255, .2);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(19, 53, 123, .6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}
/*** Blog End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 100px;
    height: 100px;
    top: 0; left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--bs-primary);
    border-style: dotted;
    border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-img {
    border: 3px solid var(--bs-white);
    border-style: dotted;
    transition: 0.5s;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
    /*background: linear-gradient(rgba(19, 53, 123, .6), rgba(19, 53, 123, .6)), url(../img/subscribe-img.jpg);*/
    background: linear-gradient(rgba(19, 53, 123, .6), rgba(19, 53, 123, .6)), url("http://localhost:8000/frontend/images/subscribe-img.jpg");
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Subscribe End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/
@media (max-width: 768px) {
    .subscribe {
        background-attachment: scroll !important;
    }
}



/*Tour box*/

.tour-box {
    border: 3px solid #13357b;
    right: 36rem;
    position: absolute;
    top: 46rem;
    margin: auto;
    max-width: 35rem;
    padding: 20px;
    border-radius: 10px;
    background: #f2f2f2;
}
.tour-header {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}
.tour-btn {
    border: 1px solid #ddd;
    padding: 5px 15px;
    border-radius: 5px;
    background: white;
    cursor: pointer;
}
.tour-btn.active {
    background: #102d69;
    color: white;
}
.tour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #13357b;
}
.price {
    color: #f89a1c;
    font-weight: bold;
}
.total-price {
    font-size: 22px;
    font-weight: bold;
    color: #d9534f;
}
.btn-book {
    border: 1px solid #f2f2f2;
    width: 100%;
    padding: 10px;
    color: white;
    font-weight: bold;
    border-radius: 5px;
}
.fixed-tour-box{
    position: fixed;
    top: 8rem;
    right: 36rem;
    z-index: 999;
}

/* End tour box*/

/*----------------------------------------------------*/
/*  Slide Show Images
/*----------------------------------------------------*/
.wrapper{
    width: min(calc(100% - 2rem));
    margin-inline: auto;
}
.gallery{
    display: grid;
    gap: 1rem;
}
.gallery > *{
    width: 100%;
}

.gallery img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

.gallery button{
    cursor: pointer;
    position: relative;
    width: 100%;
    border: none;
    outline: none;
    /* background: none; */
    padding: 0;
    margin: 0;
}
.gallery button::before{
    content: '';
    position: absolute;
    inset: 0rem;
    z-index: -1;
    background-color: rgba(0 0 0 / .25);
    border-radius: inherit;
    transition: inset 300ms ease-in-out;
}
.gallery button:focus-visible::before,
.gallery button:hover::before{
    inset: -.25rem;
}

.gallery > .gallery-main-img{
    position: relative;
    /* aspect-ratio: 6/4; */
    background-color: rgba(from var(--clr-secondary) r g b / .5);
    border-radius: 10px;
}
.gallery > .gallery-thumbs{
    width: 100%;
    overflow: auto;
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
    gap: .5rem;
    padding: .5rem 0 1rem;
    scrollbar-width: thin;
}
.gallery > .gallery-thumbs > button{
    aspect-ratio: 1;
    border-radius: 6px;
}

/* dialog - this holds the slideshow */
dialog[open]{
    opacity: 1;
    translate: 0;
    color: var(--clr-txt);
    /*border: 1px solid rgba(from var(--clr-primary) r g b /.25);*/
    border: none;
    background-color: transparent;
    border-radius: 10px;
    /*box-shadow: 5px 5px 15px 5px rgba(0 0 0 / .25);*/
    width: min(calc(100% - 8rem), 800px);
    padding: 0;
    overflow: visible;
    @starting-style {
        opacity: 0;
    }
    transition: opacity 500ms ease-in, translate 500ms cubic-bezier(0.28, -0.55, 0.27, 1.55);
}
/* Backdrop styling */
dialog[open]::backdrop {
    background-color: rgba(0 0 0 / .75);
    backdrop-filter: blur(3px);
    opacity: 1;
    @starting-style {
        opacity: 0;
    }
    transition: opacity 1000ms ease-in; /* this doesn't appear to be working */
}
dialog[open] .btn-dialog-close{
    position: absolute;
    top: -1.5rem;
    right: 0;
    padding: 0;
    background-color: transparent;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    transition: rotate 300ms, background-color 300ms ease-in-out;
}
dialog[open] .btn-dialog-close:focus-visible,
dialog[open] .btn-dialog-close:hover{
    rotate: 90deg;
}



.slider-wrapper{
    --slider-width: 100%;
    --border-radius: 10px;
    --duration: 300ms;
    position: relative;
}
.slider-content{
    overflow:hidden;
    border-radius: var(--border-radius);
}
.slider-wrapper > button{
    position: absolute;
    top: 50%;
    background-color: white;
    border: none;
    cursor: pointer;
    font-family: monospace;
    color: steelblue;
    align-self: center;
    outline: none;
    box-shadow: none;
    padding: 0 .75rem;
    font-size: 2rem;
    border-radius: 50%;
    z-index: 10;
    display: grid;
    place-content: center;
    transition-name: background-color,color;
    transition-duration: 150ms;
    transition-timing-function: ease-in-out;
}
[btn-slider="prev"]{
    grid-area: btn-prev;
    translate: -50% -50%;
    right: 100%;
}
[btn-slider="next"]{
    grid-area: btn-next;
    left: 100%;
    translate: 50% -50%;
}

.slider-wrapper > button:focus-visible,
.slider-wrapper > button:hover{
    background-color: steelblue;
    color: white;
}
.slider{
    display: flex;
    height: var(--slider-width);
}
.slider > div{
    flex: 0 0 var(--slider-width);
    aspect-ratio: 6/4;
    transform-origin: left;
    transition-property: margin,scale;
    transition-duration: var(--duration);
    transition-timing-function: ease-in-out;
}
.slider > div::before{
    content: attr(data-title);
    position: absolute;
    top: calc(100% + .5rem);
    left: .5rem;
    color: white;
    font-size: .8rem;
    z-index: 2;
    opacity: 0;
    translate: 0 -20px;
    transition: var(--duration) ease-in-out ;
}
.slider > div:first-child::before{
    opacity: 1;
    translate: 0;
    transition-delay: var(--duration);
}
.slider img{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    object-fit: cover;

}
.slider div.slider-next{
    margin-left: calc(var(--slider-width)  * -1);
    scale: 0.25;
}
.slider div.slider-prev{
    margin-left: calc(var(--slider-width)  * -1);
    scale: 0.25;
}

/*----------------------------------------------------*/
/*  End Slide Show Images
/*----------------------------------------------------*/



/*----------------------------------------------------*/
/*  Review
/*----------------------------------------------------*/
.review-container {
    margin-top: 2rem;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    margin: 0;
    font-size: 20px;
}

.rating-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.rating-score {
    text-align: center;
}

.rating-score .score {
    font-size: 32px;
    font-weight: bold;
}

.stars {
    font-size: 20px;
    color: gold;
}

.rating-bars {
    flex-grow: 1;
    /* margin-left: 20px; */
}

.rating-row {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.rating-row span {
    width: 30px;
}

.progress-bar {
    background: #eee;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin: 0 10px;
}

.progress {
    height: 100%;
    background: orange;
}

.recommend {
    margin-left: 1.5rem;
    display: flex;
    align-items: center;
}
/* Generic styles just to make this pen look better */


/* ----- The actual thing ----- */

/* Variables */

:root {
    --rating-size: 8rem;
    --bar-size: 1rem;
    --background-color: #e7f2fa;
    --rating-color-default: #2980b9;
    --rating-color-background: #c7e1f3;
    --rating-color-good: #27ae60;
    --rating-color-meh: #f1c40f;
    --rating-color-bad: #e74c3c;
}

/* Rating item */
.circle-rating {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    overflow: hidden;

    background: var(--rating-color-default);
    color: var(--rating-color-default);
    width: var(--rating-size);
    height: var(--rating-size);

    /* Basic style for the text */
    font-size: calc(var(--rating-size) / 3);
    line-height: 1;
}

/* Rating circle content */
.circle-rating span {
    position: relative;
    display: flex;
    font-weight: bold;
    z-index: 2;
}

.circle-rating span small {
    font-size: 0.5em;
    font-weight: 900;
    align-self: center;
}

/* Bar mask, creates an inner circle with the same color as thee background */
.circle-rating::after {
    content: "";
    position: absolute;
    inset: var(--bar-size);
    background: var(--background-color);
    border-radius: inherit;
    z-index: 1;
}

/* Bar background */
.circle-rating::before {
    content: "";
    position: absolute;
    inset: var(--bar-size);
    border-radius: inherit;
    box-shadow: 0 0 0 1rem var(--rating-color-background);
    z-index: -1;
}

/* Classes to give different colors to ratings, based on their score */
.circle-rating.good {
    background: var(--rating-color-good);
    color: var(--rating-color-good);
}

.circle-rating.meh {
    background: var(--rating-color-meh);
    color: var(--rating-color-meh);
}

.circle-rating.bad {
    background: var(--rating-color-bad);
    color: var(--rating-color-bad);
}
/*Circle*/


/*----------------------------------------------------*/
/*  End Review
/*----------------------------------------------------*/


.review {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.user-info {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.date {
    display: block;
    font-size: 12px;
    color: #808080FF;
}

.comment {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.seller-response {
    background: #f1f1f1;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
}

.seller-response strong {
    color: #d9534f;
}
.avatar-review img{
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #0b204a;
}

.image-left-schedule img{
    width: 80%;
    border-radius: 10%;
    object-fit: cover;
    border: 3px inset #bfbfbf;
    opacity: 0.9;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button
{
    -webkit-appearance: media-slider;
    margin: 0;
}

/*-------------------------------------------Schedule-------------------------------------------*/
.weather ul{
    display: flex;
}

.weather ul li{
    list-style-type: none;
    text-align: center;
    font-size: 11px;
}
.weather ul li p{
    margin-bottom: 0;
}

.menu-schedule{
    display: flex;
    margin: 0 0.05rem;
}
.menu-schedule li{
    list-style-type: none;
    align-items: center;
    display: flex;
    justify-content: center;
    border-right: 1px solid #13357b ;
    font-weight: bold;
}
.menu-schedule li:last-child{
    border: none;
}
.menu-schedule li.active{
    background-color: #13357b;
    color: #FFFFFF !important;
    border: none;
    border-radius: 5px;
}




.schedule-page .carousel-indicators{
    position: static;
}

.schedule-page .carousel-indicators li{
    position: static;
    opacity: 1 !important;
    color: #0b204a ;
    text-indent: unset !important;
    width: 33.333333333333% !important;
    height: 2rem !important;
}

.list-of-locations, .event, .schedule {
    min-height: unset !important;
}

.list-of-locations{
    overflow-y: scroll;
    overflow-x: hidden;
}

.list-of-locations::-webkit-scrollbar {
    width: 4px;
}
/* Màu nền của thanh scrollbar */
.list-of-locations::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

/* Phần cuộn di chuyển */
.list-of-locations::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

/* Khi hover vào scrollbar */
.list-of-locations::-webkit-scrollbar-thumb:hover {
    background: #555;
}

#scroll-tag::-webkit-scrollbar {
    height: 4px;
}
/* Màu nền của thanh scrollbar */
#scroll-tag::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 1px;
}

/* Phần cuộn di chuyển */
#scroll-tag::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 1px;
}

/* Khi hover vào scrollbar */
#scroll-tag::-webkit-scrollbar-thumb:hover {
    background: #555;
}


.list-of-locations i {
    display: block;
    font-size: 2rem;
    text-align: center;
    color: #757575;
}
.list-of-locations img{
    object-fit: cover;
    border: 2px inset #bfbfbf;
    box-shadow: #e5e5e5 4px 2px 0px 1px;
    top: 5%;
    z-index: 111;
}
.list-of-locations p{
    color: #757575;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.list-of-locations span{
    color: #757575;
    border: 1px solid #8b8b8b;
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
}
.list-of-locations span:hover{
    color: #FFFFFF;
    background-color: #0b204a;
}
.sec-image{
    left: 20%;
    box-shadow: none !important;
    z-index: 11 !important;
    border: none !important;
    top: 10% !important;
}

.schedule .schedule-carousel .owl-item.center .schedule-item .schedule-day {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
    transition: 0.5s;
}

.slick-track{
    opacity: 1;
    width: 4032px !important;
    height: 24px;
    overflow-y: hidden;
}


.schedule-item{
    max-height: 2rem;
    width: 135px;
}



.schedule-day{
    width: 8rem;
    max-height: 2rem;
    border: 1px solid #0b204a;
    margin: auto;
}


.slick-prev, .slick-next{
    background: #FFFFFF !important;
    z-index: 99;
}
.slick-active.slick-center > div{
    background: #13357b !important;
    color: #FFFFFF;
}


.slick-prev:before, .slick-next:before{
    color: #13357b !important;
}
.slick-next{
    right: 0 !important;
}
.slick-prev{
    left: 0 !important;
}

@media (min-width: 1400px) {
    .schedule-item{
        width: 236px;
    }
    .weather ul li, .time, .requestAndDisplayRoute {
        font-size: 13px;
    }
}
@media (max-width: 1200px) {
    .schedule-item{
        width: 200px;
        font-size: 1.125rem;
    }
    .image-left-schedule{
        display: none;
    }
}

@media (max-width: 992px) {
    .schedule-item{
        width: 166px;
    }
    .weather ul li, .time, .requestAndDisplayRoute {
        font-size: 13px;
    }

}
@media (max-width: 768px) {
    .schedule-item{
        width: 219px;
    }
    .weather ul li, .time, .requestAndDisplayRoute, .form-floating>label {
        font-size: 11px;
    }
    .slick-prev, .slick-next
    {
        display: none !important;
    }

}
@media (max-width: 576px) {
    .schedule-item {
        width: 159px;
    }
    .schedule-page .carousel-indicators li{
        font-size: 10px;
    }
}



@media (min-width: 1200px) {
    .button-show-map{
        display: none !important;
    }
}
@media (min-width: 992px) {
    .button-show-map{
        display: none !important;
    }
}
/* ------------------------------------------------------------------- */
/* Chosen Plugin
---------------------------------------------------------------------- */

.chosen-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    /*font-size: 15px;*/
    zoom: 1;
    *display: inline;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.chosen-container * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.chosen-container .chosen-drop {
    position: absolute;
    top: 100%;
    left: -9999px;
    z-index: 1010;
    width: 100%;
    border: 1px solid #e0e0e0;
    background-color: #fcfcfc;
    border-top: 0;
}

.chosen-container.chosen-with-drop .chosen-drop { left: 0; }
.chosen-container a { cursor: pointer; }


/* Single Selectbox */
.chosen-container-single .chosen-single {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0 0 0 18px;
    height: 57px;
    line-height: 57px;
    border: 1px solid #ababab;
    background-color: #fcfcfc;
    color: #808080;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 500;
}

.chosen-container-single .chosen-default { color: #999; }

.chosen-container-single .chosen-single span {
    display: block;
    overflow: hidden;
    margin-right: 26px;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #484848;
}

.chosen-container-single .chosen-single-with-deselect span { margin-right: 38px; }

.chosen-container-single .chosen-single div {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 18px;
    height: 100%;
}
.chosen-container-single .chosen-single div b {
    display: block;
    position: relative;
}

.chosen-container-single .chosen-single div b:after {
    content: "";
    font-family: "FontAwesome";
    font-size: 14px;
    margin: 0 14px 0 0;
    top: -1px;
    position: relative;
    width: 11px;
    height: 5px;
    display: inline-block;
    color: #c0c0c0;
    float: right;
    font-weight: normal;
}

.chosen-container-single .chosen-search {
    position: relative;
    z-index: 1010;
    margin: 0;
    padding: 3px 6px;
    white-space: nowrap;
}

.chosen-container-single .chosen-search input[type="text"] {
    margin: 1px 0;
    padding: 6px 20px 6px 6px;
    width: 100%;
    height: auto;
    outline: 0;
    border: 1px solid #ddd;
    background-color: #fff;
    display: block;
    position: relative;
    z-index: 9;
    background-color: #fafafa;
}

.chosen-container-single .chosen-search:before {
    content: "";
    font-family: "FontAwesome";
    font-size: 15px;
    margin: 0 10px 0 0;
    top: 8px;
    position: relative;
    width: 11px;
    height: 5px;
    display: inline-block;
    color: #aaa;
    float: right;
    font-weight: normal;
    z-index: 10;
}

.chosen-container-single .chosen-drop {
    margin-top: -1px;
    background-clip: padding-box;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
    position: absolute;
    left: -9999px;
}

/* Results */
.chosen-container .chosen-results {
    color: #808080;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0 4px 8px 0;
    padding: 0 4px 0 8px;
    max-height: 232px;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid #e0e0e0;

}

.chosen-container .chosen-results li {
    display: none;
    margin: 0;
    padding: 10px 10px;
    list-style: none;
    line-height: 15px;
    word-wrap: break-word;
    -webkit-touch-callout: none;
}

.chosen-container-multi .chosen-results li { padding: 10px 18px; }

.chosen-container .chosen-results li.active-result {
    display: list-item;
    cursor: pointer;
}

.chosen-container .chosen-results li.disabled-result {
    display: list-item;
    color: #ccc;
    cursor: default;
}

.chosen-container .chosen-results li.highlighted {
    background-color: #505050;
    color: #fff;
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    -ms-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.chosen-container .chosen-results li.no-results {
    color: #808080;
    display: list-item;
    background-color: #fff;
}

.chosen-container-multi .chosen-results li.no-results { background-color: #fff; }

.chosen-container .chosen-results li.group-result {
    display: list-item;
    font-weight: bold;
    cursor: default;
}

.chosen-container .chosen-results li.group-option { padding-left: 15px; }

.chosen-container .chosen-results li em {
    font-style: normal;
    text-decoration: underline;
}


/* Multi Selectbox */
.chosen-container-multi .chosen-choices {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0 0 0 18px;
    height: calc(3.5rem + 2px);
    background-color: #fcfcfc;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 10px;
    cursor: pointer;
}

.chosen-container-multi .chosen-choices li {
    float: left;
    list-style: none;
}

.chosen-container-multi .chosen-choices li.search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
    height: 100%;
}

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
    margin: 0;
    padding: 0;
    height: 100%;
    outline: 0;
    border: 0 !important;
    background: transparent !important;
    color: #484848;
    line-height: normal;
    font-weight: 500;
}

.chosen-container-multi .chosen-choices li.search-choice {
    position: relative;
    margin: 6px 5px 0 -4px;
    padding: 0 10px 0 8px;
    /*padding: 0 30px 0 8px !important;*/
    max-width: 100%;
    background-color: #13357b99;
    line-height: 37px;
    color: #fff;
    cursor: default;
    border-radius: 5px;
    font-weight: 500;
    align-items: center;
    display: flex;
    height: 75%;
}

.chosen-container-multi .chosen-choices li.search-choice:hover{
    padding: 0 40px 0 8px !important;
}
.chosen-container-multi .chosen-choices li.search-choice:hover .search-choice-close{
    display: block !important;
}

.chosen-container-multi .chosen-choices li.search-choice span { word-wrap: break-word; }

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
    position: absolute;
    top: 5%;
    right: 2px;
    height: 90%;
    display: none;
    padding: 0 10px;
    border: 1px solid #fff;
    border-radius: 5px;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:before {
    content: "";
    font-family: "FontAwesome";
    font-size: 13px;
    top: 1px;
    position: relative;
    width: 11px;
    color: #fff;
    float: right;
    font-weight: normal;
    display: flex;
    align-items: center;
    height: 95%;
}

.chosen-container-multi .chosen-choices li.search-choice-disabled {
    padding-right: 5px;
    border: 1px solid #ccc;
    background-color: #e4e4e4;
    color: #808080;
}

.chosen-container-multi .chosen-choices li.search-choice-focus { background: #d4d4d4; }

.chosen-container-multi .chosen-results {
    margin: 0;
    padding: 0;
}

.chosen-container-multi .chosen-drop .result-selected {
    display: list-item;
    color: #ccc;
    cursor: default;
}


.navbar.navbar-expand-lg.navbar-light.shadow-sm .logo{
    background: url("http://localhost:8000/frontend/images/logo.png") no-repeat center center;
    background-size: contain;
    width: 2.25rem;
    height: 2rem;
    transform: translate3d(-5px, 5px, 0px);
}

.navbar.navbar-expand-lg.navbar-light .logo{
    background: url("http://localhost:8000/frontend/images/logo2.png") no-repeat center center;
    background-size: contain;
    width: 2.25rem;
    height: 2rem;
    transform: translate3d(-5px, 5px, 0px);
}

/* Active */
.chosen-container-active .chosen-single,
.chosen-container-active .chosen-choices,
.chosen-container-active.chosen-with-drop .chosen-single { border: 1px solid #e0e0e0; }

.chosen-container-active.chosen-with-drop .chosen-single div {
    border-left: none;
    background: transparent;
}

.chosen-container-active.chosen-with-drop .chosen-single div b:after { content: "" }
.chosen-container-active .chosen-choices li.search-field input[type="text"] { color: #808080 !important; }


















/* ----------------------------End Chosen--------------------------------------- */



/* ----------------------------Detail Schedule--------------------------------------- */


.detailed-schedule .time{
    padding: 10px 0 10px 10px;
    background: #FFFFFF;
    position: relative;
    z-index: 9;
    margin-left: 5px;
}


.middle-border{
    margin-top: 1rem;
    margin-left: 2rem;
    border-left: 1px dotted #c5c5c5;
    height: 90%;
    position: absolute;
    width: 2px;
}


.detailed-schedule, .event, .schedule {
    min-height: unset !important;
}

.detailed-schedule{
    overflow-y: scroll;
    overflow-x: hidden;
}

.detailed-schedule::-webkit-scrollbar {
    width: 4px;
}
/* Màu nền của thanh scrollbar */
.detailed-schedule::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

/* Phần cuộn di chuyển */
.detailed-schedule::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

/* Khi hover vào scrollbar */
.detailed-schedule::-webkit-scrollbar-thumb:hover {
    background: #555;
}



.detailed-schedule i {
    display: block;
    font-size: 1.25rem;
    text-align: center;
    color: #757575;
}
.detailed-schedule img{
    object-fit: cover;
    border: 2px inset #bfbfbf;
    box-shadow: #e5e5e5 4px 2px 0px 1px;
    top: 5%;
    z-index: 111;
}
.detailed-schedule p{
    color: #757575;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.detailed-schedule span{
    color: #757575;
    border: 1px solid #8b8b8b;
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
}
.detailed-schedule span:hover{
    color: #FFFFFF;
    background-color: #0b204a;
}

/* ----------------------------End Detail Schedule--------------------------------------- */

/* ----------------------------Chat bot--------------------------------------- */

@media (max-width: 576px) {
    .container-chatbot{
        width: 410px !important;
        bottom: 90px !important;
        right: 10px !important;
    }
}


.ai-chatbot{
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    z-index: 99;
    padding: 0;
    font-weight: normal;
    border-radius: 50%;

    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.container-chatbot{
    position: fixed;
    bottom: 30px;
    right: 90px;
    height: 40rem;
    background: var(--bg-color);
    width: 38rem;
    box-shadow: -3px -1px 9px 0px var(--box-shadow-color);
    border-radius: 3%;
    z-index: 999;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform-origin: bottom right;
    opacity: 1;
    transform: scale(1);
}

.container-chatbot.hidden {
    display: none;
}

.container-chatbot.shrink {
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}

.bot-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.header-title h2{
    color: var(--text-primary);
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.controls {
    display: flex;
    gap: 1rem;
}

.theme-toggle, .theme-toggle-hide {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 1.25rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background-color: var(--bot-message-bg);
}

.chat-container {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    background-color: var(--chat-bg);
    scroll-behavior: smooth;
}

.message {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: messageAppear 0.5s ease forwards;
}

@keyframes messageAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    margin-right: 1rem;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.user-message .avatar {
    background: var(--secondary-gradient);
}

.message-bubble {
    max-width: 70%;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    line-height: 1.5;
    position: relative;
    word-wrap: break-word;      /* Cho phép ngắt từ dài */
    overflow-wrap: break-word;  /* Tương tự, hỗ trợ trình duyệt hiện đại */
    white-space: pre-wrap;
}

.bot-message .message-bubble {
    background-color: var(--bot-message-bg);
    border-top-left-radius: 0;
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .avatar {
    margin-right: 0;
    margin-left: 1rem;
}

.user-message .message-bubble {
    background: var(--user-message-bg);
    color: white;
    border-top-right-radius: 0;
}

.typing-indicator {
    display: none;
    padding: 1rem 1.5rem;
    background-color: var(--bot-message-bg);
    border-radius: 1rem;
    width: fit-content;
    margin-left: 3.5rem;
    box-shadow: var(--shadow-sm);
}

.typing-dots {
    display: flex;
    gap: 0.4rem;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background-color: var(--text-secondary);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.input-container {
    position: absolute;
    padding: 0.75rem;
    box-shadow: var(--shadow-lg);
    bottom: 0;
    width: 100%;
}

.input-wrapper {
    display: flex;
    gap: 1rem;
    background-color: var(--chat-bg);
    border-radius: 1rem;
    padding: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.message-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: none;
    color: var(--text-primary);
    font-size: 1rem;
}

.message-input:focus {
    outline: none;
}

.message-input::placeholder {
    color: var(--text-secondary);
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
}

.action-button {
    background: none;
    border: none;
    padding: 0.75rem;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.action-button:hover {
    background-color: var(--bot-message-bg);
    color: var(--text-primary);
}

.send-button {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.send-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .container {
        /*height: 100dvh;*/
    }

    .header-title h1 {
        font-size: 1.25rem;
    }

    .chat-container {
        padding: 1rem;
    }

    .message-bubble {
        max-width: 85%;
    }

    .input-container {
        padding: 1rem;
    }
}
/* ----------------------------End Chat bot--------------------------------------- */


/* -----------------------------------------*/
/*   Event And Activity
/*------------------------------------------*/
.eventAndActivity {
    min-height: unset !important;
}

.eventAndActivity::-webkit-scrollbar {
    width: 4px;
}
/* Màu nền của thanh scrollbar */
.eventAndActivity::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

/* Phần cuộn di chuyển */
.eventAndActivity::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

/* Khi hover vào scrollbar */
.eventAndActivity::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.eventAndActivity i {
    display: block;
    font-size: 2rem;
    text-align: center;
    color: #757575;
}
.eventAndActivity img{
    object-fit: cover;
    border: 2px inset #bfbfbf;
    box-shadow: #e5e5e5 4px 2px 0px 1px;
    top: 5%;
    z-index: 111;
}
.eventAndActivity p{
    color: #757575;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.eventAndActivity span{
    color: #757575;
    border: 1px solid #8b8b8b;
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
}
.eventAndActivity span:hover{
    color: #FFFFFF;
    background-color: #0b204a;
}
/* Căn giữa toàn bộ nav */
.pagination {
    display: flex !important;
    justify-content: center;
    margin: 1.5rem 0;
}

/* Thay đổi style cho từng item */
.pagination .page-item .page-link {
    border-radius: 0.25rem;
    padding: 0.5rem 0.75rem;
    margin: 0 0.25rem;
    background-color: #f8f9fa;
    color: #007bff;
    border: 1px solid #dee2e6;
    transition: background-color .2s;
}

.pagination .page-item .page-link:hover {
    background-color: #e2e6ea;
}

/* Active */
.pagination .page-item.active .page-link {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* Disabled */
.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
}
@media (max-width: 576px) {
    .pagination li:not(.active):not(.page-item:first-child):not(.page-item:last-child):not(.disabled) {
        display: none;
    }
}
/* === Main media === */
.gallery-main-img img,
.gallery-main-img video {
    width: 100%;           /* Lấp đầy chiều ngang container */
    max-height: 100%;     /* Giới hạn chiều cao (bạn có thể thay 400px thành giá trị mong muốn) */
    object-fit: contain;   /* Giữ tỉ lệ, không cắt nội dung, chạm ít nhất một cạnh */
    display: block;
    margin: auto;
    border-radius: 8px;
}

/* Reset padding/border cho button chứa media */
button.gallery-main-img,
button.thumb-btn {
    height: fit-content;
}

/* Đảm bảo container không bị tràn */
.destination-img,
.wrapper,
.gallery {
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow: hidden;
}
.thumbs-container-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}
/* === Thumbnails === */
.gallery-thumbs {
    display: flex;
    overflow: hidden;
    max-width: calc(8 * 80px + 5 * 0.4rem);
    gap: 0.4rem;
    width: auto;
    scroll-behavior: smooth;
}
.destination-detail-img {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    /*width: 60%;*/
    /*max-width: 60%;*/
    margin: 0 auto;
}
.thumb-btn img,
.thumb-btn video {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 20%;
}
/* Nút chuyển trái/phải */
.thumb-nav-btn {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: none;
    cursor: pointer;

}

.thumb-nav-btn:disabled {
    opacity: 0.3;
    cursor: default;
}
.thumb-nav-btn:hover {
    background-color: #e0e0e0;
}
#thumb-prev {
    left: -1.5rem;
    width: 70px;
    background-color: transparent;
    border-radius: 20%;
    height: 50px;
}
#thumb-next {
    right: -1.5rem;
    width: 70px;
    background-color: transparent;
    border-radius: 20%;
    height: 50px;
}
.related-tour-sidebar {
    position: sticky;
    top: 100px; /* hoặc khoảng cách bạn muốn */
    z-index: 10;
}
/* === Responsive: Mobile (<= 600px) show 3 thumbnails === */


@media (max-width: 600px) {
    .gallery-main-img img,
    .gallery-main-img video {
        max-height: 100%;
    }
    .destination-detail-img {
        width: 100%;
        max-width: 100%;
    }
    .gallery-thumbs {
        width: calc(5 * 50px + 2 * 0.3rem);
    }
    .thumb-btn img,
    .thumb-btn video {
        width: 50px;
        height: 50px;
    }
    .thumb-nav-btn {
        width: 20px;
        height: 40px;
        font-size: 0.5rem;
    }
    #thumb-prev {
        left: -0.5rem;
        width: 40px;
        height: 40px;
    }
    #thumb-next {
        right: -0.5rem;
        width: 40px;
        height: 40px;
    }
}
.packages .packages-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

/* Ẩn filter sidebar trên tablet/mobile */
@media (max-width: 991.98px) {
    .filter-sidebar {
        display: none;
        top: 0; left: 0; bottom: 0;
        width: 80vw;
        max-width: 320px;
        background: #fff;
        z-index: 1050;
        overflow-y: auto;
        box-shadow: 2px 0 8px rgba(0,0,0,0.1);
        transition: transform 0.3s;
        transform: translateY(-100%);
    }
    .filter-sidebar.open {
        display: block;
        z-index: 1051;
        transform: translateX(+15%);
    }
    .filter-toggle-btn {
        display: inline-block !important;
    }
    .tour-card {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .tour-img-col {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-bottom: 1rem;
    }
    .tour-info-col {
        width: 100% !important;
    }
}
.filter-overlay {
    display: none;
    position: fixed;
    z-index: 1049;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4); /* Độ mờ */
    transition: opacity 0.3s;
}
/*Countdown*/
.countdown-timer-box .countdown-item {
    background: #fff;
    border-radius: 8px;
    min-width: 60px;
    padding: 8px 0;
    box-shadow: 0 2px 8px rgba(249, 79, 156, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.countdown-timer-box .countdown-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f94f9c;
    line-height: 1;
}
.countdown-timer-box .countdown-label {
    font-size: 0.9rem;
    color: #888;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.countdown-header {
    border-radius: 8px 8px 0 0;
}
/* -----------------------------------------*/
/*  End Event And Activity
/*------------------------------------------*/







/* -----------------------------------------*/
/*  Modal Dialog
/*------------------------------------------*/
@media (max-width: 576px) {
    .modal-dialog{
        max-width: 365px;
        margin: 1.75rem auto;
        height: 480px;
        margin-top: 10rem;
    }
    .modal-dialog .modal-content{
        height: 100%;
    }
}

@media (min-width: 576px) {
    .modal-dialog{
        max-width: 500px;
        margin: 1.75rem auto;
        height: 400px;
        margin-top: 10rem;
    }
    .modal-dialog .modal-content{
        height: 100%;
    }
}
@media (min-width: 768px) {
    .modal-dialog{
        max-width: 550px;
        margin: 1.75rem auto;
        height: 450px;
        margin-top: 10rem;
    }
    .modal-dialog .modal-content{
        height: 100%;
    }
}
@media (min-width: 992px) {
    .modal-dialog{
        max-width: 700px;
        margin: 1.75rem auto;
        height: 600px;
        margin-top: 10rem;
    }
    .modal-dialog .modal-content{
        height: 100%;
    }
}
@media (min-width: 1200px) {
    .modal-dialog{
        max-width: 1000px;
        margin: 1.75rem auto;
        height: 700px;
        margin-top: 10rem;
    }
    .modal-dialog .modal-content{
        height: 100%;
    }
}
@media (min-width: 1400px) {
    .modal-dialog{
        max-width: 1000px;
        margin: 1.75rem auto;
        height: 500px;
        margin-top: 10rem;
    }
    .modal-dialog .modal-content{
        height: 100%;
    }
}

#exampleModal .carousel-control-prev, .carousel-control-next {
    background: #00000096;
    height: 30px;
    width: 30px;
    border-radius: 20px;
    top: 50% !important;
}
#exampleModal .carousel-control-prev{
    transform: translate(10px, -50%);
}

#exampleModal .carousel-control-next{
    transform: translate(-10px, -50%);
}


/* -----------------------------------------*/
/*  End Modal Dialog
/*------------------------------------------*/



#load-more{
    cursor: pointer;
}

/* -----------------------------------------*/
/*  User Profile
/*------------------------------------------*/
.avatar-user{
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    object-fit: cover;
}
.text-rank{
    text-shadow: 2px 0 #737373, -2px 0 #5b5b5b, 0 2px #3d3d3d, 0 -2px #505050,
    1px 1px #414141, -1px -1px #3d3d3d, 1px -1px #313131, -1px 1px #424242;
}
.menu-profile{
    display: flex;
    margin-bottom: 0;
    margin-top: 1.25rem;
}
.menu-profile li{
    list-style-type: none;
    font-weight: bold;
}
.menu-profile .active{
    color: #fff !important;
    background-color: #13357b !important;
    border-color: #dee2e6 #dee2e6 #fff;
}
/* -----------------------------------------*/
/*  User Profile
/*------------------------------------------*/
