/* =========================================
   SPECIAL HOLIDAY OFFERS
========================================= */

.special-offers {
    padding: 55px 0;
    background: #f7f9fb;
}

.offers-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
}

.offers-label {
    display: block;
    color: #ff5a00;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.offers-header h2 {
    margin: 0;
    color: #003b70;
    font-size: 26px;
    font-weight: 600;
}

.offers-header p {
    margin: 6px 0 0;
    color: #777;
    font-size: 13px;
}

.offers-view-all {
    color: #ff5a00;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.offers-view-all:hover {
    text-decoration: underline;
}


/* Offers Grid */

.offers-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 18px;
}


/* Offer Card */

.offer-box {
    height: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #222;
}

.offer-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    opacity: 0.5;
}

.offer-box:hover img {
    transform: scale(1.07);
}


/* Dark Image Overlay */

.offer-box::after {
    content: "";
    position: absolute;
    inset: 0;

}


/* Content */

.offer-content {
    position: absolute;
    z-index: 2;

    left: 20px;
    right: 20px;
    bottom: 18px;

    color: white;
}

.discount-badge {
    display: inline-block;

    background: #ff5a00;
    color: white;

    padding: 5px 9px;
    border-radius: 4px;

    font-size: 10px;
    font-weight: 700;
}

.offer-content h3 {
    margin: 9px 0 4px;

    font-size: 19px;
    font-weight: 600;
}

.offer-content p {
    margin: 0 0 7px;

    font-size: 11px;
    color: rgba(255,255,255,.85);
}


/* Price */

.offer-price {
    display: flex;
    align-items: center;
    gap: 9px;
}

.old-price {
    font-size: 11px;
    color: rgba(255,255,255,.65);
    text-decoration: line-through;
}

.offer-price strong {
    font-size: 18px;
    color: white;
}


/* Button */

.offer-btn {
    display: inline-block;

    margin-top: 10px;

    padding: 7px 12px;

    background: white;
    color: #003b70;

    border-radius: 4px;

    font-size: 11px;
    font-weight: 600;

    text-decoration: none;

    transition: .2s;
}

.offer-btn:hover {
    background: #ff5a00;
    color: white;
}
.destination-banner {
    position: relative;
    height: 350px;
    background: #53647f;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.destination-banner-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.destination-banner-bg span {
    font-size: 175px;
    font-weight: 700;
    color: rgba(4, 25, 65, 0.8);
}

.destination-banner-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #FFF;

}

.banner-section {
    position: relative;
    /* height: 600px; */
    overflow: visible;
}

.banner-section .video-layer {
    position: absolute;
    inset: 0;
}

.banner-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-section .video-layer::after {
    content: "";
    position: absolute;
    inset: 0;
}

/* Hero text */
.banner-content {
    position: relative;
    z-index: 2;
    top: 40%;
    text-align: center;
}

.banner-content span {
    color: #ff641e !important;
    font-size: 16px;
    font-weight: 600;
}

.banner-content h1 {
    color: #fff !important;
    font-size: 42px;
    font-weight: 700;
    margin: 10px 0 12px;
}

.banner-content p {
    color: #fff !important;
    font-size: 17px;
    margin-bottom: 22px;
}

.banner-content .theme-btn {
    background: #ff641e;
    color: #fff !important;
    padding: 15px 32px;
    border-radius: 6px;
}




/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .special-offers {
        padding: 40px 15px;
    }

    .offers-header {
        display: block;
    }

    .offers-view-all {
        display: inline-block;
        margin-top: 10px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .offer-box {
        height: 250px;
    }

    .section-header {
        /* display: block; */
        align-items: end;

    }

    .section-header a {
        color: var(--primary);
        font-weight: 600;
    }
}

/* =========================================================
   MOBILE RESPONSIVE FIX - PACKAGE DETAILS PAGE
   ========================================================= */

@media (max-width: 767px) {

    /* Main container */
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 14px;
        margin-bottom: 20px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Package hero image */
    .pkg-hero {
        width: 100%;
        margin: 0 0 25px;
    }

    .pkg-hero img {
        width: 100%;
        height: auto;
        max-height: 380px;
        object-fit: cover;
        display: block;
        border-radius: 12px;
    }

    /* =====================================================
       PACKAGE MAIN LAYOUT
       ===================================================== */

    .detail-layout {
        display: block !important;
        width: 100%;
    }

    .detail-main {
        width: 100% !important;
        min-width: 0;
    }

    /* Package title */
    .detail-main h1 {
        font-size: 26px !important;
        line-height: 1.3;
        margin: 0 0 25px;
    }

    /* =====================================================
       PACKAGE META / FEATURES
       ===================================================== */

    .pkg-meta {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px 10px !important;
        margin: 0 0 30px !important;
        padding: 0 !important;
        box-sizing: border-box;
    }

    .pkg-meta > *,
    .meta-item {
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 10px 5px !important;
        text-align: center !important;
        box-sizing: border-box;
    }

    .pkg-meta i,
    .meta-item i {
        display: block;
        margin: 0 auto 8px !important;
        font-size: 25px !important;
    }

    .pkg-meta strong,
    .meta-item strong {
        display: block;
        font-size: 17px;
        line-height: 1.2;
    }

    .pkg-meta span,
    .meta-item span {
        display: block;
        font-size: 14px;
        margin-top: 5px;
    }

    /* =====================================================
       INCLUSION GRID
       ===================================================== */

    .inclusion-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .inclusion-item {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box;
        text-align: center;
    }

    /* =====================================================
       TABS
       ===================================================== */

    .tabs {
        width: 100%;
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden;
        white-space: nowrap;
        gap: 0;
        margin-top: 20px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .tabs::-webkit-scrollbar {
        display: none;
    }

    .tabs .tab {
        flex: 0 0 auto !important;
        padding: 14px 20px !important;
        font-size: 14px;
    }

    /* =====================================================
       TAB CONTENT
       ===================================================== */

    .tab-content {
        width: 100% !important;
        box-sizing: border-box;
    }

    /* =====================================================
       CUSTOMIZE SIDEBAR
       ===================================================== */

    .customize-sidebar {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 20px 0 0 !important;
        padding: 22px !important;
        box-sizing: border-box;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .customize-sidebar h2,
    .customize-sidebar h3 {
        font-size: 21px !important;
        line-height: 1.3;
        margin-top: 0;
    }

    /* Price */
    .pkg-price {
        font-size: 24px !important;
    }

    /* Component list */
    .component-list {
        width: 100%;
    }

    .component-item {
        width: 100% !important;
        box-sizing: border-box;
    }

    /* Price breakdown */
    .price-breakdown {
        width: 100%;
        box-sizing: border-box;
    }

    .price-row {
        width: 100%;
        box-sizing: border-box;
    }

    /* =====================================================
       FOOTER
       ===================================================== */

    footer {
        margin-top: 40px;
    }

    footer .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 400px) {

    .container {
        padding-left: 19px;
        padding-right: 19px;
    }

    .detail-main h1 {
        font-size: 24px !important;
    }

    .pkg-meta {
        gap: 12px 6px !important;
    }

    .pkg-meta > *,
    .meta-item {
        padding: 8px 3px !important;
    }

    .pkg-meta i,
    .meta-item i {
        font-size: 23px !important;
    }

    .customize-sidebar {
        padding: 20px !important;
    }
}







.testimonials-section {
    background: #f7f9fb;
    padding: 60px 0 !important;
    height: auto !important;
    min-height: 0 !important;
}

.testimonials-slider {
    height: 300px !important;
    overflow: hidden;
}

.testimonials-slider .swiper-wrapper {
    height: 300px !important;
}

.testimonials-slider .swiper-slide {
    height: 300px !important;
}

.review-card {
    height: 100%;
    box-sizing: border-box;
    padding: 25px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stars {
    color: #ff5a00;
    font-size: 17px;
}

.trip {
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.review-text {
    color: #52606d;
    line-height: 1.6;
    margin: 18px 0;
    flex: 1;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.review-footer img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.review-footer strong,
.review-footer small {
    display: block;
}

.review-footer strong {
    color: #003b70;
}

.review-footer small {
    color: #777;
    margin-top: 3px;
}