.nav-center .owl-nav button.owl-next,
.nav-center .owl-nav button.owl-prev {
    width: 60px;
    height: 60px;
    font-size: 20px;
    color: #222222;
    background: #ffffff;
    text-shadow: none;
    cursor: pointer;
    border: 0;
    margin: 0;
    border-radius: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(17, 17, 26, 0.05),
        0 8px 32px rgba(17, 17, 26, 0.05);
}

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

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

@media (max-width: 998.99px) {
    .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;
    }
}

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

.nav-center .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    background: #E4EBF1;
    margin-right: 8px;
    border-radius: 30px;
}

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


/*promo banner*/
.promo-banner {
    width: 100%;
    margin: 20px 0;
}

.promo-banner a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

/* 
.promo-banner a:hover .banner-image {
    transform: scale(1.05);
} */

.promo-banner a:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}


/* Container & Heading */
.headingblock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    box-sizing: border-box;
}

.headingblock .wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.headingblock .heading-one {
    font-size: 25px;
    margin: 0;
    color: #222;
}

.headingblock .heading-one span {
    font-size: 25px;
    text-transform: capitalize;
}

.headingblock .nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.headingblock .nav li a {
    display: inline-flex;
    text-transform: capitalize;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 36px;
    padding: 0 16px;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 25px;
    border: 1px solid #dedede;
    background-color: rgba(255, 255, 255, 0.05);
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.headingblock .nav li a.active,
.headingblock .nav li a:hover {
    background-color: rgba(31, 143, 234, 0.1);
    border-color: var(--tts-buttton-bg);
    color: var(--tts-buttton-bg);
}

.headingblock .view-all a {
    text-decoration: none;
    color: var(--tts-buttton-bg);
    font-weight: 500;
    transition: color 0.3s ease;
}

.headingblock .view-all a:hover {
    color: var(--tts-buttton-bg1);
}

@media (max-width: 768px) {
    .headingblock {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 15px;
        text-align: center;
    }

    .headingblock .wrap {
        width: 100%;
        gap: 15px;
    }

    .headingblock .nav {
        width: 100%;
        gap: 4px;
        line-height: 2.5;
    }

    .headingblock .view-all {
        align-self: center;
    }

    .headingblock .heading-one span,
    .headingblock .heading-one {
        font-size: 22px;
    }

    .headingblock .nav li a {
        height: 30px;
        font-size: 12px;
    }
}

/* ===============================
   Offer Area
================================= */
.offer-link {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-link:hover {
    transform: translateY(-5px);
}

.offer-link .offer-card {
    display: flex;
    flex-direction: row;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    background-color: #fff;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}

.offer-link .offer-card img {
    flex: 0 0 40%;
    width: 150px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 0 0 12px;
    transition: transform 0.3s ease;
}

.offer-link:hover img {
    transform: scale(1.05);
}

.offer-link .offer-card .offer-content {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-link .offer-card .offer-content .offer-badge {
    text-transform: capitalize;
    margin-bottom: 10px;
}

.offer-link .offer-card .offer-title {
    font-size: 18px;
    color: #333;
    margin: 0 0 15px 0;
}

.offer-link .offer-card .offer-discount {
    font-size: 13px;
    color: #666;
    margin: 0 0 10px 0;
}

.offer-link .offer-card .offer-btn {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: var(--tts-buttton-bg);
    cursor: pointer;
    margin-top: auto;
    align-self: flex-end;
    transition: color 0.3s ease;
}

.offer-link .offer-card .offer-btn:hover {
    color: #0056b3;
}

@media (max-width: 480px) {
    .offer-link .offer-card {
        flex-direction: column;
        height: auto;
    }

    .offer-link .offer-card img {
        width: 100%;
        border-radius: 12px 12px 0 0;
        border-bottom: 1px solid #e2e2e2;
        flex: 0 0 0;
    }

    .offer-link .offer-card .offer-content {
        padding: 12px;
    }
}

.nav-center1 .owl-nav button.owl-prev,
.nav-center1 .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-center1 .owl-nav button.owl-prev {
    left: -15px;
}

.nav-center1 .owl-nav button.owl-next {
    right: -15px;
}

.nav-center1 .owl-dots {
    text-align: center;
    margin-top: 15px;
}


/* ===============================
   Feature Area
================================= */
.feature-item {
    background: #ffffff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 16px;
    height: 270px;
    transition: all 0.4s ease;
    box-shadow: 0 0 7px rgb(0 -1 6 / 6%) inset;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(221, 221, 221);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--tts-buttton-bg), #0284c7);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature-item:hover::before {
    opacity: 0.05;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0386c9;
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-item:hover .feature-icon {
    transform: rotate(8deg) scale(1.08);
    background: #e0f2fe;
}

.feature-icon img {
    filter: brightness(0) invert(1);
    max-width: 45px;
    transition: transform 0.4s ease;
}

.feature-item:hover .feature-icon img {
    transform: scale(1.1);
    filter: brightness(1) invert(0);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0f172a;
    position: relative;
    z-index: 1;
}

.feature-item p {
    color: #64748b;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 576px) {
    .feature-item {
        padding: 25px 20px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-item p {
        font-size: 14px;
    }
}


/* ===============================
   Testimonials
================================= */
.testimonials .testimonial-wrap {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 0 7px rgb(0 -1 6 / 6%) inset;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(221, 221, 221);
    position: relative;
    overflow: hidden;
}

.testimonials .testimonial-item p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    position: relative;
}

.testimonials .testimonial-item p i {
    color: #f39c12;
    font-size: 1.2rem;
}

.testimonials .owl-carousel .owl-item .testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonials .stars i {
    color: #f39c12;
    margin-right: 2px;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* =====================================
   BLOG SECTION
===================================== */
.recent-posts .title-area {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}
.recent-posts .owl-stage{
    display: flex;
}

.recent-posts .owl-item{
    height: auto;
}

.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 7px rgb(0 -1 6 / 6%) inset;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(221, 221, 221);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card .blog-img {
    overflow: hidden;
    position: relative;
    height: 220px;
}

.blog-card .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-card .blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card .blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
}

.blog-card .blog-meta a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card .blog-meta a:hover {
    color: var(--tts-buttton-bg);
}

.blog-card .blog-meta i {
    margin-right: 6px;
    color: var(--tts-buttton-bg);
}

.blog-card .blog-title {
    font-size: 18px;
    margin-bottom: 12px;
    color: #0f172a;
    position: relative;
    z-index: 1;
    min-height: 52px;
}

.blog-card .blog-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card .blog-title a:hover {
    color: var(--tts-buttton-bg);
}

.link-btn {
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    color: var(--tts-buttton-bg);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.link-btn i {
    transition: transform 0.3s ease;
}

.link-btn:hover {
    color: #000;
}

.link-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {

    .recent-posts .title-area {
        text-align: center;
        margin-bottom: 20px;
    }

    .recent-posts .sub-title {
        justify-content: center;
    }

    .recent-posts .sec-btn {
        text-align: center;
        margin-top: 20px;
    }

    .blog-card .blog-img img {
        height: 200px;
    }
}

@media (max-width: 576px) {

    .recent-posts .sec-title {
        font-size: 26px;
    }

    .recent-posts .sub-title {
        font-size: 14px;
    }

    .recent-posts .ot-btn {
        padding: 12px 22px;
        font-size: 13px;
    }

    .blog-card .blog-content {
        padding: 18px;
    }

    .blog-card .blog-title {
        font-size: 18px;
    }

    .blog-card .blog-img img {
        height: 180px;
    }
}


/* === Holiday Theme Card (Enhanced) === */
.theme-item {
    position: relative;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    display: block;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.theme-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.theme-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
    z-index: 1;
    transition: background 0.4s ease;
}

.theme-item:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3));
}

.theme-item .theme-img {
    height: 180px;
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.theme-item .theme-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.theme-item:hover .theme-img img {
    transform: scale(1.12);
    filter: brightness(0.55);
}

.theme-item .theme-content {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90%;
}

.theme-item .theme-content img.filenameicon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-bottom: 10px;
    background-color: #fff;
    object-fit: cover;
}

.theme-item .theme-content h3 {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    margin: 0 0 5px;
}

.theme-item .theme-content h3 span {
    color: #ff5e57;
    font-weight: 700;
}

.theme-item .theme-content p {
    font-size: 11px;
    color: #fff;
    margin: 0;
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    display: inline-block;
    transition: background 0.3s ease;
}

.theme-item .theme-content p:hover {
    background: rgba(255, 94, 87, 0.85);
}

@media (max-width: 768px) {
    .theme-item .theme-img {
        height: 140px;
    }

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

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

@media (max-width: 480px) {
    .theme-item .theme-img {
        height: 120px;
    }

    .theme-item .theme-content img.filenameicon {
        width: 40px;
        height: 40px;
    }
}



/* ===============================
   Holiday Theme Section
================================= */
.home-page-box {
    padding: 30px 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 13px 13px 0px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #dedede;
    margin: 20px 0;
}

.home-page-box.bg1 {
    background: rgb(31 143 234 / 6%);
}

.holidays-theme .destination-item {
    position: relative;
    height: 220px;
    padding: 10px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.holidays-theme .sec-title-center .sub-title-center::before,
.holidays-theme .sec-title-center .sub-title-center::after {
    background-color: #fff;
}

.holidays-theme .sec-title-center h2 {
    color: #fff;
}


.holidays-theme .destination-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.holidays-theme .destination-item:hover img {
    transform: scale(1.3);
}

.holidays-theme .filenameicon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    object-fit: contain;
    z-index: 2;
}

.holidays-theme .destination-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s ease;
    z-index: 1;
}

.holidays-theme .destination-item:hover .destination-overlay {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-width: 30px;
}

.holidays-theme .destination-overlay h5 {
    font-size: 18px;
    margin-bottom: 0px;
    color: #fff;
    text-align: center;
}

.holidays-theme .destination-overlay span {
    font-size: 14px;
    opacity: 0.9;
    color: #fff;
    text-align: center;
}

@media (max-width: 768px) {
    .holidays-theme .destination-item {
        height: 180px;
    }

    .holidays-theme .destination-overlay h5 {
        font-size: 16px;
    }

    .holidays-theme .destination-overlay span {
        font-size: 12px;
    }

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

    .home-page-box {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .holidays-theme .destination-item {
        height: 150px;
    }

    .holidays-theme .destination-overlay {
        padding: 10px;
    }


}

/* ===============================
   ROUTE Theme Section
================================= */
.routes_box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    border: 1px solid var(--tts-buttton-bg);
    border-radius: 10px;
    padding: 8px;
}

.routes_box .route-card__image-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.routes_box .route-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.routes_box .route-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.routes_box .route-card__cities {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.routes_box .route-card__codes {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--tts-buttton-bg);
    padding-top: 6px;
}

.routes_box .route-card__separator {
    width: 20px;
    height: 2px;
    background: linear-gradient(to right, #ccc, #aaa);
    border-radius: 2px;
}

.routes_box .route-card__pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 6px;
}


.routes_box .route-card__departure-date {
    color: #777;
    font-size: 12px;
}

.routes_box .route-card__price {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: baseline;
}

.routes_box .time {
    font-size: 12px;
    color: #adb5bd;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.routes_box .time i {
    font-size: 11px;
}


/* ===============================
   holiday Theme Section
================================= */
.holiday-destinations .destination-card {
    text-align: center;
    height: 100%;
    box-shadow: rgba(0, 0, 6, 0.06) 0px 0px 7px inset;
    position: relative;
    background: rgb(255, 255, 255);
    border-radius: 16px;
    transition: 0.4s;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(221, 221, 221);
    overflow: hidden;
}

.holiday-destinations .destination-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.holiday-destinations .destination-card:hover .destination-image img {
    transform: scale(1.05);
}

.holiday-destinations .destination-details {
    padding: 15px;
}

.holiday-destinations .destination-name {
    font-size: 18px;
    margin-bottom: 10px;
}

.holiday-destinations .destination-price {
    color: #000000;
    font-weight: 700;
}

.holiday-destinations .destination-price span {
    font-weight: 400;
    color: #444;
}

.holiday-destinations .destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: .5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 15px;
}

.holiday-destinations .destination-card:hover .destination-overlay {
    height: 100%;
    opacity: 1;
}

.holiday-destinations .destination-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.holiday-destinations .destination-overlay p {
    font-size: 1rem;
    font-weight: 500;
}

.holiday-destinations .destination-overlay a.view-details-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.holiday-destinations .destination-overlay a.view-details-btn:hover {
    background-color: #0056b3;
}

.holiday-destinations .destination-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -9999px;
}

/* ===============================
   Trending Hotels Section
================================= */

.trending-hotels .hotel-item {
     text-align: center;
    height: 100%;
    box-shadow: rgba(0, 0, 6, 0.06) 0px 0px 7px inset;
    position: relative;
    background: rgb(255, 255, 255);
    border-radius: 16px;
    transition: 0.4s;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(221, 221, 221);
    overflow: hidden;
}

.trending-hotels .hotel-content{
    padding: 15px;
}

.trending-hotels .hotel-title {
     font-size: 18px;
    margin-bottom: 10px;
}

.trending-hotels .hotel-rate{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    justify-content: space-between;
    margin-top:10px;
    font-size:13px;
    color:#6b7280;
}

.trending-hotels .hotel-rate .badge{
    display:flex;
    align-items:center;
    gap:3px;
    background:rgba(255, 193, 7, 0.12);
    color:#ffc107;
    padding:6px 10px;
    font-size:10px;
    font-weight:600;

}

.trending-hotels .hotel-rate-review{
    background:#ffc107;
    color:#1b2b41;

    padding:4px 8px;
    border-radius:6px;

    font-size:12px;
    font-weight:700;

    line-height:1;
}

.trending-hotels .hotel-rate-type{
    background:rgba(255, 193, 7, 0.12);
    color:#1b2b41;

    padding:4px 10px;
    border-radius:20px;

    font-size:12px;
    font-weight:600;

    border:1px solid rgba(255, 193, 7, 0.35);
}

/* Mobile */
@media(max-width:576px){

    .trending-hotels .hotel-rate{
        gap:8px;
        font-size:12px;
    }

    .trending-hotels.hotel-rate .badge,
    .hotel-rate-review,
    .hotel-rate-type{
        font-size:11px;
    }

}



/* ===============================
   Holiday Card Wrapper Styling
================================= */
.holidayTrendsWrapper .holidayCardWrapper_box {
    max-width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.holidayTrendsWrapper .holidayCardWrapper_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Header */
.holidayTrendsWrapper .tour-header {
    padding: 16px 18px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.holidayTrendsWrapper .tour-title {
    font-size: 18px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #0f172a;
    margin: 0;
}

.holidayTrendsWrapper .tour-title a {
    color: inherit;
    text-decoration: none;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.holidayTrendsWrapper .tour-title a:hover {
    color: var(--primary, #2563eb);
    text-decoration: underline;
}

/* Media */
.holidayTrendsWrapper .tour-media {
    position: relative;
    height: 220px;
    overflow: hidden;
    cursor: pointer;
    border-bottom: 1px solid #e5e7eb;
}

.holidayTrendsWrapper .tour-media .img-wrapper{
    height: 100%;
}

.holidayTrendsWrapper .tour-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.holidayTrendsWrapper .tour-media:hover img {
    transform: scale(1.05);
}

/* Badges */
.holidayTrendsWrapper .tour-badge {
    position: absolute;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(135deg, var(--tts-buttton-bg, #4f46e5), var(--tts-buttton-bg1, #6366f1));
    z-index: 2;
    white-space: nowrap;
}

.holidayTrendsWrapper .tour-badge-left {
    top: 16px;
    left: 0;
    border-radius: 0 10px 10px 0;
}

.holidayTrendsWrapper .tour-badge-right {
    bottom: 16px;
    right: 16px;
    border-radius: 20px;
}

/* Body */
.holidayTrendsWrapper .tour-body {
    padding: 18px;
}

/* Features */
.holidayTrendsWrapper .tour-features {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.holidayTrendsWrapper .feature {
    text-align: center;
    font-size: 13px;
    color: #334155;
    max-width: 120px;
}

.holidayTrendsWrapper .feature p {
    margin: 0;
}

.holidayTrendsWrapper .feature i,
.holidayTrendsWrapper .feature span svg {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--tts-buttton-bg);
}

/* Tour Route */
.holidayTrendsWrapper .tour-route {
    display: flex;
    font-size: 13px;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.holidayTrendsWrapper .tour-route .redText {
    font-weight: 600;
    color: var(--tts-buttton-bg);
}

/* Footer */
.holidayTrendsWrapper .tour-footer {
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.holidayTrendsWrapper .tour-price {
    font-size: 14px;
    color: #0f172a;
}

.holidayTrendsWrapper .tour-price small {
    display: block;
    font-weight: 400;
    color: #6b7280;
}

.holidayTrendsWrapper .tour-price strong.slashed {
    margin-right: 4px;
    font-size: 18px;
}

/* Button */
.holidayTrendsWrapper .tour-btn {
    padding: 8px 16px;
    background: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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


/* Optional: Smooth scrollbar styling */
.holidayTrendsWrapper .tour-features::-webkit-scrollbar,
.holidayTrendsWrapper .tour-route::-webkit-scrollbar {
    height: 6px;
}

.holidayTrendsWrapper .tour-features::-webkit-scrollbar-thumb,
.holidayTrendsWrapper .tour-route::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

/* ==============================
   Transfer Section Base
================================ */
.transfer-slider {
    position: relative;
}

.transfer-slider .transfer-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e1e1e1;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 350px;
    display: flex;
    flex-direction: column;
}

.transfer-slider .transfer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

.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: #333;
}

.transfer-slider .transfer-details {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #555;
    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: #222;
}

.transfer-slider .transfer-details .price {
    margin-top: 10px;
    font-size: 16px;
    color: #000;
}

.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: 0.3s ease;
}

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

@media (max-width: 768px) {
    .transfer-slider .transfer-image {
        height: 160px;
    }
}