.toast-message {
    position: fixed;
    top: 90px;
    right: 20px;
    padding: 14px 22px;
    border-radius: 8px;
    font-size: 15px;
    color: #fff;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.toast-message.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-success {
    background: #28a745;
}

.toast-error {
    background: #dc3545;
}

.hotel-search-wrapper {
    padding: 15px;
}

.hotel-search-box {
    width: 100%;
}

.hotel-search-label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 500;
}

.hotel-search-input {
    width: 100%;
    height: 48px;
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
}

.hotel-search-input:focus {
    border-color: #ff6600;
}

.hotel-search-btn {
    width: 100%;
    height: 48px;
    background-color: #ff6600;
    color: #ffffff;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;

    /* 👇 THIS IS THE FIX */
    margin-top: 26px;
}

.hotel-search-btn:hover {
    background-color: #e65c00;
}

.video-glass-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 5px;
    scroll-snap-type: x mandatory;
}

.video-glass-carousel::-webkit-scrollbar {
    height: 8px;
}

.video-glass-carousel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.video-glass-card {
    min-width: 340px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 15px;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.video-glass-card:hover {
    transform: translateY(-6px);
}

.video-glass-card iframe {
    width: 100%;
    height: 200px;
    border-radius: 14px;
}

.video-glass-card h4 {
    margin: 12px 0 4px;
    font-size: 18px;
    font-weight: 600;
}

.video-glass-card span {
    font-size: 14px;
    color: #666;
}

.video-glass-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 5px;
    scroll-snap-type: x mandatory;
}

.video-glass-carousel::-webkit-scrollbar {
    height: 8px;
}

.video-glass-carousel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.video-glass-card {
    min-width: 340px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 15px;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.video-glass-card:hover {
    transform: translateY(-6px);
}

.video-glass-card iframe {
    width: 100%;
    height: 200px;
    border-radius: 14px;
}

.video-glass-card h4 {
    margin: 12px 0 4px;
    font-size: 18px;
    font-weight: 600;
}

.video-glass-card span {
    font-size: 14px;
    color: #666;
}
@media (min-width: 992px) {
    #common_banner {
        height: 85vh; /* 🔥 Offers & Deals tak perfect */
        display: flex;
        align-items: center;
    }
}

/* MOBILE & TABLET - untouched */
@media (max-width: 991px) {
    #common_banner {
        height: auto;
    }
}

/* ===== SECTION ===== */
#explore {
    padding: 60px 0;
    background: #fff;
}

.big-text {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
}

/* ===== SWIPER ===== */
.quicklinks {
    width: 90%;
    margin: auto;
}

.swiper-slide {
    text-align: center;
}

.swiper-wrapper {
    margin-top: 34px;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
}

/* 🔥 Black & White by default */
.quick-link img {
    width: 80px;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

/* 🎨 Natural color on hover */
.quick-link:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.mid-text {
    margin-top: 12px;
    font-weight: 600;
    font-size: 16px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .big-text {
        font-size: 2rem;
    }
}

/* SECTION */
.honeymoon-section {
    width: 100%;
    padding: 40px 0 80px;
    background: #fff;
}

/* HERO */
.honeymoon-hero {
    width: 92%;
    height: 300px;
    margin: auto;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    background: #000;
}

/* VIDEO */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.honeymoon-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* TEXT */
.hero-content {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
}

.hero-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.explore-btn {
    padding: 10px 22px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

/* SLIDER */
.honeymoon-slider {
    width: 92%;
    margin: -90px auto 0;
}

/* CARD */
.trip-card {
    height: 280px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.trip-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CARD OVERLAY */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
}

.card-overlay h3 {
    font-size: 22px;
}

.card-overlay p {
    font-size: 13px;
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content {
        left: 25px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .trip-card {
        height: 240px;
    }
}

#makegray {
    background: linear-gradient(180deg, #f7f7f7 0%, #ededed 100%);
}

.border-card {
    border: 2px solid #f1f1f1;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.35s;
    background: #fff;
}

.border-card:hover {
    border-color: #ff7a00;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

/* IMAGE SIZE REDUCED */
.international-package-slider .theme_two_box_img img {
    height: 190px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .international-package-slider .theme_two_box_img img {
        height: 170px;
    }
}

/* NAV */
.international-package-slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.international-package-slider .owl-nav button {
    pointer-events: auto;
    background: #fff !important;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    font-size: 18px !important;
    color: #000 !important;
    transition: 0.3s;
}

.international-package-slider .owl-nav button:hover {
    background: #ff7a00 !important;
    color: #fff !important;
}

.international-package-slider .owl-nav .owl-prev {
    margin-left: -22px;
}

.international-package-slider .owl-nav .owl-next {
    margin-right: -22px;
}

@media (max-width: 768px) {
    .international-package-slider .owl-nav {
        display: none;
    }
}

/* DESCRIPTION */
.pkg-desc {
    font-size: 14px;
    color: #6c757d;
    margin-top: 6px;
}

/* ===== PACKAGE CARD UPGRADE ===== */
.cruise_search_item {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.35s ease;
    border: 1px solid #f1f1f1;
}
.cruise_search_item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.cruise_item_img {
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
}
.cruise_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.cruise_search_item:hover img {
    transform: scale(1.06);
}

/* TITLE */
.cruise_content_top_left h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
}

/* META */
.cruise_content_top_left ul li {
    font-size: 13px;
    color: #777;
}
.cruise_content_top_left p {
    font-size: 14px;
    color: #666;
}

/* RATING */
.cruise_content_top_right h5 {
    font-weight: 700;
    color: #7c3aed;
}
.cruise_content_top_right h4 {
    font-size: 13px;
    color: #999;
}

/* PRICE */
.cruise_content_middel_right h3 {
    font-size: 26px;
    font-weight: 800;
    color: #ff7a00;
}
.cruise_content_middel_right sub {
    font-size: 13px;
    color: #777;
}

/* BENEFITS */
.cruise_content_bottom_left ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cruise_content_bottom_left ul li {
    list-style: none;
    background: #f5f7ff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    color: #444;
}

/* BUTTON */
.cruise_content_bottom_right .btn {
    border-radius: 10px;
    padding: 10px 22px;
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
    .cruise_item_img {
        height: 190px;
        margin-bottom: 12px;
    }
    .cruise_content_middel_wrapper {
        flex-direction: column;
        gap: 12px;
    }
    .cruise_content_middel_right h3 {
        font-size: 22px;
    }
}

/* Grid */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card */
.destination-card {
    position: relative;
    height: 280px;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
}

/* Image */
.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover zoom */
.destination-card:hover img {
    transform: scale(1.08);
}

/* Overlay */
.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.65));
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text */
.destination-overlay h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Tablet */
@media (max-width: 991px) {
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destination-card {
        height: 240px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .destination-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .destination-card {
        height: 220px;
        border-radius: 12px;
    }

    .destination-overlay h3 {
        font-size: 20px;
    }
}
/* ===== HEADING ===== */
.cool-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.cool-heading h2 {
    font-size: 28px;
    font-weight: 800;
}

.cool-heading h5 {
    color: #777;
    font-size: 14px;
}

/* ===== RATING BADGE ===== */
.rating-box h4 {
    font-weight: 700;
    color: #6f42c1;
}

.rating-box h6 {
    font-size: 18px;
    font-weight: 700;
}

.rating-box p {
    font-size: 13px;
    color: #777;
}

/* LIST PAGE RATING */
.rating-badge {
    margin-bottom: 10px;
}

.badge-score {
    background: #6f42c1;
    color: #fff;
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 700;
}

.badge-text {
    color: #6f42c1;
    font-weight: 600;
    margin-left: 6px;
}

.badge-reviews {
    font-size: 13px;
    color: #777;
}

/* ===== INFO STRIP ===== */
.cool-info-strip {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* ===== PACKAGE INFO STRIP ===== */

.tour_details_top_bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

/* Each item */
.toru_details_top_bottom_item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px 16px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    width: calc(50% - 10px);
    /* Desktop: 2 in a row */
}

/* Icon */
.tour_details_top_bottom_icon {
    width: 44px;
    height: 44px;
    background: #f3f0ff;
    color: #7b4dff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Text */
.tour_details_top_bottom_text h5 {
    font-size: 14px;
    margin-bottom: 2px;
    font-weight: 600;
}

.tour_details_top_bottom_text p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {
    .tour_details_top_bottom {
        flex-direction: column;
    }

    .toru_details_top_bottom_item {
        width: 100%;
        /* 🔥 ONE COLUMN */
    }
}

.info-card {
    flex: 1 1 calc(25% - 14px);
    background: #fff;
    border-radius: 14px;
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.info-icon {
    width: 42px;
    height: 42px;
    background: #f4f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6f42c1;
    font-size: 18px;
}

.info-text span {
    font-size: 12px;
    color: #777;
}

.info-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {
    .cool-heading {
        flex-direction: column;
        text-align: left;
    }

    .rating-box {
        background: #f7f7ff;
        padding: 12px;
        border-radius: 12px;
        margin-top: 10px;
    }

    .cool-info-strip {
        gap: 10px;
    }

    .info-card {
        flex: 1 1 100%;
    }
}

/* ===== HEADING + RATING ===== */

.tour_details_heading_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.tour_details_top_heading h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}

.tour_details_top_heading h5 {
    font-size: 14px;
    color: #666;
}

/* ===== RATING BADGE ===== */

.rating_badge {
    background: #f5f0ff;
    border-radius: 14px;
    padding: 14px 18px;
    text-align: center;
    min-width: 150px;
}

.rating_score {
    font-size: 20px;
    font-weight: 700;
    color: #7b4dff;
}

.rating_text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.rating_reviews {
    font-size: 13px;
    color: #666;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
    .tour_details_heading_wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .rating_badge {
        width: 100%;
        max-width: 260px;
    }
}

.tour-main-slider {
    width: 100%;
}

.tour-img-box {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
}

/* Desktop view */
@media (min-width: 992px) {
    .tour-img-box {
        width: 736px;
        height: 491px;
    }
}

/* Mobile view */
@media (max-width: 991px) {
    .tour-img-box {
        width: 367px;
        height: 245px;
        margin: 0 auto;
    }
}

/* Image auto adjust */
.tour-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 🔥 important */
    display: block;
}
/* ===== ITINERARY SECTION ===== */

.itinerary-section {
    margin-top: 40px;
}

.itinerary-card {
    display: flex;
    gap: 16px;
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.itinerary-card:hover {
    transform: translateY(-2px);
}

/* Day badge */
.itinerary-day {
    min-width: 70px;
    height: 70px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6a5cff, #8f6bff);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Accordion cleanup */
.itinerary-accordion .accordion-item {
    border: none;
    width: 100%;
}

.itinerary-accordion .accordion-button {
    background: transparent;
    font-weight: 600;
    padding: 6px 0;
    box-shadow: none;
}

.itinerary-accordion .accordion-button:not(.collapsed) {
    color: #6a5cff;
}

.itinerary-accordion .accordion-button::after {
    background-size: 14px;
}

/* Body */
.itinerary-accordion .accordion-body {
    padding: 12px 0 0;
}

/* Bullet points */
.itinerary-points {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.itinerary-points li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: 15px;
    color: #444;
}

.itinerary-points i {
    color: #6a5cff;
    margin-top: 4px;
}

/* Mobile fix */
@media (max-width: 768px) {
    .itinerary-card {
        flex-direction: column;
    }

    .itinerary-day {
        width: 100%;
        height: auto;
        padding: 10px;
        border-radius: 10px;
    }
}
/* ===== INCLUDED / EXCLUDED ===== */

.include-exclude-section {
    margin-top: 40px;
}

.include-exclude-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

/* Paragraph text */
.include-exclude-desc {
    font-size: 15px;
    color: #555;
    margin-bottom: 14px;
    line-height: 1.7;
}

/* Included list */
.include-list ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 18px;
}

.include-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #333;
}

/* Icon */
.include-list i {
    color: #28a745;
    margin-top: 4px;
    font-size: 16px;
}

/* Mobile */
@media (max-width: 768px) {
    .include-list ul {
        grid-template-columns: 1fr;
    }
}

/* ===== SIDEBAR CARD ===== */

.sidebar-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.tour_details_right_box_heading h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

/* Sticky */
.sticky-card {
    position: sticky;
    top: 100px;
}

/* ===== VALIDITY ===== */
.cool-validity {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.valid_date_chip {
    background: #f4f6ff;
    border-radius: 10px;
    padding: 10px 12px;
    text-align: center;
    flex: 1;
}

.valid_date_chip span {
    display: block;
    font-size: 12px;
    color: #666;
}

.valid_date_chip strong {
    font-size: 14px;
    color: #333;
}

/* ===== LIST ===== */
.cool-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cool-list li {
    display: flex;
    gap: 10px;
    font-size: 15px;
    padding: 6px 0;
    color: #444;
}

.cool-list i {
    color: #28a745;
    margin-top: 4px;
}

/* ===== PRICE ===== */
.price-box {
    border-top: 1px dashed #ddd;
    padding-top: 16px;
    margin-top: 16px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
}

.price-box h3 {
    font-size: 26px;
    font-weight: 800;
    color: #6f42c1;
}

.price-box small {
    font-size: 13px;
    color: #666;
}

/* Mobile */
@media (max-width: 768px) {
    .sticky-card {
        position: static;
    }
}

/* ONLY HOT DEAL CARD */
.hotdeal-card {
    height: 330px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    display: grid;
    grid-template-rows: 220px auto;
}

/* IMAGE */
.hotdeal-card .theme_two_box_img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.hotdeal-card .theme_two_box_img img {
    width: 100%;
    height: 80%;
    object-fit: cover;
}

/* LOCATION TAG */
.hotdeal-card .theme_two_box_img p {
    position: absolute;
    /* bottom:10px; */
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
}

/* CONTENT — NO EXTRA SPACE */
.hotdeal-card .theme_two_box_content {
    padding: 14px 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* TITLE */
.hotdeal-card h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    /* line-height:1.3; */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* PRICE */
.hotdeal-card h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #7b3cf0;
}

.hotdeal-card h3 span {
    font-size: 13px;
    color: #666;
}

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

/* MOBILE */
@media (max-width: 767px) {
    .hotdeal-card {
        height: 350px;
        grid-template-rows: 200px auto;
    }
}

/* Equal column height */
.package-col {
    display: flex;
}

/* Card full height */
.package-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
}

/* Image box same height */
.package-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Location text */
.package-img p {
    position: absolute;
    bottom: 10px;
    left: 12px;
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

/* Content equal height */
.package-content {
    flex-grow: 1;
    padding: 15px;
}

.package-content h4 {
    text-align: center;
    color: rgb(241, 172, 45);
}

@media (max-width: 768px) {
    /* Section padding balanced */
    #explore_area .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Card width natural rahe */
    .border-card {
        width: 90%;
        margin: 0;
        margin-left: 20px;
    }

    /* Image height mobile */
    .theme_two_box_img {
        height: 180px;
    }
}

.international-package-slider .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.international-package-slider .owl-nav button {
    background: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
}

.international-package-slider .owl-nav i {
    font-size: 16px;
    color: #333;
}

/* Mobile me arrows thode niche */
@media (max-width: 768px) {
    .international-package-slider .owl-nav {
        top: 45%;
        padding: 20px;
    }
}

/* WRAPPER */
.hs-hottrip-wrapper {
    background: #f7f7f7;
    padding-bottom: 80px;
}

/* VIDEO */
.hs-video-box {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.hs-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hs-video-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
}

.hs-video-content h1 {
    font-size: 42px;
    font-weight: 700;
}

.hs-explore-btn {
    margin-top: 15px;
    padding: 10px 28px;
    background: #8f3df4;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
}

/* SLIDER (👇 cards ko niche laaya) */
.hs-trip-slider {
    position: relative;
    margin-top: -35px;
    /* ❌ -80px hata diya */
    padding: 0 70px 40px;
}

/* CARD */
.hs-trip-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.hs-trip-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.hs-card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    color: #fff;
}

/* ARROWS (👇 desktop + mobile dono me visible) */
.hs-slider-prev,
.hs-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 99;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hs-slider-prev {
    left: 0;
}

.hs-slider-next {
    right: 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .hs-video-box {
        height: 55vh;
    }

    .hs-trip-slider {
        padding: 0 15px 30px;
    }

    .hs-trip-card {
        width: 343px;
        margin-left: 33px;
    }

    .hs-trip-card img {
        height: 220px;
    }

    .hs-video-content h1 {
        font-size: 26px;
    }
}


.hs-trip-card {
    display: block;          /* 🔥 MOST IMPORTANT */
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #000;
}
.hs-trip-card img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;        /* crop karega, phailaega nahi */
    object-position: center;
    display: block;
}
.hs-trip-slider .swiper-slide {
    height: 300px;
}
@media (max-width: 768px) {
    .hs-trip-slider .swiper-slide {
        height: 220px;
    }
}

/*home page offer and deals*/
.offers-deals-slider .theme_common_box_two {
    width: 100%;
    max-width: 300px;   /* 🔥 360 → 300 */
}

/* ===============================
   OFFERS & DEALS – CLEAN LAYOUT
   =============================== */

.offers-deals-slider {
    padding: 10px 0;
}

/* Owl item fix */
.offers-deals-slider .owl-item {
    display: flex;
    justify-content: center;
}

/* Card */
.offers-deals-slider .theme_common_box_two {
    width: 100%;
    max-width: 360px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.offers-deals-slider .theme_common_box_two:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Image wrapper */
.offers-deals-slider .theme_two_box_img {
    height: 230px;
    position: relative;
    overflow: hidden;
}

/* Image */
.offers-deals-slider .theme_two_box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Location badge */
.offers-deals-slider .theme_two_box_img p {
    position: absolute;
    bottom: 12px;
    left: 12px;
    margin: 0;
    padding: 6px 12px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Content */
.offers-deals-slider .theme_two_box_content {
    padding: 18px 16px;
    text-align: center;
}

/* Title */
.offers-deals-slider .theme_two_box_content h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #7b2cff;
}

/* Owl arrows */
.offers-deals-slider .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.offers-deals-slider .owl-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #7b2cff !important;
    color: #fff !important;
    font-size: 18px;
}

.offers-deals-slider .owl-nav button:hover {
    background: #5e1fd6 !important;
}


    .banner-wrapper {
    position: relative;
}

#common_banner {
    height: 520px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.6s ease-in-out;
}

/* arrows */
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

.banner-arrow.prev { left: 20px; }
.banner-arrow.next { right: 20px; }

.banner-arrow:hover {
    background: #000;
    color: #fff;
}


