:root {
    --primary: #13b6ec;
    --black: rgb(15, 23, 42);
    /* Booking.com system font stack */
    --text-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    max-width: 100%;
    /* clip avoids horizontal scroll without breaking position:sticky */
    overflow-x: clip;
}

body {
    font-family: var(--text-font);
    font-size: 16px;
    color: var(--black);
    background-color: #f6f8f9;
}

img {
    max-width: 100%;
    height: auto;
}

.table-responsive,
.hy-scroll-x {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

a {
    text-decoration: none;
    color: var(--primary);
}

.btn-light-primary {
    background-color: rgba(19, 182, 236, 0.1);
    color: var(--primary);
}

.bg-background-light {
    --tw-bg-opacity: 1;
    background-color: #f2f2f2;
}

.btn-primary {
    background: #13b6ec;
    color: #fff;
    border-radius: 8px;
    padding: 6px 16px;
    transition: .25s;
    border: 1px solid #13b6ec;
}

.btn-primary:hover {
    background: #05a2d6;
    color: #fff;
    border: 1px solid #13b6ec;
}

.btn-outline-primary {
    background-color: #fff;
    color: #13b6ec;
    border: 1px solid #13b6ec;
}

.btn-outline-primary:hover {
    background-color: #13b6ec;
    color: #fff;
    border: 1px solid #13b6ec;
}

.text-primary {
    color: #13b6ec !important;

}
.action-btn{
       background: #ea580c;
    color: #fff;
    border: 1px solid #ea580c;
     border-radius: 20px;
    padding: 6px 16px;
    transition: .25s;
}
.action-btn:hover{
     background: #e7702f;
     border: 1px solid #e7702f;
     color: #fff;
}
.four-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Tablet */
@media (max-width: 1280px) {
    .four-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .four-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Mobile */
@media (max-width: 767px) {
    .four-grid {
        grid-template-columns: 1fr;
    }
}
@media(max-width:576px) {
    .btn {
        font-size: .9rem;
        padding: .375rem .5rem !important;
    }

    .btn-lg {
        font-size: 1rem;
        padding: .5rem .7rem !important;
    }

}

.page-info {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
   
    overflow: hidden;
}

.page-info img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

.page-info-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page-info:after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(rgba(0, 50, 80, 0.7) 0%, rgba(0, 50, 80, 0.85) 100%);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.page-info-content {
    z-index: 2;
    text-align: center;
    width: 50%;
    padding: .75rem;
}

.page-info-title {
    font-size: clamp(25px, 3.5vw, 44px);
    color: #fff
}

.page-info-content p {
    color: #d2d2d2;
}

@media(max-width:1366px) {
    .page-info {
        height: 350px;
    }
}

@media(max-width:768px) {
    .page-info {
        height: 250px;
    }

    .page-info-content {

        width: 100%;
    }
}

.nav-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    gap: .75rem;
}

.nav-tab .nav-link {
    background-color: #ffffff;
    border-radius: 18px;
    padding: .5rem 1rem;
    color: #5a5a5a;
    border: 1px solid #d4d4d4;
    transition: .25s;
}

.nav-tab .nav-link.active {
    background: linear-gradient(90deg, #3da7e3 0%, #2b6fd6 100%);
    color: #fff;
}

.nav-tab .nav-link:hover {
    background: linear-gradient(90deg, #3da7e3 0%, #2b6fd6 100%);
    color: #fff;
}

.nav-tab-two {
    display: flex;

    align-items: center;

    gap: 1rem;
    overflow-x: auto;
}

.nav-tab-two .nav-link {
    padding: .5rem 1rem;
    color: #5a5a5a;
    transition: .25s;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    position: relative;

}

.nav-tab-two .nav-link.active,
.nav-tab-two .nav-link:hover {
    background: linear-gradient(90deg, #3da7e3 0%, #2b6fd6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-tab-two .nav-link.active::after,
.nav-tab-two .nav-link:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3da7e3 0%, #2b6fd6 100%);
}

.need-help-wrapper {
    background: linear-gradient(90deg, #3da7e3 0%, #2b6fd6 100%);
    padding: 3rem;
    border-radius: 20px;
    color: #fff;
}

.modal-header {
    background: linear-gradient(74deg, #104a6c 15%, #095893 100%);
    color: #fff;
}

/* Remove default border + radius if needed */
@media(min-width:1024px){

    .w-lg-75{
        width: 75%;
        margin: 0 auto;
    }
}
.accordion-button {
    border: none;
    box-shadow: none;
    background-color: #ffffff;
    border-radius: 6px;
}

.accordion-button:not(.collapsed) {
    border-radius: 6px 6px 0 0;
}

.accordion-collapse .accordion-body {
    background-color: #F0F6FE;
}

/* Remove focus outline + shadow */
.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

/* Hover effect on accordion button */
.accordion-button:hover {
    background-color: #cfe2ff;
    /* change to any color you like */
}

/* Optional: remove border from collapsed content */
.accordion-collapse {
    border: none;
}

.accordion-item {
    border: none;
    /* remove border */
}

.accordion-item:not(:last-child) {
    margin-bottom: 15px;

}

.card {
    border: none;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.shadow-bottom {
    box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
}

/* header css start */
.navbar {
    background: #f6f8f9;
    border-bottom: 1px solid #eee;
}

.logo {
    font-weight: 700;
    font-size: 20px;
}

.navbar-brand.logo {
    margin-right: 0.5rem;
    max-width: min(280px, 46vw);
    flex: 0 1 auto;
    min-width: 0;
}

.navbar-brand.logo img {
    display: block;
    height: 46px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 1199.98px) {
    .navbar-brand.logo {
        max-width: min(240px, 42vw);
    }

    .navbar-brand.logo img {
        height: 40px;
    }
}

@media (max-width: 991.98px) {
    .navbar-brand.logo {
        max-width: min(200px, 48vw);
    }

    .navbar-brand.logo img {
        height: 34px;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand.logo {
        max-width: min(152px, 42vw);
    }

    .navbar-brand.logo img {
        height: 28px;
    }
}

/* Keep fixed header + content readable on small screens */
@media (max-width: 991.98px) {
    .hb-header + *,
    main,
    .page-info,
    .tour-hero,
    .destination-details-page {
        max-width: 100%;
    }
}
.nav-link {
    font-weight: 500;
}
header .search-container {
 
    background: #f3f3f3;
    border-radius: 20px;
}
header .search-container input{
    padding: 0;
    font-size: .9rem;
}
header .search-container input::placeholder{
    opacity: .5;
}
header .search-container input i{
    color:#bdb7b7;
}
@media (max-width: 1024px) {
    .navbar-expand-lg .navbar-collapse {
        display: none !important;
    }

    .navbar-expand-lg .navbar-toggler {
        display: block !important;
    }
}

/* Desktop above 1024px */
@media (min-width: 1400px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
    }

    .navbar-expand-lg .navbar-toggler {
        display: none !important;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: .75rem;
    }
}

@media(max-width:576px) {
    header .top-header a {
        font-size: .85rem;
    }
}

/* header css end */




.section {
    padding: clamp(22px, 4.09vw, 90px) 0;
}

.heading-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: clamp(20px, 2vw, 40px);

}

.section-heading {
    font-size: clamp(20px, 2.5vw, 32px);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title-sm {
    font-size: clamp(17px, 2vw, 18px);
    font-weight: 600;
    position: relative;
    padding-bottom: .5rem;
    color: #13b6ec;

}

.section-title-sm:after {
    content: "";
    height: 2px;
    width: 100px;
    background: #caf2ff;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 2px;
}

.card {
    border-radius: 1rem;
}

.view-all-link {
    font-weight: 500;
    flex: 0 0 100px;
}
.mob-view-link{
    display: none;
}
@media(max-width:680px){
    .heading-wrapper {
    
    align-items: flex-start;
    

}
.view-all-link{
    display: none;
}
.mob-view-link{
   display: block;
        margin: 1rem auto 0;
        text-align: center;

}
}
/* tour Package Section css start */
.tour-pachage-section{
    background-color: #fff;
}
.tour-package {
    position: relative;
    overflow: hidden;
     background-color: #f5f7f8;
}

a.card.tour-package,
a.card.destination-card,
a.card.trending-destination {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

a.card.tour-package:hover,
a.card.destination-card:hover,
a.card.trending-destination:hover {
    color: inherit;
    text-decoration: none;
}


.tour-package .tour-price {
    border-radius: 16px;
    background-color: #f97316;
    color: #fff;
    padding: 3px 13px;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: .85rem;
}
.tour-package .tour-period{
      border-radius: 16px;
    background-color: #fff;
    color: #13b6ec;
    padding: 3px 13px;
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: .85rem;
}
.tour-package .tour-pack-type{
    border-radius: 16px;
    background-color: rgba(19, 182, 236, 0.95);
    color: #fff;
    padding: 3px 13px;
    position: absolute;
    top: 3.1rem;
    left: 1rem;
    font-size: .75rem;
    font-weight: 600;
    z-index: 2;
    max-width: calc(100% - 7rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.card.tour-package img {
    width: 100%;
    height: 220px;
    border-radius: 1rem;
    object-fit: cover;
}
.tour-package  .title-wrapper{
display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.tour-package  .title-wrapper .stars{
    font-size: 16px;
}
.tour-package  .title-wrapper .stars span{
    color: #353535;
    font-size: .85rem;
    font-weight: 500;
}
.card.tour-package h3 {
     font-size: clamp(18px, 1.2vw, 23px);
    font-weight: 700;
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}
.card.tour-package p{
    margin: 1rem 0 1.5rem;
}

.card.tour-package {
    display: flex;
    flex-direction: column;
}

.card.tour-package .card-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.card.tour-package .card-body p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.5em;
    flex: 1 1 auto;
    margin-bottom: 1.5rem;
}

.card.tour-package .book-trip {
    margin-top: auto;
}

.book-trip{
    border-radius: 20px;
    padding: .5rem 1rem;
}
.trending-card .trending-layout{
    display: flex;
}

.tour-package.trending-card .tour-period {
    border-radius: 16px;
    background-color: #fff;
    color: #13b6ec;
    padding: 5px 8px;
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.75rem;
    line-height: 1;
    z-index: 99;
}
.tour-package.trending-card .tour-pack-type {
    top: 2.85rem;
    left: 1rem;
    z-index: 99;
    font-size: 0.7rem;
    padding: 4px 8px;
}
.tour-package.trending-card .img-wrapper{
    flex: 0 0 350px;
    position: relative;
}
.tour-package.trending-card .img-wrapper .stars{
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 16px;
}
.tour-package.trending-card .stars span {
    color: #353535;
    font-size: .85rem;
    font-weight: 500;
}
.trending-card .trending-layout img{
   width: 100%;
   object-fit: cover;
}
.trending-card .trending-layout .price{
   font-size: clamp(16px, 1.4vw, 28px);
    font-weight: 600;
    color: #ea580c;
    margin-bottom: 0;
    display: inline-block;

}
.trending-card  .facility{
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem 0;
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;

}
.trending-card  .facility li{
     padding: 5px 12px;
    border-radius: 12px;
    background-color: #4ca8d4;
    color: #fefdfd;
    font-size: .9rem;
    line-height: 1;
}
@media(max-width:992px){
    .trending-layout{
        flex-direction: column;
    }
    .tour-package.trending-card .img-wrapper {
    flex: auto;
}
.card.tour-package img {
    height: 151px;
}
.card.tour-package p {
    margin: 0.2rem 0 0.8rem !important;
}
.trending-card .facility {

    gap: 0.5rem;
  
}
.trending-card .facility li {
    padding: 4px 10px;
    font-size: 0.8rem;
   
}
}
/* tour Package Section css end */

/* destination css start */
.destination-card{
    position: relative;
    overflow: hidden;

}
.destination-card img{
    transition: transform 0.3s ease;
    object-fit: cover;
}
.destination-card .price{
      font-size: clamp(16px, 1.2vw, 17px);
    font-weight: 500;
    color: #ea580c;
    margin-bottom: 0;
    display: block;
}
.destination-card .stretched-link{
    z-index: 999;
}
@media(min-width:1366px){
    .destination-card img{
        min-height: 400px;
    }
}
.destination-card:hover img {
transform: scale(1.05);
}
.destination-card:after{
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
        background: linear-gradient(45deg, #0d0c0c75, transparent);
    pointer-events: none;
}
.destination-card .info{
    position: absolute;
    left: 0 ;
    bottom: 1rem;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    align-items: end;
    width: 100%;
    padding: 0 1rem;
}
.destination-card .info .d-name{
    font-size: clamp(18px, 1.2vw, 23px);
    font-weight: 700;
    color: #fff;
    margin-bottom:0;
}
.active-tour{
    color: #cbd5e1;
    font-size: .9rem;
}
@media(max-width:768px){
    .destination-card img {
 
    height: 200px;
}
}
/* destination css end */


/* footer css Start */
footer {
    background-color: #0f172a;
    color: #909faa;
    font-size: .95rem;
}

footer .top-footer {
    padding: 4rem 0 2rem;
}

.footer-logo {
    display: block;
    margin-bottom: 1.5rem;
    max-width: 100%;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.socila-list {
    margin: 2rem 0 0 0;
    padding: 0;
    list-style: unset;
    display: flex;
    align-items: center;
    gap: .7rem;
}

.socila-list li {
    --size: 35px;
    height: var(--size);
    width: var(--size);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1d2b4d;
    transition: .25s;
}

.socila-list li a {
    color: #c1c1c1;
    display: inline-block;
}

.socila-list li:hover {
    background-color: #13b6ec;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: clamp(16px, 16px + 1vw, 19px);
    margin-bottom: 1.5rem;
    color: #fff;
}

.list-style {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;

    gap: .7rem;
}
.list-style i{
    color:#13b6ec;
}

.list-style li a {
    color: #909faa;
    transition: .25s;
    display: inline-block;
}

.list-style li:hover a {
    color: #13b6ec;
    transform: translateX(3px);
}

.bottom-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 0;
    border-top: 1px solid #dadada1c;
    color: #909faa;
}



@media(max-width:768px) {
    .list-style {
        flex-direction: row;
        flex-wrap: wrap;

    }

    .list-style li a {

        white-space: nowrap;
        background: #17223d;
        padding: .25rem .5rem;
        border-radius: 6px;
    }
}

/* footer css end */


.trending-destination:hover h3{
color: #13b6ec;
}
.trending-destination img{
    transition: transform 0.3s ease;
}
.trending-destination:hover img{
    transform: scale(1.05);
}
.trending-destination .img-wrapper{
    position: relative;
    overflow: hidden;
}
.trending-destination .img-wrapper:after{
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #1717174a;
    pointer-events: none;
}
.trending-destination h3{
    font-size: clamp(18px, 1.2vw, 23px);
    font-weight: 700;
    margin-bottom: 0;
    transition: all .25s;
}
.trending-destination .active-tour {
    color: #606060;
    font-size: .9rem;
}

/* Why book with us start */

.promise-wrapper .icon-box{
   --size: clamp(50px, 6.3vw, 70px);
    height: var(--size);
    width: var(--size);
    border-radius: 1rem;
    background-color: rgb(19 146 236 / 0.2);
    color: #1392ec;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: .75rem;
    margin-inline: auto;
}
.promise-wrapper .icon-box i{
    font-size: clamp(22px,2vw,44px);
    
}
.promise-wrapper h3{
   font-size: clamp(18px, 1.2vw, 23px);
   font-weight: 700;
}
/* Why book with us end */
/* contact section css start */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(90deg, #03182d 0%, #021326 100%);
}

.contact-section .content-area h2 {
    font-size: clamp(1.2rem, 2.3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-section .content-area p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, .75);
    max-width: 520px;
}

.contact-section .contact-info {
    margin-top: 50px;
}

.contact-section .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-section .info-item i {
    color: #1f9cff;
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-section .info-label {
    color: rgba(255, 255, 255, .6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 200;
}

.contact-section .info-value {
    color: #fff;
    font-weight: 700;
}

.contact-section .contact-form-card {
    background: #071737;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.contact-section .form-label {
    color: rgba(255,255,255,.85);
    text-transform: uppercase;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-section .form-control,
.contact-section .form-select {
    background: #16233f;
    border: 1px solid rgba(255,255,255,.08);
    color: #fff;
    min-height: 50px;
}

.contact-section .form-control:focus,
.contact-section .form-select:focus {
    background: #16233f;
    color: #fff;
    border-color: #1f9cff;
    box-shadow: 0 0 0 .2rem rgba(31,156,255,.25);
}

.contact-section .form-control::placeholder {
    color: rgba(255,255,255,.4);
}

.contact-section textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.contact-section .btn-submit {
    border: none;
    min-height: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 12px;
    transition: .3s;
}

@media (max-width: 991.98px) {
    .contact-section .content-area {
        text-align: center;
        margin-bottom: 50px;
    }

    .contact-section .content-area p {
        margin: auto;
        font-size: .9rem;
    }

    .contact-section .info-item {
        justify-content: center;
    }

    .contact-section .form-control,
    .contact-section .form-select,
    .contact-section .btn-submit {
        min-height: 35px;
        font-size: .9rem;
    }
}

@media (max-width: 576px) {
    .contact-section .contact-form-card {
        padding: 20px;
    }

    .contact-section .info-value {
        font-size: 1.15rem;
    }

    .contact-section .content-area p {
        font-size: .9rem;
    }

    .contact-section .form-control,
    .contact-section .form-select,
    .contact-section .btn-submit {
        min-height: 35px;
        font-size: .9rem;
    }
}
/* contact section css end */

/* Package details css start */
.package-info{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}
.package-info li{
    padding: .25rem .5rem;
    border-radius: 8px;
    background-color: #0a81bb;
    border: 1px solid #655a5a2e;
    color: #e7e7e7;
    font-size: .9rem;
}
.hilight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}
.hilight-grid .card{
    border-radius: .5rem;
    background: #f3f3f3;
    box-shadow: none;
}
.read-more-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.1rem;
   
}

.read-more-text.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
     max-height: 200px;
    overflow-y: auto;
}

.read-more-text.expanded::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 29%);
    background-color: #F5F5F5;
}

.read-more-text.expanded::-webkit-scrollbar
{
	width: 6px;
	background-color: #F5F5F5;
}

.read-more-text.expanded::-webkit-scrollbar-thumb
{
	background-color: #b9b9b9;
}

.read-more-btn {
    border: 0;
    background: transparent;
    color: #1392ec;
    font-weight: 600;
    padding: 0;
    cursor: pointer;
    margin-bottom: .75rem;
}

.tag-content-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.tag-content-section.tag-about-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.tag-read-more-block {
    width: 100%;
}

.tag-content-heading {
    margin-bottom: 1rem;
}

.tag-read-more-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.35rem;
    color: #4b5563;
    line-height: 1.65;
    font-size: 1rem;
}

.tag-read-more-text p:last-child {
    margin-bottom: 0;
}

.tag-read-more-text.expanded {
    -webkit-line-clamp: unset;
    display: block;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 0.35rem;
}

.tag-read-more-text.expanded::-webkit-scrollbar {
    width: 6px;
    background-color: #f5f5f5;
}

.tag-read-more-text.expanded::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 29%);
    background-color: #f5f5f5;
}

.tag-read-more-text.expanded::-webkit-scrollbar-thumb {
    background-color: #b9b9b9;
    border-radius: 999px;
}

@media (max-width: 767.98px) {
    .tag-content-section {
        padding-top: 1.75rem;
        padding-bottom: 1.75rem;
    }

    .tag-read-more-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .tag-read-more-text.expanded {
        max-height: 220px;
    }
}

/* Best Time to Visit css start */
.Season-card .Season-card-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}
.Season-card .Season-card-header h3{
    font-size: clamp(1.1rem , 2vw, 1.2rem);
        font-weight: 600;
        margin-bottom: 0;
}
.Season-card .icon-box{
   --height: clamp(45px, 4.5vw, 70px);
    --width: clamp(40px, 4vw, 65px);
    height: var(--height);
    width: var(--width);
    border-radius: .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.Season-card .icon-box i{
    font-size: clamp(1rem,1.8vw,2rem);
}
.Season-card .icon-box.dry{
    background-color: #ffedd5;
    color: #f57114;
}
.Season-card .icon-box.wet{
     background-color: #d2e0f3;
    color: #3370d4;
}
.Season-card  ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}
.Season-card  ul  li{
    padding: .25rem .5rem;
    border-radius: 8px;
    background-color: #f3f3f3;
   
    
    font-size: .9rem;
}
/* quick link css start */
.quick-link-section{
    background-color: #0d1529;
}
.quick-link-section h2{
  
   font-size: clamp(18px, 1.2vw, 23px);
    font-weight: 700;
       color: #ea580ccf;
    border-bottom: 1px solid #ededed33;
    padding-bottom: 0.7rem;
    margin-bottom: 1rem;
}
.quick-link-wrapper{
    padding: 0;
    margin: 0;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  list-style: none;
  margin-bottom: 2rem;
}
.quick-link-wrapper li{
    padding-left: 1.5rem;
    position: relative;

}
.quick-link-wrapper li:hover a {
    color: #13b6ec;
    transform: translateX(3px);
}
.quick-link-wrapper li:hover:after {
    color: #13b6ec;
    left:3px ;
}
.quick-link-wrapper li:after{
    content: "\F7CD";
    position: absolute;
    top: 0px;
    left: 0;
    font-family: "bootstrap-icons" !important;
    color: #89a7bd;
    transform: rotate(45deg);
     transition: .25s;
}
.quick-link-wrapper  li a {
    color: #909faa;
    transition: .25s;
    display: inline-block;
}
/* policy css start */
.policy-sub-heading{
    font-size: clamp(16px, 16px + .6vw, 19px);
}
.blog-tab .nav-link{
    background-color: #eaeaea;
    color: #222;
}
.blog-tab .nav-link.active{
    background-color: #35bdb2;
    color: #ffffff;
}
.itenary-accordion{

}

/* Tour package details page — itinerary */
.tour-details-page .itinerary-section-head {
    position: relative;
    padding-bottom: 4px;
}

.tour-details-page .itinerary-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 6px 12px 6px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(19, 182, 236, 0.12), rgba(19, 182, 236, 0.04));
    border: 1px solid rgba(19, 182, 236, 0.22);
    color: #0b7eaa;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tour-details-page .itinerary-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #13b6ec;
    box-shadow: 0 0 0 0 rgba(19, 182, 236, 0.55);
    animation: itineraryPulse 1.8s ease-out infinite;
}

@keyframes itineraryPulse {
    0% { box-shadow: 0 0 0 0 rgba(19, 182, 236, 0.55); }
    70% { box-shadow: 0 0 0 10px rgba(19, 182, 236, 0); }
    100% { box-shadow: 0 0 0 0 rgba(19, 182, 236, 0); }
}

.tour-details-page .itinerary-section-sub {
    margin: 10px 0 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.5;
}

.tour-details-page .tourAccordion {
    --itin-accent: #13b6ec;
    --itin-accent-deep: #0a8fbf;
    --itin-ink: #0f172a;
    --itin-muted: #64748b;
    --itin-line: rgba(19, 182, 236, 0.28);
    --itin-soft: rgba(19, 182, 236, 0.08);
    position: relative;
}

.tour-details-page .tourAccordion .accordion-item,
.tour-details-page .tourAccordion .itinerary-day-item {
    position: relative;
    border-radius: 22px !important;
    overflow: hidden;
    margin-bottom: 18px;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(19, 182, 236, 0.55), rgba(255, 255, 255, 0.2) 45%, rgba(14, 165, 233, 0.35)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    animation: itineraryRise 0.55s ease both;
    animation-delay: calc(var(--day-index, 0) * 70ms);
}

@keyframes itineraryRise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tour-details-page .tourAccordion .itinerary-day-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(19, 182, 236, 0.12);
}

.tour-details-page .tourAccordion .itinerary-day-item::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #13b6ec, #38bdf8 50%, #0ea5e9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tour-details-page .tourAccordion .itinerary-day-item:has(.accordion-button:not(.collapsed))::before {
    opacity: 1;
}

.tour-details-page .tourAccordion .accordion-button {
    background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
    box-shadow: none !important;
    border: none;
    padding: 18px 22px;
    gap: 0;
}

.tour-details-page .tourAccordion .accordion-button::after {
    display: none;
}

.tour-details-page .tourAccordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(19, 182, 236, 0.12), rgba(255, 255, 255, 0.95) 48%, #ffffff);
    color: var(--itin-ink);
}

.tour-details-page .tourAccordion .day-header {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.tour-details-page .tourAccordion .day-number {
    width: 58px;
    min-width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    font-weight: 800;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    line-height: 1;
}

.tour-details-page .tourAccordion .day-number-label {
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.85;
}

.tour-details-page .tourAccordion .day-number-value {
    font-size: 18px;
    letter-spacing: -0.02em;
}

.tour-details-page .tourAccordion .accordion-button:not(.collapsed) .day-number {
    background: linear-gradient(145deg, #13b6ec, #0ea5e9);
    color: #fff;
    box-shadow: 0 10px 24px rgba(19, 182, 236, 0.35);
    transform: scale(1.03);
}

.tour-details-page .tourAccordion .accordion-button.collapsed .day-number {
    background: linear-gradient(180deg, #f1f5f9, #e8eef5);
    color: #475569;
    border: 1px solid #e2e8f0;
}

.tour-details-page .tourAccordion .day-title-wrap {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.tour-details-page .tourAccordion .day-title {
    font-size: clamp(15px, 1.25vw, 18px);
    font-weight: 700;
    color: #334155;
    letter-spacing: -0.01em;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.tour-details-page .tourAccordion .accordion-button:not(.collapsed) .day-title {
    color: var(--itin-ink);
}

.tour-details-page .tourAccordion .day-meta {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 500;
    color: var(--itin-muted);
    letter-spacing: 0.01em;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-details-page .tourAccordion .accordion-button:not(.collapsed) .day-meta {
    display: none;
}

.tour-details-page .tourAccordion .day-toggle-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.04);
    color: #64748b;
    flex-shrink: 0;
    transition: transform 0.35s ease, background 0.3s ease, color 0.3s ease;
}

.tour-details-page .tourAccordion .accordion-button:not(.collapsed) .day-toggle-icon {
    background: rgba(19, 182, 236, 0.15);
    color: #0b7eaa;
    transform: rotate(180deg);
}

.tour-details-page .tourAccordion .accordion-collapse .accordion-body {
    padding: 8px 22px 22px;
    border-top: 1px solid rgba(19, 182, 236, 0.12);
    background:
        radial-gradient(120% 80% at 0% 0%, rgba(19, 182, 236, 0.06), transparent 55%),
        linear-gradient(180deg, #fbfdff, #ffffff);
}

.tour-details-page .tourAccordion .accordion-body p,
.tour-details-page .tourAccordion .accordion-body li {
    color: #475569;
    line-height: 1.8;
    font-size: 16px;
}

.tour-details-page .tourAccordion .accordion-body ul {
    padding-left: 22px;
    margin: 0;
}

.tour-details-page .daywise-content {
    display: grid;
    gap: 16px;
}

.tour-details-page .daywise-desc {
    color: #475569;
    line-height: 1.8;
    font-size: 16px;
}

.tour-details-page .daywise-desc p:last-child {
    margin-bottom: 0;
}

.tour-details-page .daywise-places {
    list-style: none;
    padding: 0 !important;
    margin: 0;
    display: grid;
    gap: 10px;
}

.tour-details-page .daywise-places li {
    position: relative;
    padding: 12px 14px 12px 40px;
    border-radius: 14px;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid #e2e8f0;
    font-size: 15px !important;
    line-height: 1.5 !important;
}

.tour-details-page .daywise-places li::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: linear-gradient(145deg, #13b6ec, #0ea5e9);
    box-shadow: 0 0 0 4px rgba(19, 182, 236, 0.15);
}

.tour-details-page .sightseeing-panel {
    padding: 14px 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(19, 182, 236, 0.08), rgba(14, 165, 233, 0.03));
    border: 1px solid rgba(19, 182, 236, 0.18);
}

.tour-details-page .sightseeing-panel-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #0b7eaa;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tour-details-page .sightseeing-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tour-details-page .sightseeing-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(19, 182, 236, 0.28);
    color: #0f4c5c;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.tour-details-page .sightseeing-tag i {
    color: #13b6ec;
    font-size: 12px;
}

.tour-details-page .sightseeing-tag:hover {
    transform: translateY(-1px);
    border-color: rgba(19, 182, 236, 0.5);
}

.tour-details-page .itinerary-placeholder {
    color: #64748b;
    font-size: 15px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
}

/* Detailed timeline itinerary */
.tour-details-page .itinerary-timeline {
    position: relative;
    display: grid;
    gap: 0;
    padding-left: 4px;
}

.tour-details-page .itinerary-timeline-block {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 0 0 22px;
    background: transparent;
    border: none;
    border-radius: 0;
}

.tour-details-page .itinerary-timeline-block:last-child {
    padding-bottom: 4px;
}

.tour-details-page .itinerary-timeline-block .timeline-marker {
    position: relative;
    display: flex;
    justify-content: center;
}

.tour-details-page .itinerary-timeline-block .timeline-marker::before {
    content: "";
    position: absolute;
    top: 38px;
    bottom: -22px;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(19, 182, 236, 0.55), rgba(19, 182, 236, 0.08));
}

.tour-details-page .itinerary-timeline-block:last-child .timeline-marker::before {
    display: none;
}

.tour-details-page .itinerary-timeline-block .timeline-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(145deg, #13b6ec, #0284c7);
    box-shadow:
        0 0 0 6px rgba(19, 182, 236, 0.12),
        0 8px 18px rgba(19, 182, 236, 0.28);
    position: relative;
    z-index: 1;
    font-size: 15px;
}

.tour-details-page .itinerary-timeline-block .timeline-content {
    padding: 14px 16px 16px;
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(241, 250, 255, 0.95));
    border: 1px solid rgba(19, 182, 236, 0.16);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    min-width: 0;
    overflow-wrap: anywhere;
}

.tour-details-page .itinerary-timeline-block:hover .timeline-content {
    transform: translateY(-2px);
    border-color: rgba(19, 182, 236, 0.35);
    box-shadow: 0 14px 32px rgba(19, 182, 236, 0.12);
}

.tour-details-page .timeline-slot-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(19, 182, 236, 0.1);
    color: #0b7eaa;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tour-details-page .timeline-slot-title,
.tour-details-page .itinerary-timeline-block h4.timeline-slot-title,
.tour-details-page .itinerary-timeline-block h5.timeline-slot-title {
    margin: 0 0 6px;
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: none;
    line-height: 1.35;
}

.tour-details-page .timeline-slot-desc {
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}

.tour-details-page .timeline-slot-desc + .sightseeing-tags,
.tour-details-page .timeline-slot-title + .sightseeing-tags {
    margin-top: 12px;
}

.tour-details-page .itinerary-timeline-block.slot-morning .timeline-dot {
    background: linear-gradient(145deg, #38bdf8, #0ea5e9);
}

.tour-details-page .itinerary-timeline-block.slot-afternoon .timeline-dot {
    background: linear-gradient(145deg, #f59e0b, #ea580c);
    box-shadow:
        0 0 0 6px rgba(245, 158, 11, 0.14),
        0 8px 18px rgba(234, 88, 12, 0.22);
}

.tour-details-page .itinerary-timeline-block.slot-evening .timeline-dot {
    background: linear-gradient(145deg, #fb923c, #db2777);
    box-shadow:
        0 0 0 6px rgba(251, 146, 60, 0.14),
        0 8px 18px rgba(219, 39, 119, 0.18);
}

.tour-details-page .itinerary-timeline-block.slot-night .timeline-dot {
    background: linear-gradient(145deg, #6366f1, #1e293b);
    box-shadow:
        0 0 0 6px rgba(99, 102, 241, 0.14),
        0 8px 18px rgba(30, 41, 59, 0.22);
}

.tour-details-page .itinerary-timeline-block.slot-full_day .timeline-dot {
    background: linear-gradient(145deg, #14b8a6, #0ea5e9);
}

.tour-details-page .inclusion {
    background: #eefaf3;
    border: 1px solid #c8ecd8;
}

.tour-details-page .exclusion {
    background: #fff3f3;
    border: 1px solid #f3d1d1;
}

.tour-details-page .inclusion h3,
.tour-details-page .exclusion h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.tour-details-page .inclusion h3 {
    color: #006d5b;
}

.tour-details-page .exclusion h3 {
    color: #c2183b;
}

.tour-details-page .inclusion-exclusion-content ul {
    list-style: disc;
    padding-left: 1.25rem;
}

.tour-details-page {
    --tour-price-sticky-top: 140px;
    overflow: visible;
}

.tour-details-page .tour-details-layout {
    align-items: stretch;
}

.tour-booking-col {
    align-self: stretch;
}

.tour-booking-sidebar {
    position: sticky;
    top: var(--tour-price-sticky-top, 140px);
    z-index: 30;
    overflow: visible;
}

.tour-details-page .booking-card {
    position: relative;
    overflow: visible;
}

.tour-details-page .booking-card .price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.tour-details-page .old-price {
    color: #e11d48;
    background: rgba(225, 29, 72, 0.1);
    text-decoration: line-through;
    text-decoration-color: #be123c;
    text-decoration-thickness: 2px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    padding: 0.12rem 0.45rem;
    border-radius: 8px;
}

.tour-details-page .new-price {
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: bold;
    color: #16203d;
    line-height: 1;
}

.tour-details-page .person {
    color: #6c7a95;
}

.tour-details-page .save {
    color: #00a16a;
    font-size: 16px;
    font-weight: bold;
    margin: 1rem 0;
}

.tour-details-page .booking-card label {
    display: block;
    font-size: 13px;
    color: #5d6d89;
    font-weight: 700;
    margin-bottom: 6px;
}

.tour-details-page .booking-card #tourEndDate {
    background: #f4f6fb;
    color: #2b3a55;
    pointer-events: none;
    cursor: default;
}

.tour-details-page .tour-date-hint,
.tour-details-page .tour-date-range {
    color: #6b7a94;
    font-size: 12px;
    line-height: 1.4;
}

.tour-details-page .tour-date-range {
    color: #1f8a4c;
    font-weight: 600;
}

.tour-details-page .traveler-field {
    position: relative;
    cursor: pointer;
    z-index: 5;
}

.tour-details-page .traveler-field:has(.traveler-dropdown.show) {
    z-index: 50;
}

.tour-details-page .traveler-select {
    display: flex;
    align-items: center;
    gap: .5rem;
    pointer-events: none;
    appearance: none;
    background-image: none;
    padding-right: 0.75rem;
}

.tour-details-page .traveler-chevron {
    margin-left: auto;
    color: #8b98b4;
    pointer-events: none;
}

.tour-details-page .book-btn {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 40px;
    background: #22a5eb;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.tour-details-page .book-btn:hover {
    color: #fff;
    opacity: .92;
}

.tour-details-page .note {
    text-align: center;
    color: #8d97b3;
    margin-top: 18px;
    font-size: 14px;
}

.tour-details-page .traveler-dropdown {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    margin-top: 8px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .18);
    padding: 16px 16px 18px;
    display: none;
    z-index: 40;
}

.tour-details-page .traveler-dropdown.show {
    display: block;
}

.tour-details-page .counter {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    justify-content: center;
    background: #e5e5e55e;
}

.tour-details-page .counter button {
    width: 50px;
    border: none;
    background: #d7d8d8;
    color: #0e0e0e;
    font-size: 24px;
    cursor: pointer;
}

.tour-details-page .counter span {
    width: 60px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.tour-details-page .enquiry-card {
    background: #edf8ff;
    border: 1px solid #9ed4ff;
}

.tour-details-page .enquiry-card h3 {
    font-size: clamp(17px, 1.25vw, 22px);
    font-weight: 700;
    color: #1d2940;
    margin-bottom: 25px;
}

.tour-details-page .hotel-card {
    display: flex;
    border: 1px solid #cfd8e5;
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    transition: .3s;
    height: 100%;
}

.tour-details-page .hotel-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.tour-details-page .hotel-image {
    width: 160px;
    flex-shrink: 0;
}

.tour-details-page .hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 140px;
}

.tour-details-page .hotel-content {
    flex: 1;
    padding: 1rem;
}

.tour-details-page .hotel-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.tour-details-page .hotel-content h3 {
    font-size: clamp(16px, 1.4vw, 22px);
    margin-bottom: 8px;
    color: #12284c;
}

.tour-details-page .hotel-rating {
    color: #FFC107;
    font-size: 18px;
    margin-bottom: 8px;
}

@media (max-width: 991.98px) {
    .tour-details-page .container,
    .tour-package-section .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .tour-booking-sidebar {
        position: static;
        top: auto;
        overflow: visible;
        margin-top: 1.75rem;
        padding-left: 0 !important;
    }

    .tour-details-page .tourAccordion .itinerary-day-item:hover {
        transform: none;
    }

    .tour-details-page .itinerary-timeline-block:hover .timeline-content {
        transform: none;
    }

    .hilight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .destination-details-swiper {
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .page-info {
        height: 220px;
    }

    .page-info-content {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .package-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem;
    }

    .tour-details-page .itinerary-section-eyebrow {
        font-size: 11px;
        padding: 5px 10px 5px 8px;
    }

    .tour-details-page .itinerary-section-sub {
        font-size: 14px;
    }

    .tour-details-page .tourAccordion .accordion-button {
        padding: 12px;
    }

    .tour-details-page .tourAccordion .accordion-collapse .accordion-body {
        padding: 6px 12px 14px;
    }

    .tour-details-page .tourAccordion .day-number {
        width: 48px;
        min-width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .tour-details-page .tourAccordion .day-number-label {
        font-size: 8px;
    }

    .tour-details-page .tourAccordion .day-number-value {
        font-size: 15px;
    }

    .tour-details-page .tourAccordion .day-header {
        gap: 10px;
    }

    .tour-details-page .tourAccordion .day-title {
        font-size: 15px;
        line-height: 1.3;
    }

    .tour-details-page .tourAccordion .day-meta {
        font-size: 11px;
    }

    .tour-details-page .tourAccordion .day-toggle-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .tour-details-page .tourAccordion .accordion-body p,
    .tour-details-page .tourAccordion .accordion-body li,
    .tour-details-page .daywise-desc,
    .tour-details-page .timeline-slot-desc {
        font-size: 14px;
        line-height: 1.65;
    }

    .tour-details-page .itinerary-timeline {
        padding-left: 0;
    }

    .tour-details-page .itinerary-timeline-block {
        grid-template-columns: 30px 1fr;
        gap: 8px;
        padding-bottom: 16px;
    }

    .tour-details-page .itinerary-timeline-block .timeline-dot {
        width: 30px;
        height: 30px;
        font-size: 12px;
        box-shadow:
            0 0 0 4px rgba(19, 182, 236, 0.12),
            0 6px 14px rgba(19, 182, 236, 0.22);
    }

    .tour-details-page .itinerary-timeline-block .timeline-marker::before {
        top: 30px;
        bottom: -16px;
    }

    .tour-details-page .itinerary-timeline-block .timeline-content {
        padding: 12px;
        border-radius: 14px;
        min-width: 0;
    }

    .tour-details-page .timeline-slot-label {
        font-size: 10px;
        padding: 3px 8px;
    }

    .tour-details-page .timeline-slot-title,
    .tour-details-page .itinerary-timeline-block h4.timeline-slot-title,
    .tour-details-page .itinerary-timeline-block h5.timeline-slot-title {
        font-size: 15px;
    }

    .tour-details-page .sightseeing-tag {
        font-size: 12px;
        padding: 6px 10px;
        max-width: 100%;
        word-break: break-word;
    }

    .tour-details-page .sightseeing-panel {
        padding: 12px;
    }

    .tour-details-page .new-price {
        font-size: 28px;
    }

    .tour-details-page .book-btn {
        font-size: 15px;
        padding: 12px 16px;
    }

    .tour-details-page .traveler-dropdown {
        left: 0;
        right: 0;
        padding: 16px;
    }

    .tour-details-page .hotel-card {
        flex-direction: column;
    }

    .tour-details-page .hotel-image {
        width: 100%;
        height: 160px;
    }

    .tour-hotel-option {
        flex-direction: column;
        min-height: 0;
    }

    .tour-hotel-option .hotel-image {
        width: 100%;
        flex: 0 0 160px;
        height: 160px;
    }

    .tour-details-page .hotel-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tour-details-page .inclusion h3,
    .tour-details-page .exclusion h3 {
        font-size: 17px;
    }
}

@media (max-width: 575.98px) {
    .page-info {
        height: 200px;
    }

    .page-info-title {
        font-size: clamp(20px, 6.5vw, 28px);
    }

    .package-info li {
        font-size: 0.8rem;
        padding: 0.2rem 0.45rem;
    }

    .hilight-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
    }

    .hilight-grid .card .card-body {
        padding: 0.75rem;
    }

    .hilight-grid .card strong {
        font-size: 0.95rem;
    }

    .tour-details-page .tourAccordion .itinerary-day-item {
        border-radius: 16px !important;
        margin-bottom: 12px;
    }

    .tour-details-page .tourAccordion .accordion-button {
        padding: 10px;
    }

    .tour-details-page .tourAccordion .day-number {
        width: 44px;
        min-width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .tour-details-page .tourAccordion .day-title-wrap {
        padding-right: 2px;
    }

    .tour-details-page .itinerary-timeline-block {
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 12px;
    }

    .tour-details-page .itinerary-timeline-block .timeline-marker {
        display: none;
    }

    .tour-details-page .itinerary-timeline-block .timeline-content {
        padding: 12px;
    }

    .tour-details-page .sightseeing-tags {
        gap: 6px;
    }

    .tour-details-page .counter button {
        width: 42px;
        font-size: 20px;
    }

    .tour-details-page .counter span {
        width: 48px;
        font-size: 16px;
    }

    .tour-details-page .enquiry-card h3 {
        margin-bottom: 16px;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .tour-details-page .itinerary-timeline-block {
        grid-template-columns: 38px 1fr;
    }

    .tour-details-page .itinerary-timeline-block .timeline-dot {
        width: 34px;
        height: 34px;
    }

    .hilight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .tour-details-page .tourAccordion .day-title {
        font-size: 16px;
    }

    .tour-details-page .itinerary-timeline-block .timeline-content {
        padding: 13px 14px;
    }
}

/* =========================================================
   Tour Details — Premium Modern Redesign
   ========================================================= */

.tour-hero {
    --tour-hero-header-offset: 72px;
    position: relative;
    min-height: clamp(420px, 72vh, 680px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
    margin-top: var(--tour-hero-header-offset);
    isolation: isolate;
}

.tour-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.tour-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    animation: tourHeroKenBurns 22s ease-in-out infinite alternate;
}

.tour-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 24, 40, 0.15) 0%, rgba(8, 24, 40, 0.35) 40%, rgba(8, 24, 40, 0.88) 100%),
        linear-gradient(90deg, rgba(8, 24, 40, 0.45) 0%, transparent 55%);
}

.tour-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 4rem;
    padding-bottom: clamp(2rem, 5vh, 3.5rem);
}

.tour-hero-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 0.55rem;
    margin-bottom: 1rem;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}

.tour-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.tour-hero-breadcrumb a:hover {
    color: #fff;
}

.tour-hero-breadcrumb .is-current {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.tour-hero-title {
    margin: 0 0 1rem;
    max-width: 18ch;
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    animation: tourHeroFadeUp 0.7s ease both;
}

.tour-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    list-style: none;
    margin: 0 0 1.35rem;
    padding: 0;
    animation: tourHeroFadeUp 0.7s ease 0.08s both;
}

.tour-hero-meta li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 600;
}

.tour-hero-meta i {
    color: #7dd3fc;
    font-size: 12px;
}

.tour-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    animation: tourHeroFadeUp 0.7s ease 0.14s both;
}

.tour-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.8rem 1.25rem;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tour-hero-btn:hover {
    transform: translateY(-1px);
}

.tour-hero-btn-primary {
    background: #13b6ec;
    color: #fff;
    border: 1px solid #13b6ec;
    box-shadow: 0 10px 28px rgba(19, 182, 236, 0.35);
}

.tour-hero-btn-primary:hover {
    background: #0ea5e9;
    color: #fff;
    border-color: #0ea5e9;
}

.tour-hero-btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

.tour-hero-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.tour-hero-price-chip {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.5rem;
    padding: 0.55rem 0.9rem;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.tour-hero-price-chip .was {
    font-size: 16px;
    font-weight: 700;
    color: #fecdd3;
    background: rgba(225, 29, 72, 0.42);
    text-decoration: line-through;
    text-decoration-color: #fb7185;
    text-decoration-thickness: 2px;
    padding: 0.12rem 0.45rem;
    border-radius: 8px;
}

.tour-hero-price-chip .now {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.tour-hero-price-chip .per {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.tour-hero-price-chip .save-pill {
    margin-left: 0.25rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.25);
    border: 1px solid rgba(52, 211, 153, 0.45);
    color: #a7f3d0;
    font-size: 11px;
    font-weight: 700;
}

@keyframes tourHeroKenBurns {
    from { transform: scale(1.04) translate3d(0, 0, 0); }
    to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

@keyframes tourHeroFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Sticky section nav */
.tour-sticky-nav {
    --tour-sticky-top: 72px;
    position: -webkit-sticky;
    position: sticky;
    top: var(--tour-sticky-top);
    z-index: 1020;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.tour-sticky-nav.is-fixed {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--tour-sticky-top);
}

.tour-sticky-nav-spacer {
    display: none;
    width: 100%;
}

.tour-sticky-nav-spacer.is-active {
    display: block;
}

.tour-sticky-nav-track {
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0.55rem 0;
}

.tour-sticky-nav-track::-webkit-scrollbar {
    display: none;
}

.tour-sticky-nav-link {
    flex: 0 0 auto;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.tour-sticky-nav-link:hover {
    color: #0f172a;
    background: rgba(19, 182, 236, 0.08);
}

.tour-sticky-nav-link.is-active {
    color: #0369a1;
    background: rgba(19, 182, 236, 0.14);
}

/* Overview / section chrome */
.tour-details-modern {
    padding-top: 2rem;
}

.tour-section-head {
    margin-bottom: 1rem;
}

.tour-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
    color: #0b7eaa;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tour-overview-panel {
    padding: 1.25rem 1.35rem 1.5rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.04);
}

.tour-about-text {
    color: #334155;
    line-height: 1.7;
}

.tour-highlight-chips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.tour-highlight-chip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #f8fafc, #f1f5f9);
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.tour-highlight-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(19, 182, 236, 0.35);
}

.tour-highlight-chip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(19, 182, 236, 0.12);
    color: #0284c7;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.tour-highlight-chip strong {
    display: block;
    font-size: 14px;
    color: #0f172a;
    line-height: 1.3;
}

.tour-highlight-chip small {
    display: block;
    margin-top: 2px;
    color: #64748b;
    font-size: 12px;
}

.tour-inclusions-strip {
    margin-top: 1.25rem;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(19, 182, 236, 0.08), rgba(14, 165, 233, 0.03));
    border: 1px solid rgba(19, 182, 236, 0.16);
}

.tour-inclusions-strip-label {
    margin-bottom: 0.7rem;
    color: #0b7eaa;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tour-inclusions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tour-inclusions-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(19, 182, 236, 0.22);
    color: #0f4c5c;
    font-size: 13px;
    font-weight: 600;
}

.tour-inclusions-list i {
    color: #13b6ec;
}

.tour-gallery-wrap {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.tour-gallery-swiper .swiper-slide img {
    width: 100%;
    height: clamp(200px, 32vw, 320px);
    object-fit: cover;
    display: block;
}

.tour-block {
    scroll-margin-top: 150px;
}

#tourOverview,
#tourItinerary,
#tourStay,
#tourReviews,
#tourFaqs {
    scroll-margin-top: 150px;
}

/* Booking / enquiry glass */
.tour-details-modern .tour-booking-glass,
.tour-details-modern .tour-enquiry-glass {
    position: relative;
    isolation: isolate;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
    overflow: visible;
}

.tour-details-modern .tour-booking-glass::before,
.tour-details-modern .tour-enquiry-glass::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    pointer-events: none;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.tour-details-modern .tour-booking-glass {
    padding: 1.35rem 1.25rem 1.2rem;
    overflow: visible;
}

.tour-booking-marquee {
    margin: -1.35rem -1.25rem 1rem;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    border-bottom: 1px solid rgba(19, 182, 236, 0.2);
    background: linear-gradient(90deg, #0284c7 0%, #13b6ec 45%, #0ea5e9 100%);
    color: #fff;
}

.tour-booking-marquee__inner {
    display: flex;
    align-items: center;
    min-height: 36px;
    padding: 0.45rem 0;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.tour-booking-marquee__track {
    display: flex;
    width: max-content;
    animation: tourBookingMarquee 22s linear infinite;
}

.tour-booking-marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding-right: 3rem;
    white-space: nowrap;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.tour-booking-marquee__item .bi {
    font-size: 0.82rem;
    opacity: 0.95;
}

.tour-booking-marquee:hover .tour-booking-marquee__track {
    animation-play-state: paused;
}

@keyframes tourBookingMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .tour-booking-marquee__track {
        animation: none;
        width: 100%;
        justify-content: center;
    }

    .tour-booking-marquee__item:last-child {
        display: none;
    }
}

.tour-details-modern .tour-booking-glass .new-price {
    letter-spacing: -0.02em;
}

.tour-details-modern .tour-booking-glass .book-btn {
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(19, 182, 236, 0.28);
}

.tour-details-modern .tour-enquiry-glass h3 {
    margin-bottom: 0.25rem;
}

.tour-enquiry-sub {
    margin: 0 0 1rem;
    color: #64748b;
    font-size: 13px;
}

.tour-policy-card {
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.tour-hotel-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tour-hotel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.tour-faq-section .tour-section-head {
    text-align: left;
}

.tour-faq-shell {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.tour-faq-accordion {
    --bs-accordion-border-width: 0;
    --bs-accordion-bg: transparent;
    --bs-accordion-inner-border-radius: 14px;
}

.tour-faq-accordion .accordion-item {
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.tour-faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.tour-faq-accordion .accordion-button {
    font-weight: 600;
    color: #0f172a;
    padding: 1rem 1.15rem;
    box-shadow: none;
}

.tour-faq-accordion .accordion-button:not(.collapsed) {
    color: #0369a1;
    background: rgba(19, 182, 236, 0.08);
    box-shadow: none;
}

.tour-faq-accordion .accordion-body {
    padding: 0 1.15rem 1.1rem;
    color: #475569;
}

.tour-stay-accordion .accordion-item {
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: 0.65rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.tour-stay-accordion .accordion-button {
    font-weight: 600;
    align-items: center;
}

.tour-stay-accordion .accordion-button:not(.collapsed) {
    color: #0369a1;
    background: rgba(19, 182, 236, 0.08);
    box-shadow: none;
}

.tour-stay-accordion-title {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    text-align: left;
    padding-right: 0.75rem;
}

.tour-stay-city {
    font-size: 1rem;
    line-height: 1.3;
}

.tour-stay-meta {
    font-size: 0.82rem;
    font-weight: 500;
    color: #64748b;
}

.tour-stay-accordion .accordion-button:not(.collapsed) .tour-stay-meta {
    color: #0369a1;
}

.tour-stay-accordion .accordion-body {
    background: #f8fafc;
}

.tour-stay-pick-hint {
    font-size: 0.9rem;
    color: #475569;
}

.tour-star-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.tour-star-filter {
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    color: #334155;
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    font-size: 0.82rem;
    font-weight: 600;
}

.tour-star-filter span {
    margin-left: 0.3rem;
    color: #64748b;
    font-weight: 500;
}

.tour-star-filter.is-active {
    background: #0ea5e9;
    border-color: #0ea5e9;
    color: #fff;
}

.tour-star-filter.is-active span {
    color: rgba(255, 255, 255, 0.85);
}

.tour-hotel-avail {
    margin-top: auto;
    padding: 0.7rem 0.85rem;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 0.8rem;
    line-height: 1.35;
    color: #475569;
    min-height: 4.75rem;
    overflow: hidden;
}

.tour-hotel-avail[hidden] {
    display: none !important;
}

.tour-hotel-avail-title {
    display: block;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.15rem;
}

.tour-hotel-avail-text {
    display: block;
    color: #64748b;
}

.tour-hotel-avail strong {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.95rem;
    color: #0369a1;
}

.tour-hotel-avail.is-ok strong {
    margin-top: 0;
}

.tour-hotel-avail.is-ok .tour-hotel-avail-title {
    color: #047857;
}

.tour-hotel-avail.is-warn {
    background: #fff7ed;
}

.tour-hotel-avail.is-warn .tour-hotel-avail-title {
    color: #c2410c;
}

.tour-hotel-avail.is-error {
    background: #fef2f2;
}

.tour-hotel-avail.is-error .tour-hotel-avail-title {
    color: #b91c1c;
}

.tour-hotel-avail.is-loading {
    background: #f1f5f9;
}

.stay-hotel-col {
    display: flex;
}

.tour-hotel-option {
    cursor: pointer;
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 168px;
}

.tour-hotel-option .hotel-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.tour-hotel-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tour-hotel-option.is-selected {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.28);
}

.tour-hotel-pick-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 4px 8px;
}

.tour-hotel-option.is-selected .tour-hotel-pick-badge {
    background: #0284c7;
}

.tour-hotel-option .hotel-image {
    position: relative;
    width: 160px;
    flex: 0 0 160px;
    background: #e8eef5 url('../img/no-preview.svg') center / cover no-repeat;
}

.tour-hotel-option .hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tour-stay-picks label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: #64748b;
    margin-bottom: 0.35rem;
}

.tour-stay-picks-list {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
    color: #0f172a;
}

.tour-stay-picks-list li {
    padding: 0.2rem 0;
}

/* Mobile sticky CTA */
.tour-mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.tour-mobile-cta.is-hidden {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
}

.tour-mobile-cta-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25rem 0.4rem;
    min-width: 0;
}

.tour-mobile-cta-price .was {
    font-size: 15px;
    font-weight: 700;
    color: #e11d48;
    background: rgba(225, 29, 72, 0.1);
    text-decoration: line-through;
    text-decoration-color: #be123c;
    text-decoration-thickness: 2px;
    padding: 0.08rem 0.35rem;
    border-radius: 6px;
}

.tour-mobile-cta-price .now {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
}

.tour-mobile-cta-price .per {
    font-size: 12px;
    color: #64748b;
}

.tour-mobile-cta-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    background: #13b6ec;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(19, 182, 236, 0.35);
}

.tour-mobile-cta-btn:hover {
    background: #0ea5e9;
    color: #fff;
}

@media (max-width: 991.98px) {
    .tour-mobile-cta {
        display: flex;
    }

    body:has(.tour-mobile-cta) {
        padding-bottom: 76px;
    }

    .tour-hero {
        min-height: clamp(360px, 62vh, 520px);
        margin-top: 64px;
    }

    .tour-hero-title {
        max-width: none;
    }

    .tour-sticky-nav {
        --tour-sticky-top: 64px;
    }

    .tour-booking-sidebar {
        position: static;
        top: auto;
        overflow: visible;
    }

    .tour-overview-panel {
        padding: 1rem;
    }
}

@media (max-width: 575.98px) {
    .tour-hero {
        min-height: 420px;
    }

    .tour-hero-content {
        padding-top: 3rem;
        padding-bottom: 1.5rem;
    }

    .tour-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .tour-hero-btn,
    .tour-hero-price-chip {
        justify-content: center;
        text-align: center;
    }

    .tour-highlight-chips {
        grid-template-columns: 1fr 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tour-hero-img {
        animation: none;
        transform: none;
    }

    .tour-hero-title,
    .tour-hero-meta,
    .tour-hero-actions {
        animation: none;
    }

    .tour-highlight-chip,
    .tour-hotel-card,
    .tour-hero-btn {
        transition: none;
    }
}

/* Destination details — modern futuristic travel layout */
.destination-details-page {
    --dd-ink: #0b1726;
    --dd-muted: #5b6b7c;
    --dd-line: rgba(15, 23, 42, 0.08);
    --dd-cyan: #13b6ec;
    --dd-cyan-deep: #0a8fb8;
    --dd-surface: rgba(255, 255, 255, 0.78);
    --dd-shadow: 0 20px 50px rgba(11, 23, 38, 0.1);
    background:
        radial-gradient(circle at 0% 0%, rgba(19, 182, 236, 0.08), transparent 28%),
        radial-gradient(circle at 100% 12%, rgba(14, 116, 144, 0.06), transparent 24%),
        #f5f8fb;
    color: var(--dd-ink);
    overflow: clip;
    scroll-behavior: smooth;
}

html:has(.destination-details-page),
html:has(.attraction-details-page) {
    scroll-behavior: smooth;
}

.destination-details-page .dd-hero {
    position: relative;
    min-height: min(78vh, 640px);
    display: flex;
    align-items: flex-end;
    padding: 7.5rem 0 5.5rem;
    color: #fff;
    isolation: isolate;
}

.destination-details-page .dd-hero-media {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.destination-details-page .dd-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    animation: ddHeroDrift 22s ease-in-out infinite alternate;
}

.destination-details-page .dd-hero-media:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(105deg, rgba(6, 18, 32, 0.88) 8%, rgba(6, 18, 32, 0.55) 48%, rgba(6, 18, 32, 0.28) 100%),
        linear-gradient(180deg, rgba(6, 18, 32, 0.2) 0%, rgba(6, 18, 32, 0.78) 100%);
}

.destination-details-page .dd-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 78%);
    opacity: 0.35;
    pointer-events: none;
}

.destination-details-page .dd-hero-glow {
    position: absolute;
    width: 42vw;
    height: 42vw;
    left: -8%;
    bottom: -18%;
    z-index: 2;
    background: radial-gradient(circle, rgba(19, 182, 236, 0.45), transparent 68%);
    filter: blur(8px);
    pointer-events: none;
    animation: ddGlowPulse 8s ease-in-out infinite alternate;
}

.destination-details-page .dd-hero-inner {
    width: 100%;
}

.destination-details-page .dd-hero-copy {
    max-width: 720px;
    animation: ddRiseIn 0.8s ease both;
}

.destination-details-page .dd-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.85rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #dff7ff;
    background: rgba(19, 182, 236, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.destination-details-page .dd-hero-title {
    margin: 0;
    font-size: clamp(2rem, 4.8vw, 3.6rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.destination-details-page .dd-hero-support {
    margin: 1rem 0 0;
    max-width: 540px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.6;
}

.destination-details-page .dd-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.destination-details-page .dd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 46px;
    padding: 0.7rem 1.25rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.destination-details-page .dd-btn-primary {
    background: linear-gradient(135deg, #1cc4f7, #0ea5d2);
    color: #fff;
    box-shadow: 0 14px 30px rgba(19, 182, 236, 0.35);
}

.destination-details-page .dd-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(19, 182, 236, 0.45);
}

.destination-details-page .dd-btn-ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
}

.destination-details-page .dd-btn-ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.destination-details-page .dd-btn-outline {
    color: var(--dd-cyan-deep);
    background: #fff;
    border-color: rgba(19, 182, 236, 0.35);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.destination-details-page .dd-btn-outline:hover {
    background: var(--dd-cyan);
    border-color: var(--dd-cyan);
    color: #fff;
}

.destination-details-page .dd-hero-meta {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1.4rem 0 0;
    padding: 0;
}

.destination-details-page .dd-hero-meta li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.destination-details-page .dd-hero-meta i {
    color: #7dd8f5;
}

.destination-details-page .dd-stats-wrap {
    margin-top: -2.25rem;
    position: relative;
    z-index: 3;
    padding: 0 0 0.5rem;
}

.destination-details-page .dd-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--dd-shadow);
    backdrop-filter: blur(16px);
    animation: ddRiseIn 0.9s ease 0.1s both;
}

.destination-details-page .dd-stat {
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(19, 182, 236, 0.08), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(19, 182, 236, 0.1);
}

.destination-details-page .dd-stat strong {
    display: block;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.1;
    color: var(--dd-ink);
}

.destination-details-page .dd-stat span {
    display: block;
    margin-top: 0.25rem;
    color: var(--dd-muted);
    font-size: 0.86rem;
    font-weight: 600;
}

.destination-details-page .dd-section {
    padding-top: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.destination-details-page .dd-section-head {
    margin-bottom: 1.6rem;
}

.destination-details-page .dd-section-head-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
}

.destination-details-page .dd-eyebrow {
    margin: 0 0 0.45rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dd-cyan-deep);
}

.destination-details-page .dd-title {
    margin: 0;
    font-size: clamp(1.5rem, 2.6vw, 2.15rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--dd-ink);
}

.destination-details-page .dd-sub,
.destination-details-page .dd-empty {
    color: var(--dd-muted);
}

.destination-details-page .dd-sub {
    margin: 0.4rem 0 0;
}

.destination-details-page .dd-glass {
    background: var(--dd-surface);
    border: 1px solid var(--dd-line);
    border-radius: 28px;
    box-shadow: var(--dd-shadow);
    backdrop-filter: blur(14px);
}

.destination-details-page .dd-about-card {
    padding: clamp(1.25rem, 2.5vw, 1.85rem);
}

.destination-details-page .dd-about-text {
    color: #334155;
    line-height: 1.7;
}

.destination-details-page .dd-link-btn {
    margin-top: 0.35rem;
}

.destination-details-page .dd-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.35rem;
}

.destination-details-page .dd-highlight {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(19, 182, 236, 0.1), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(19, 182, 236, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.destination-details-page .dd-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(19, 182, 236, 0.12);
}

.destination-details-page .dd-highlight-dot {
    width: 10px;
    height: 10px;
    margin-top: 0.35rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #1cc4f7, #0ea5d2);
    box-shadow: 0 0 0 5px rgba(19, 182, 236, 0.12);
    flex: 0 0 auto;
}

.destination-details-page .dd-highlight strong {
    display: block;
    font-size: 0.98rem;
    color: var(--dd-ink);
}

.destination-details-page .dd-highlight small {
    display: block;
    margin-top: 0.2rem;
    color: var(--dd-muted);
}

.destination-details-page .dd-gallery-card {
    padding: 0.7rem;
    overflow: hidden;
}

.destination-details-page .dd-gallery-swiper,
.destination-details-page .destination-details-swiper {
    height: 100%;
    min-height: 340px;
    border-radius: 22px;
    overflow: hidden;
}

.destination-details-page .dd-gallery-swiper img,
.destination-details-page .destination-details-swiper img {
    width: 100%;
    height: min(430px, 54vh);
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.destination-details-page .dd-attractions-section {
    background:
        radial-gradient(circle at top right, rgba(19, 182, 236, 0.14), transparent 32%),
        linear-gradient(180deg, #eaf6fb 0%, #f5f8fb 55%, #ffffff 100%);
}

.destination-details-page .attraction-item {
    display: flex;
}

.destination-details-page .attraction-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: #0b1726;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.destination-details-page .attraction-card:hover,
.destination-details-page .attraction-card:focus-visible {
    transform: translateY(-8px);
    border-color: rgba(19, 182, 236, 0.55);
    box-shadow:
        0 26px 52px rgba(15, 23, 42, 0.22),
        0 0 0 1px rgba(19, 182, 236, 0.25);
    color: #fff;
}

.destination-details-page .attraction-card-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.destination-details-page .attraction-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.destination-details-page .attraction-card:hover .attraction-card-media img {
    transform: scale(1.08);
}

.destination-details-page .attraction-card-media:after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 18, 32, 0.02) 30%, rgba(8, 18, 32, 0.78) 72%, rgba(8, 18, 32, 0.96) 100%),
        linear-gradient(135deg, rgba(19, 182, 236, 0.22), transparent 48%);
    pointer-events: none;
}

.destination-details-page .attraction-card-shine {
    position: absolute;
    inset: auto -28% 38% auto;
    width: 55%;
    height: 55%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 68%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 1;
}

.destination-details-page .attraction-card:hover .attraction-card-shine {
    opacity: 1;
}

.destination-details-page .attraction-card-body {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.7rem;
    min-height: 42%;
    padding: 1.1rem 1.05rem 1.05rem;
}

.destination-details-page .attraction-card-title {
    margin: 0;
    color: #fff;
    font-size: clamp(1rem, 1.15vw, 1.2rem);
    font-weight: 700;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: calc(1.3em * 2);
}

.destination-details-page .attraction-card-meta {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    min-height: 1.75rem;
}

.destination-details-page .attraction-card-chip,
.destination-details-page .attraction-card-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    backdrop-filter: blur(10px);
}

.destination-details-page .attraction-card-chip {
    color: #e8f8ff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.destination-details-page .attraction-card-rating {
    color: #fff7d6;
    background: rgba(255, 193, 7, 0.18);
    border: 1px solid rgba(255, 193, 7, 0.28);
}

.destination-details-page .attraction-card-cta {
    margin-left: auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(19, 182, 236, 0.95);
    color: #fff;
    box-shadow: 0 8px 18px rgba(19, 182, 236, 0.35);
    transition: transform 0.3s ease, background 0.3s ease;
}

.destination-details-page .attraction-card:hover .attraction-card-cta {
    transform: rotate(45deg) scale(1.05);
    background: #05a2d6;
}

.destination-details-page .dd-packages-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f3f8fb 100%);
}

.destination-details-page .dd-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    min-width: min(100%, 420px);
}

.destination-details-page .dd-filter-form .form-select {
    flex: 1 1 180px;
    border-radius: 14px;
    border-color: rgba(15, 23, 42, 0.12);
    min-height: 46px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.destination-details-page .dd-package-grid .tour-package {
    border: 1px solid var(--dd-line);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-details-page .dd-package-grid .tour-package:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 44px rgba(15, 23, 42, 0.14);
}

.destination-details-page .dd-season-section {
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 170, 80, 0.14), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(19, 182, 236, 0.14), transparent 26%),
        #eef6fb;
}

.destination-details-page .dd-season-card {
    padding: 1.4rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--dd-shadow);
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease;
}

.destination-details-page .dd-season-card:hover {
    transform: translateY(-4px);
}

.destination-details-page .dd-season-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.destination-details-page .dd-season-top h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 760;
}

.destination-details-page .dd-season-top small {
    color: var(--dd-muted);
}

.destination-details-page .dd-season-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.45rem;
}

.destination-details-page .dd-season-peak .dd-season-icon {
    background: #ffedd5;
    color: #ea580c;
}

.destination-details-page .dd-season-off .dd-season-icon {
    background: #dbeafe;
    color: #2563eb;
}

.destination-details-page .dd-season-card p {
    color: #475569;
    margin-bottom: 1rem;
}

.destination-details-page .dd-season-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.destination-details-page .dd-season-tags li {
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #f1f5f9;
    font-size: 0.86rem;
    font-weight: 600;
    color: #334155;
}

.destination-details-page .dd-testimonial-section {
    background: #fff;
}

.destination-details-page .dd-testimonial-card {
    border: 1px solid var(--dd-line);
    border-radius: 22px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.destination-details-page .dd-faq-section {
    background: linear-gradient(180deg, #f5f8fb 0%, #eef5f9 100%);
}

.destination-details-page .dd-faq-shell {
    max-width: 860px;
}

.destination-details-page .destination-faq-accordion .accordion-item {
    border: 1px solid var(--dd-line);
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 0.8rem;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.destination-details-page .destination-faq-accordion .accordion-button {
    font-weight: 700;
    color: var(--dd-ink);
    box-shadow: none;
}

.destination-details-page .destination-faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(19, 182, 236, 0.08);
    color: var(--dd-cyan-deep);
}

.destination-details-page .dd-nearby-section .destination-card {
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

@keyframes ddHeroDrift {
    from { transform: scale(1.04) translate3d(0, 0, 0); }
    to { transform: scale(1.1) translate3d(-1.4%, -1.2%, 0); }
}

@keyframes ddGlowPulse {
    from { opacity: 0.55; transform: translate3d(0, 0, 0) scale(1); }
    to { opacity: 0.9; transform: translate3d(8%, -4%, 0) scale(1.08); }
}

@keyframes ddRiseIn {
    from { opacity: 0; transform: translate3d(0, 18px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (max-width: 991.98px) {
    .destination-details-page .dd-hero {
        min-height: 560px;
        padding: 7rem 0 4.5rem;
    }

    .destination-details-page .dd-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .destination-details-page .dd-section-head-row {
        align-items: stretch;
        flex-direction: column;
    }

    .destination-details-page .attraction-card-media {
        aspect-ratio: 5 / 6;
    }
}

@media (max-width: 575.98px) {
    .destination-details-page .dd-hero {
        min-height: 520px;
        padding: 6.5rem 0 4rem;
    }

    .destination-details-page .dd-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
        padding: 0.75rem;
    }

    .destination-details-page .dd-highlight-grid {
        grid-template-columns: 1fr;
    }

    .destination-details-page .dd-hero-actions {
        width: 100%;
    }

    .destination-details-page .dd-hero-actions .dd-btn {
        flex: 1 1 auto;
    }

    .destination-details-page .attraction-card-body {
        padding: 0.95rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .destination-details-page .dd-hero-media img,
    .destination-details-page .dd-hero-glow,
    .destination-details-page .dd-hero-copy,
    .destination-details-page .dd-stats,
    .destination-details-page .attraction-card,
    .destination-details-page .attraction-card-media img,
    .destination-details-page .attraction-card-cta,
    .destination-details-page .dd-highlight,
    .destination-details-page .dd-season-card,
    .destination-details-page .dd-package-grid .tour-package {
        animation: none !important;
        transition: none !important;
    }
}

/* Sightseeing cards (recovered) */
.tour-details-page .sightseeing-panel {
    padding: 14px 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(19, 182, 236, 0.08), rgba(14, 165, 233, 0.03));
    border: 1px solid rgba(19, 182, 236, 0.18);
}

.tour-details-page .sightseeing-panel-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #0b7eaa;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tour-details-page .sightseeing-tags,
.tour-details-page .sightseeing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tour-details-page .sightseeing-cards {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 14px;
}

.tour-details-page .sightseeing-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(19, 182, 236, 0.28);
    color: #0f4c5c;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.tour-details-page .sightseeing-tag i {
    color: #13b6ec;
    font-size: 12px;
}

.tour-details-page .sightseeing-tag:hover {
    transform: translateY(-1px);
    border-color: rgba(19, 182, 236, 0.5);
}

.tour-details-page .sightseeing-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-details-page .sightseeing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
}

.tour-details-page .sightseeing-card-media {
    position: relative;
    flex: 0 0 260px;
    width: 260px;
    min-height: 170px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f2fe, #f1f5f9);
}

.tour-details-page .sightseeing-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.tour-details-page .sightseeing-card:hover .sightseeing-card-media img {
    transform: scale(1.04);
}

.tour-details-page .sightseeing-card-media.is-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 28px;
}

.tour-details-page .sightseeing-card-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    flex: 1 1 auto;
    min-width: 0;
}

.tour-details-page .sightseeing-card-title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
}

.tour-details-page .sightseeing-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    font-size: 12px;
    color: #64748b;
}

.tour-details-page .sightseeing-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tour-details-page .sightseeing-card-rating {
    color: #b45309;
    font-weight: 600;
}

.tour-details-page .sightseeing-card-rating em {
    font-style: normal;
    color: #94a3b8;
    font-weight: 500;
}

.tour-details-page .sightseeing-card-desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.tour-details-page .sightseeing-card-desc.is-expanded {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.tour-details-page .ss-read-more {
    display: none;
    margin-top: 6px;
    padding: 0;
    border: 0;
    background: none;
    color: #0b7eaa;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--text-font);
}

.tour-details-page .ss-read-more.is-visible {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tour-details-page .ss-read-more:hover {
    color: #0369a1;
    text-decoration: underline;
}

.tour-details-page .itinerary-timeline-block .sightseeing-cards {
    margin-top: 10px;
}

.tour-details-page .inclusion-exclusion-content,
.tour-details-page .inclusion-exclusion-content *:not(i):not([class^="bi"]):not([class*=" bi"]),
.tour-details-page .tour-policy-card,
.tour-details-page .tour-policy-card *:not(i):not([class^="bi"]):not([class*=" bi"]) {
    font-family: var(--text-font) !important;
}

@media (max-width: 575.98px) {
    .tour-details-page .sightseeing-card {
        flex-direction: column;
    }

    .tour-details-page .sightseeing-card-media {
        width: 100%;
        flex: none;
        min-height: 0;
        aspect-ratio: 16 / 10;
    }
}
