/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes shine {
    0% {
        left: -75%;
        width: 50%;
        transform: skewX(-25deg);
    }

    100% {
        left: 100%;
        width: 100%;
        transform: skewX(0deg);
    }
}

/* ============================================
   SHARED — Owl Nav Buttons
   ============================================ */
.owl-carousel.nav-center .owl-nav button.owl-next,
.owl-carousel.nav-center .owl-nav button.owl-prev {
    width: 44px;
    height: 44px;
    font-size: 20px;
    color: var(--text-dark);
    background: var(--white);
    text-shadow: none;
    cursor: pointer;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}


.owl-carousel.nav-center .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 16px;
}

.owl-carousel.nav-center .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    background: #e4ebf1;
    margin-right: 8px;
    border-radius: 30px;
    transition: var(--transition);
}

.owl-carousel.nav-center .owl-dots .owl-dot.active {
    width: 22px;
    background: var(--tts-buttton-bg);
}

.owl-carousel.nav-center .owl-nav button.owl-prev {
    left: -20px;
}

.owl-carousel.nav-center .owl-nav button.owl-next {
    right: -20px;
}


@media (max-width:991px) {

    .owl-carousel.nav-center .owl-nav button.owl-next,
    .owl-carousel.nav-center .owl-nav button.owl-prev {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .owl-carousel.nav-center .owl-nav button.owl-prev {
        left: 20px;
    }

    .owl-carousel.nav-center .owl-nav button.owl-next {
        right: 20px;
    }

}

/* ============================================
   SHARED — Image Zoom on Hover
   ============================================ */
.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transition: transform 0.5s ease;
    will-change: transform;
}

.img-zoom:hover img {
    transform: scale(1.1);
}

/* ============================================
   SHARED — Card Lift
   ============================================ */
.card-lift {
    transition: var(--transition);
}

.card-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

/* ============================================
   SHARED — Heading Block
   ============================================ */
.headingblock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.headingblock .wrap {
    display: flex;
    align-items: center;
    gap: 25px;
}

.heading-one {
    font-size: 25px;
    color: var(--header-txt-color);
    margin: 0;
}

/* ============================================
   SHARED — Custom Circular Nav
   ============================================ */
.custom-nav {
    display: flex;
    gap: 8px;
}

.custom-nav button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
    cursor: pointer;
    transition: var(--transition);
}

.custom-nav button:hover {
    background: var(--tts-buttton-bg1);
    color: var(--tts-buttton-txt1);
}

/* ============================================
   SHARED — Overlay Gradient (bottom-up)
   ============================================ */
.overlay-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.2),
            transparent);
    z-index: 1;
    transition: var(--transition);
}

.overlay-gradient:hover::before {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.3),
            transparent);
}

/* ============================================
   NAV-CENTER (Owl Positioning)
   ============================================ */

/* ============================================
   OFFER SECTION
   ============================================ */
.headingblock .nav-tabs {
    border: none;
    display: flex;
    gap: 10px;
}

.headingblock .nav-tabs .nav-link {
    padding: 5px 7px;
    font-weight: 500;
    color: var(--text-dark);
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    transition: var(--transition);
    text-transform: capitalize;
}

.headingblock .nav-tabs .nav-link.active,
.headingblock .nav-tabs .nav-link:hover {
    color: var(--tts-buttton-bg);
    border-bottom-color: var(--tts-buttton-bg);
}

.headingblock .right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.headingblock .link {
    color: var(--tts-buttton-bg);
    text-decoration: underline;
    white-space: nowrap;
}

.offer-slider .owl-item {
    margin: 10px 0;
}

.offer_page .item-box {
    display: block;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    height: 200px;
    margin-left: 45px;
    border: 1px solid var(--border-medium);
    transition: var(--transition);
}

.offer_page .item-box:hover {
    transform: translateY(-3px);
}

.offer_page .offer-box {
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
}

.offer_page .imgsection {
    width: 125px;
    min-width: 125px;
    height: 180px;
    overflow: hidden;
    margin-left: -45px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-medium);
}

.offer_page .imgsection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    will-change: transform;
}

.offer_page .offer-box:hover .imgsection img {
    transform: scale(1.15);
}

.offer_page .offer-content {
    height: 100%;
}

.offer-content .offer-height {
    padding: 20px 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offer-content .offer-height h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--header-txt-color);
}

.offer-content .offer-height p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 20px;
}

/* ============================================
   POPULAR ROUTES
   ============================================ */
.popular_destination .routes_box {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--border-medium);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.5s ease;
    min-height: 210px;
    text-decoration: none;
}

.popular_destination .routes_box:hover {
    box-shadow: var(--box-shadow);
}

.popular_destination .routes_box .origin_destination {
    width: 100%;
    padding-left: 14px;
    border-left: 1px solid var(--border-medium);
    position: relative;
}

.popular_destination .routes_box .origin_destination::before,
.popular_destination .routes_box .origin_destination::after {
    content: "";
    position: absolute;
    left: -4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--dot-color);
}

.popular_destination .routes_box .origin_destination::before {
    top: 0;
}

.popular_destination .routes_box .origin_destination::after {
    bottom: 0;
}

.popular_destination .routes_box .origin_destination div {
    display: block;
    width: 100%;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 4px;
}

.popular_destination .routes_box .origin_destination .time {
    font-weight: 400;
    font-size: 13px;
    color: var(--text-light);
}

.popular_destination .routes_box .price_go {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    margin-left: auto;
    padding-top: 10px;
    width: 100%;
}

.popular_destination .routes_box .price_go .low-price {
    font-size: 20px;
    color: var(--header-txt-color);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.popular_destination .routes_box .price_go .low-price span:first-child {
    font-weight: 400;
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

.popular_destination .routes_box .price_go .low-price .rs {
    font-size: 18px;
    color: var(--header-txt-color);
    font-weight: 500;
    display: inline-block;
}

/* ============================================
   TRENDING HOTELS
   ============================================ */
.hotel-item {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-medium);
    transition: box-shadow 0.5s ease;
}

.hotel-slider .hotel-item {
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: none;
}

.hotel-slider .hotel-item:hover {
    box-shadow: var(--shadow-light);
}

.hotel-slider .hotel-item .hotel-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.hotel-slider .hotel-item .hotel-img img {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hotel-slider .hotel-item:hover .hotel-img img {
    transform: scale(1.05);
}

.hotel-slider .hotel-item .hotel-img .add-wishlist {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
    border-radius: var(--radius-lg);
    text-align: center;
    position: absolute;
    left: 10px;
    top: 10px;
}

.hotel-slider .hotel-item .hotel-content {
    padding: 20px 15px 10px;
}

.hotel-slider .hotel-item .hotel-content h4 {
    font-size: 20px;
}

.hotel-slider .hotel-item .hotel-content h4 a {
    color: var(--text-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 267px;
    display: inline-block;
    vertical-align: middle;
    transition: var(--transition);
}

.hotel-slider .hotel-item .hotel-content h4 a:hover {
    color: var(--tts-buttton-bg);
}

.hotel-slider .hotel-item .hotel-content p {
    margin: 8px 0;
    color: var(--text-dark);
    font-weight: 500;
}

.hotel-rate .badge {
    background: var(--tts-buttton-bg);
}

.hotel-rate-type {
    color: var(--tts-buttton-bg);
    font-weight: 500;
    margin: 0 5px;
}

.hotel-rate-review {
    color: var(--text-dark);
    font-weight: 500;
}

.hotel-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-light);
    margin-top: 20px;
    padding-top: 13px;
}

.hotel-price-amount {
    color: var(--tts-buttton-bg);
    font-weight: 700;
    font-size: 19px;
}

.hotel-price-type {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.hotel-text-btn a {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.hotel-text-btn a i {
    font-size: 14px;
}

.hotel-text-btn a:hover {
    color: var(--tts-buttton-bg);
}

/* ============================================
   VISA COUNTRIES
   ============================================ */
.countries-visa .card {
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative;
    flex-direction: column;
    border-radius: var(--radius-md);
    background-color: var(--bg-white);
    border: 1px solid var(--border-medium);
}

.countries-visa .card .cardbanner {
    height: 183px;
    border: 0;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    filter: brightness(0.8);
}

.countries-visa .card .imgwrapper {
    left: -10px;
    position: absolute;
    top: -10px;
    border-radius: 50%;
}

.countries-visa .card .imgwrapper img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.countries-visa .card .country-card {
    padding: 10px 20px;
    position: absolute;
    inset: 0;
    color: var(--tts-buttton-txt);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.countryBox {
    margin: 10px 0 15px;
}

.countryName,
.price {
    font-weight: 600;
    font-size: 18px;
}

.countries-visa .card .countryName a {
    color: var(--tts-buttton-txt);
}

.rupayBox {
    font-size: 12px;
}

/* ============================================
   WHY CHOOSE US (Features)
   ============================================ */
.feature-area {
    position: relative;
}

.feature-area .feature-item {
    position: relative;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all 0.5s ease-in-out;
}

.feature-area .feature-icon {
    width: 80px;
    height: 80px;
    background: var(--tts-buttton-bg);
    font-size: 40px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-area .feature-icon::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed var(--tts-buttton-bg);
}

.feature-area .feature-icon img {
    filter: brightness(0) invert(1);
    width: 50px;
    height: 50px;
}

.feature-area .feature-title {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 18px;
}

/* ============================================
   HOLIDAY THEME SECTION
   ============================================ */
.holidays_theme {
    position: relative;
}

.holidays_theme .holiday_slider .owl-stage {
    display: flex;
    align-items: stretch;
}

.holidays_theme .holiday_slider .owl-item {
    display: flex;
    height: auto;
}

.holidays_theme .holiday_slider .theme-item {
    width: 100%;
}

.holidays_theme .theme-item {
    position: relative;
    background: var(--bg-white);
    overflow: hidden;
    border-radius: var(--radius-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.holidays_theme .theme-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(13, 35, 62, 0.242);
    z-index: 1;
    transition: var(--transition);
}

.holidays_theme .theme-img {
    height: 220px;
    overflow: hidden;
}

.holidays_theme .theme-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    will-change: transform;
}

.holidays_theme .theme-item:hover .theme-img img {
    transform: scale(1.1);
}

.holidays_theme .theme-item:hover::before {
    background: rgba(13, 35, 62, 0.8);
}

.holidays_theme .theme-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.holidays_theme .theme-content .filenameicon {
    width: 45px;
    height: 45px;
}

.holidays_theme .theme-content h3 {
    font-size: 18px;
    color: var(--tts-buttton-txt);
    font-weight: 700;
    margin: 0;
}

.holidays_theme .theme-content p {
    font-size: 13px;
    color: var(--tts-buttton-txt);
    margin: 6px 0 0;
    padding: 3px 12px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}

/* ============================================
   DESTINATIONS (Overlay Cards)
   ============================================ */
.destinations .destination-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.destinations .destination-img {
    height: 220px;
    position: relative;
}

.destinations .destination-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    will-change: transform;
}

.destinations .destination-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.2),
            transparent);
    z-index: 1;
    transition: var(--transition);
}

.destinations .destination-item:hover .destination-img img {
    transform: scale(1.1);
}

.destinations .destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    z-index: 2;
    color: var(--tts-buttton-txt);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.destinations .destination-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px;
    color: var(--tts-buttton-txt);
}

.destinations .destination-info span {
    font-size: 12px;
    color: var(--text-faint);
}

.destinations .destination-info p {
    font-size: 20px;
    font-weight: 600;
    color: var(--tts-buttton-txt);
    margin: 2px 0 0;
}

.destinations .destination-item:hover .destination-img::before {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.3),
            transparent);
}

.destinations .destination-btn {
    position: absolute;
    inset: 0;
    z-index: 3;
}

/* ============================================
   BLOG POSTS
   ============================================ */
.recent-posts .post-item {
    background: var(--bg-white);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.recent-posts .post-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.recent-posts .post-item .post-img {
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.recent-posts .post-item .post-img img {
    transition: transform 0.5s ease;
    width: 100%;
    max-height: 220px;
}

.recent-posts .post-item:hover .post-img img {
    transform: scale(1.1);
}

.recent-posts .post-item .post-date {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
    text-transform: uppercase;
    font-size: 13px;
    padding: 6px 12px;
    font-weight: 500;
}

.recent-posts .post-item .post-content {
    padding: 30px;
}

.recent-posts .post-item .post-title {
    color: var(--header-txt-color);
    font-size: 18px;
    font-weight: 700;
    transition: var(--transition);
    margin-bottom: 15px;
}

.recent-posts .post-item .meta i {
    font-size: 16px;
    color: var(--tts-buttton-bg);
}

.recent-posts .post-item .meta span {
    font-size: 15px;
    color: color-mix(in srgb, var(--header-txt-color), transparent 50%);
}

.recent-posts .post-item hr {
    color: color-mix(in srgb, var(--header-txt-color), transparent 80%);
}

.recent-posts .post-item .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: var(--transition);
    color: color-mix(in srgb, var(--header-txt-color), transparent 40%);
}

.recent-posts .post-item .readmore i {
    line-height: 0;
    margin-left: 6px;
    font-size: 16px;
}

.recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {
    color: var(--tts-buttton-bg);
}

/* ============================================
   MOBILE APP
   ============================================ */
.mobile-app {
    background-color: var(--bg-subtle);
}

.mobile-app h3 {
    font-size: 30px;
}

.mobile-app ul {
    list-style: none;
    color: var(--header-txt-color);
    text-align: left;
    padding: 0;
    margin: 0;
}

.mobile-app ul li {
    padding-bottom: 5px;
    width: 50%;
    float: left;
}

.mobile-app .AppButton {
    display: flex;
    align-items: center;
    margin-top: 20px;
    float: left;
}

.mobile-app .mobileapp-item {
    position: relative;
    width: 100%;
}

.mobile-app .mobileapp-item .mobileapp-img,
.mobile-app .mobileapp-item .scnercode {
    width: 100%;
    text-align: center;
}

.mobile-app .mobileapp-item .mobileapp-img img {
    position: absolute;
    inset: 0;
    display: block;
    box-sizing: border-box;
    margin: auto;
    padding: 0;
    border: none;
}

.mobile-app .mobileapp-item .scnercode {
    margin-left: -25px;
    margin-top: 60px;
    position: relative;
}

.mobile-app .mobileapp-item .scnercode img {
    width: 150px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-slider .owl-stage {
    display: flex;
}

.testimonial-slider .owl-item {
    display: flex;
    flex: 1 0 auto;
}

.testimonials .testimonial-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 10px;
    border: 1px solid var(--border-medium);
}

.testimonials .testimonial-item .testimonial-img {
    width: 70px;
    height: 70px !important;
    border-radius: var(--radius-lg);
    margin-right: 15px;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px;
    color: var(--header-txt-color);
}

.testimonials .testimonial-item h4 {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
    font-weight: normal !important;
}

.testimonials .testimonial-item .stars i {
    color: var(--star-color);
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: var(--primary);
    line-height: 0;
}

.testimonials .testimonial-item p {
    flex-grow: 1;
    font-style: italic;
    margin: 15px 0;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary);
}

/* --- Company Logos --- */
.cmpanylogo .logo {
    height: 60px;
}

/* ============================================
   TRENDING HOLIDAYS
   ============================================ */
.holidayTrendsWrapper .holidayCardWrapper_box {
    border-radius: var(--radius-md);
    padding: 10px;
    height: 100%;
    background: var(--bg-white);
    border: 1px solid var(--border-medium);
    transition: box-shadow 0.5s ease;
    position: relative;
    width: 100%;
    display: block;
}

.holidayTrendsWrapper .holidayCardWrapper_box:hover {
    box-shadow: var(--shadow-medium);
}

.holidayTrendsWrapper .holidayCardWrapper_box .holidayCard-body h5.card-title {
    color: var(--header-txt-color);
    font-size: 18px;
    margin-bottom: 10px;
    text-overflow: ellipsis;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.holidayTrendsWrapper .holidayCardWrapper_box .makeRelative {
    position: relative;
}

.holidayTrendsWrapper .holidayCardWrapper_box .img-wrapper {
    overflow: hidden;
    position: relative;
    margin: 0 -10px 20px -10px;
}

.holidayTrendsWrapper .holidayCardWrapper_box .img-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.holidayTrendsWrapper .holidayCardWrapper_box .daysbadge {
    padding: 0 10px;
    background: var(--tts-buttton-bg1);
    border-radius: 13px;
    color: var(--tts-buttton-txt1);
    position: absolute;
    margin-top: -30px;
    right: 5px;
    z-index: 1;
    font-size: 12px;
}

.holidayTrendsWrapper .holidayCardWrapper_box .smileychoice {
    position: absolute;
    top: 50px;
    left: 0;
}

.holidayTrendsWrapper .holidayCardWrapper_box .recommended {
    position: absolute;
    z-index: 5;
    left: -8px;
    top: 15px;
    background-image: linear-gradient(to right, var(--tts-buttton-bg), var(--tts-buttton-bg1));
    width: 130px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: var(--tts-buttton-txt);
    font-size: 13px;
    font-weight: 400;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.holidayTrendsWrapper .holidayCardWrapper_box .recommended::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    border-top: 7px solid #021432;
    border-left: 8px solid transparent;
}

.holidayTrendsWrapper .holidayCardWrapper_box .recommended span {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    width: 1px;
}

.holidayTrendsWrapper .holidayCardWrapper_box .recommended span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-bottom: 12px solid transparent;
    border-left: 8px solid var(--tts-buttton-bg1);
}

.holidayTrendsWrapper .holidayCardWrapper_box .recommended span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    border-top: 12px solid transparent;
    border-left: 8px solid var(--tts-buttton-bg1);
}

.holidayTrendsWrapper .holidayCardWrapper_box .under-checkbox1 {
    top: 180px;
}

/* Shine effect */
.holidayTrendsWrapper .holidayCardWrapper_box .img-wrapper::before {
    position: absolute;
    top: 0;
    left: -75%;
    display: block;
    z-index: 2;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}

.holidayTrendsWrapper .holidayCardWrapper_box:hover .img-wrapper::before {
    animation: shine 0.75s forwards;
}

.holidayTrendsWrapper .holidayCardWrapper_box .holidayCarditem {
    position: static;
    margin-top: 0;
}

.holidayTrendsWrapper .holidayCardWrapper_box .holidayCarditem ul.holidayItineraryWrapper {
    display: flex;
    gap: 20px;
    overflow-y: auto;
    scrollbar-color: #747474 #dcdcdc;
    scrollbar-width: thin;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.holidayTrendsWrapper .holidayCardWrapper_box .holidayCarditem ul.holidayItineraryWrapper li {
    margin-right: 10px;
    text-align: center;
    padding: 8px 0;
}

.holidayTrendsWrapper .holidayCardWrapper_box .holidayCarditem ul.holidayItineraryWrapper li p {
    margin: 0;
    font-size: 13px;
}

.holidayTrendsWrapper .holidayCardWrapper_box .holidayCarditem .destinationWrapper {
    display: flex;
    margin: 10px 0;
    flex-wrap: wrap;
}

.holidayTrendsWrapper .holidayCardWrapper_box .holidayCarditem .destinationWrapper .redText {
    font-size: 15px;
    color: var(--header-txt-color);
    font-weight: 700;
}

.holidayTrendsWrapper .holidayCardWrapper_box .holidayCarditem .destinationWrapper .destinationName span {
    margin: 0 2px;
}

.holidayTrendsWrapper .holidayCardWrapper_box .footer-new {
    border-top: 1px solid var(--border-medium);
    padding: 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.holidayTrendsWrapper .holidayCardWrapper_box .footer-new h3 {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 400;
    margin: 0;
}

.holidayTrendsWrapper .holidayCardWrapper_box .footer-new h3 .slashed {
    display: block;
    color: var(--header-txt-color);
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

.holidayTrendsWrapper .holidayCardWrapper_box .footer-new a {
    color: var(--tts-buttton-txt);
    background: var(--tts-buttton-bg);
    border-radius: 30px;
    font-size: 14px;
    padding: 5px 24px;
    border: 1px solid var(--tts-buttton-bg);
    transition: var(--transition);
}

.holidayTrendsWrapper .holidayCardWrapper_box .footer-new a:hover {
    background: var(--tts-buttton-bg1);
    border-color: var(--tts-buttton-bg1);
    color: var(--tts-buttton-txt1);
}

/* ============================================
   TRANSFER SECTION
   ============================================ */
.transfer-slider .owl-stage {
    display: flex;
}

.transfer-slider .owl-item {
    display: flex;
    flex: 1;
}

.transfer-slider {
    position: relative;
}

.transfer-slider .transfer-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-medium);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.transfer-slider .transfer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.transfer-slider .transfer-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.transfer-slider .transfer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    will-change: transform;
}

.transfer-slider .transfer-card:hover .transfer-image img {
    transform: scale(1.08);
}

.transfer-slider .transfer-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.transfer-slider .transfer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.transfer-slider .transfer-details {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow-x: auto;
    gap: 20px;
}

.transfer-slider .transfer-details li {
    margin-bottom: 6px;
    flex: 1;
}

.transfer-slider .transfer-details strong {
    color: var(--text-dark);
}

.transfer-slider .transfer-details .price {
    margin-top: 10px;
    font-size: 16px;
    color: var(--header-txt-color);
}

.transfer-slider .transfer-action {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.transfer-slider .btn-view {
    display: inline-block;
    text-decoration: none;
    background: transparent;
    color: var(--tts-buttton-bg);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.transfer-slider .btn-view:hover {
    color: var(--tts-buttton-bg1);
}

/* ============================================
   POPULAR DESTINATIONS (List + Deal Box)
   ============================================ */
.popular-destinations .destinationlist_box,
.deal-box {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.popular-destinations .destinationlist_box:hover,
.deal-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.popular-destinations .destination {
    cursor: pointer;
    border-bottom: 1px solid var(--border-medium);
}

.popular-destinations .destination.selected-destination {
    border-left: 4px solid var(--tts-buttton-bg);
}

.popular-destinations .destination:last-child {
    border-bottom: none;
}

.popular-destinations .destination-content {
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 12px;
}

.popular-destinations .imgdiv {
    width: 90px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}

.popular-destinations .imgdiv img,
.popular-destinations .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.popular-destinations .textblock h4 {
    margin: 0;
    font-size: 16px;
    color: var(--text-dark);
}

.popular-destinations .textblock h3 {
    margin: 4px 0 0;
    font-size: 14px;
    color: var(--tts-buttton-bg);
}

.popular-destinations .deal-box a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.popular-destinations .img-container {
    height: 180px;
    overflow: hidden;
}

.popular-destinations .deal-info {
    padding: 12px;
}

.popular-destinations .deal-info h5 {
    font-size: 16px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
    gap: 10px;
}

.popular-destinations .deal-info strong {
    color: var(--tts-buttton-bg);
    font-size: 16px;
}

.popular-destinations .deal-info h5 span {
    font-size: 12px;
    color: var(--text-light);
}

/* ============================================
   ADVENTURE ACTIVITIES
   ============================================ */
.activity-wrapper .card-hover-overlay {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    transition: transform 0.4s ease;
    cursor: pointer;
}

.activity-wrapper .card-hover-overlay img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    will-change: transform;
}

.activity-wrapper .card-hover-overlay:hover img {
    transform: scale(1.1);
}

.activity-wrapper .card-img-overlay {
    background: var(--overlay-dark);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: var(--radius-lg);
}

.activity-wrapper .card-hover-overlay:hover .card-img-overlay {
    opacity: 1;
}

.activity-wrapper .card-img-overlay .card-title {
    font-size: 18px;
    font-weight: 700;
}

.activity-wrapper .card-img-overlay .card-text {
    font-size: 14px;
    opacity: 0.9;
}

.activity-wrapper .owl-nav button {
    background: var(--white) !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.activity-wrapper .owl-nav button:hover {
    background: var(--tts-buttton-bg) !important;
    color: var(--tts-buttton-txt) !important;
}

/* ============================================
   BANNER SECTION
   ============================================ */
.Add-banner-section .banner-slider {
    position: relative;
}

.Add-banner-section .banner-slider .item {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.Add-banner-section .banner-slider img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform 0.5s ease, filter 0.4s ease;
}

.Add-banner-section .banner-slider .item:hover img {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.Add-banner-section .banner-slider .item a {
    display: block;
    position: relative;
}

.Add-banner-section .banner-slider .item a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: var(--radius-md);
}

.Add-banner-section .banner-slider .item:hover a::after {
    opacity: 1;
}

.Add-banner-section .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.Add-banner-section .owl-nav button {
    position: absolute;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    width: 42px;
    height: 42px;
    font-size: 18px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.Add-banner-section .owl-nav .owl-prev {
    left: -15px;
}

.Add-banner-section .owl-nav .owl-next {
    right: -15px;
}

.Add-banner-section .owl-nav button:hover {
    background: var(--tts-buttton-bg) !important;
    color: var(--tts-buttton-txt) !important;
}

.Add-banner-section .owl-dots {
    margin-top: 15px;
}

.Add-banner-section .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: var(--border-medium);
    display: inline-block;
    border-radius: 50%;
    margin: 5px;
    transition: var(--transition);
}

.Add-banner-section .owl-dots .owl-dot.active span {
    background: var(--tts-buttton-bg);
    width: 25px;
    border-radius: 10px;
}

/* ============================================
   PLACE SECTION
   ============================================ */
.place-section #placeTab {
    border-bottom: none;
    gap: 10px;
}

.place-section .card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: var(--shadow-light);
}

.place-section .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.place-section .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
    will-change: transform;
}

.place-section .card:hover .card-img-top {
    transform: scale(1.08);
}

.place-section .position-absolute {
    font-size: 12px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(4px);
}

.place-section .card-body {
    padding: 15px;
}

.place-section .card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.place-section .text-primary {
    color: var(--tts-buttton-bg) !important;
    font-size: 16px;
}

.place-section .text-decoration-line-through {
    font-size: 13px;
}

.place-section .badge {
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 6px;
}

.place-section .owl-carousel .item {
    padding: 5px;
}

.place-section .owl-nav button {
    background: var(--white) !important;
    width: 38px;
    height: 38px;
    border-radius: 50% !important;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.place-section .owl-nav button:hover {
    background: var(--tts-buttton-bg) !important;
    color: var(--tts-buttton-txt) !important;
}

.place-section .owl-dots {
    margin-top: 10px;
}

.place-section .owl-dots .owl-dot span {
    background: var(--border-medium);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.place-section .owl-dots .owl-dot.active span {
    background: var(--tts-buttton-bg);
    width: 20px;
    border-radius: 10px;
}

/* ============================================
   CTA BLOCK
   ============================================ */
.cta-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--header-txt-color);
}

.cta-title span {
    color: var(--tts-buttton-bg);
}

.cta-subtitle {
    font-size: 15px;
    color: var(--text-light);
}

.cta-btn {
    padding: 10px 25px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    background-color: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
    border-color: var(--tts-buttton-bg);
    transition: var(--transition);
}

.cta-btn:hover {
    background-color: var(--tts-buttton-bg1);
    color: var(--tts-buttton-txt1);
    border-color: var(--tts-buttton-bg1);
}

/* ============================================
   LUXE HERO
   ============================================ */
.luxe-hero {
    position: relative;
    display: flex;
    align-items: center;
    height: 600px;
    z-index: 2;
    overflow: hidden;
}

.luxe-hero .banner-sliders .owl-carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.luxe-hero .slider-item {
    position: relative;
    width: 100%;
    height: 600px;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.luxe-hero .slider-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--overlay-dark);
    border-radius: inherit;
}

.luxe-hero .slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: var(--tts-buttton-txt);
    text-align: center;
    padding: 20px;
    max-width: 90%;
}

/* ============================================
   LUXE GRID
   ============================================ */
.luxe .luxe-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.luxe .luxe-grid .card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: 30px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--tts-buttton-txt);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: var(--shadow-elevated);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.luxe .luxe-grid .card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1);
    transition: transform 0.8s ease;
}

.luxe .luxe-grid .card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.35) 45%,
            var(--overlay-heavy) 100%);
    z-index: -1;
}

.luxe .luxe-grid .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.luxe .luxe-grid .card:hover::after {
    transform: scale(1.08);
}

.luxe .luxe-grid .icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.luxe .luxe-grid .icon svg {
    width: 38px;
    height: 38px;
    stroke: var(--tts-buttton-txt);
    opacity: 0.88;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.luxe .luxe-grid .card:hover .icon svg {
    transform: scale(1.15);
    opacity: 1;
}

.luxe .luxe-grid .tag {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
}

.luxe .luxe-grid .card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.2;
}

.luxe .luxe-grid .card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.luxe .luxe-grid .card a {
    margin-top: 18px;
    display: inline-block;
    color: var(--tts-buttton-txt);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    position: static;
    z-index: 2;
}

.luxe .luxe-grid .card a span {
    position: relative;
}

.luxe .luxe-grid .card a span::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--tts-buttton-txt);
    transition: width 0.35s ease;
}

.luxe .luxe-grid .card:hover a span::before {
    width: 100%;
}

.luxe .luxe-grid .card a::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.luxe .luxe-grid .card.wide {
    grid-column: span 2;
}

.luxe .luxe-grid .card.highlight {
    background: linear-gradient(135deg, var(--tts-buttton-bg), var(--tts-buttton-bg1));
}

.luxe .luxe-grid .card.highlight::before,
.luxe .luxe-grid .card.highlight::after {
    display: none;
}

/* ============================================
   DESTINATION SECTION (Simple List)
   ============================================ */

.destination-section .destination-box {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-medium);
}

.destination-section .destination-card {
    text-decoration: none;
    color: var(--header-txt-color);
    display: flex;
    align-items: flex-start;
    padding: 15px;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.destination-section .destination-card:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.destination-section .city-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    flex-shrink: 0;
    border: 1px solid var(--border-medium);
}

.destination-section .city-name {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 1rem;
    color: var(--header-txt-color);
}

.destination-section .city-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
}

/* ============================================
   RESPONSIVE — < 992px
   ============================================ */
@media (max-width: 991px) {

    /* Nav center carousel buttons */
    .nav-center .owl-nav button.owl-prev {
        left: 20px;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .nav-center .owl-nav button.owl-next {
        right: 20px;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    /* Heading block */
    .headingblock {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .heading-one {
        font-size: 22px;
        text-align: center;
    }

    .headingblock .wrap {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    /* Offer section */
    .offer_page .item-box {
        margin-left: 0;
    }

    .offer_page .imgsection {
        margin-left: 0;
    }

    .offer-content .offer-height h3 {
        font-size: 16px;
    }

    /* Features */
    .feature-area .feature-item {
        margin-bottom: 25px;
    }

    /* Banner */
    .Add-banner-section .banner-slider img {
        height: 280px;
    }

    /* Luxe grid */
    .luxe .luxe-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Luxe hero */
    .luxe-hero {
        height: 500px;
    }

    .luxe-hero .slider-item {
        height: 500px;
    }

    .luxe-hero .slider-content {
        padding: 15px;
    }
}

/* ============================================
   RESPONSIVE — < 768px
   ============================================ */
@media (max-width: 767px) {

    /* Heading block tabs */
    .headingblock .wrap {
        gap: 10px;
        width: 100%;
        padding: 0 10px;
    }

    .headingblock .nav-tabs {
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
    }

    .headingblock .nav-tabs .nav-link {
        padding: 4px 8px;
        font-size: 13px;
        text-align: center;
        min-width: fit-content;
    }

    /* Transfer cards */
    .transfer-slider .transfer-image {
        height: 220px;
    }

    /* Testimonials */
    .testimonials .testimonial-wrap {
        padding-left: 0;
    }

    .testimonials .testimonial-item {
        padding: 30px;
        margin: 10px;
    }

    .testimonials .testimonial-item .testimonial-img {
        position: static;
    }
}

/* ============================================
   RESPONSIVE — < 576px
   ============================================ */
@media (max-width: 575px) {

    /* Heading */
    .heading-one {
        font-size: 20px;
        width: 100%;
        margin-bottom: 5px;
    }

    /* Holiday theme */
    .holidays_theme .theme-content {
        padding: 10px;
    }

    .holidays_theme .theme-content .filenameicon {
        width: 35px;
        height: 35px;
    }

    .holidays_theme .theme-content h3 {
        font-size: 12px;
    }

    .holidays_theme .theme-content p {
        font-size: 10px;
    }

    /* Destinations */
    .destinations .destination-title {
        font-size: 16px;
    }

    .destinations .destination-info p {
        font-size: 13px;
    }

    /* Activities */
    .activity-wrapper .card-hover-overlay img {
        height: 180px;
    }

    .activity-wrapper #adventureTabs .nav-link {
        font-size: 14px;
        padding: 10px;
    }

    /* Banner */
    .Add-banner-section .banner-slider img {
        height: 200px;
    }

    .Add-banner-section .owl-nav button {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    /* Place section */
    .place-section .card-img-top {
        height: 220px;
    }

    /* Trending holidays */
    .holidayTrendsWrapper .holidayCardWrapper_box .holidayCard-body h5.card-title {
        font-size: 16px;
    }

    /* Luxe */
    .luxe .luxe-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .luxe .luxe-grid .card,
    .luxe .luxe-grid .card.wide {
        grid-column: span 1;
        min-height: 260px;
        padding: 24px;
    }

    .luxe .luxe-grid .card h3 {
        font-size: 21px;
    }

    .luxe-hero {
        height: 220px;
    }

    .luxe-hero .slider-item {
        height: 220px;
    }

    .destination-section .destination-box{
        padding: 20px;
    }

    .destination-section .destination-card{
        padding: 0;
    }
}

/* ============================================
   RESPONSIVE — < 480px
   ============================================ */
@media (max-width: 479px) {
    .headingblock .nav-tabs {
        gap: 4px;
    }

    .headingblock .nav-tabs .nav-link {
        padding: 3px 6px;
        font-size: 12px;
    }
}