﻿/*Side Bar*/
.sidebar {
    overflow-x: visible;
}

.widget {
    padding: 12px;
}

.widget-services ul li a span {
    font-size: 12px;
}

.widget-services ul li a {
    border-radius: 20px !important;
}

.package-duration-sidebar {
    display: inline-block;
    background: #e8f8fa;
    color: #2f6d75;
    border: 1px solid #73ccd2;
    border-radius: 10px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    margin-bottom: 8px;
}

.package-price-sidebar {
    /*display: block;*/
    font-size: 13px;
    font-weight: 700;
    color: #f25a38;
    margin-top: 3px;
}

.package-old-price-sidebar {
    color: #999;
    font-size: 11px;
    text-decoration: line-through;
    margin-right: 6px;
    font-weight: 500;
}

.package-save-sidebar {
    display: inline-block;
    margin-left: 6px;
    background: #eefafb;
    color: #2d7f88;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.3;
}
/*Side Bar*/

/*Page Header*/
.package-header-card {
    background: #fff;
    border: 1px solid #e8eef1;
    border-top: 4px solid #73ccd2;
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,.06);
}

.package-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.package-header-title h2 {
    color: #18344A;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.package-header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: 18px;
    flex-wrap: wrap;
    gap: 15px;
}

.package-book-btn {
    background: #73ccd2;
    color: #fff;
    border-radius: 25px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

    .package-book-btn:hover {
        background: #5cbfc6;
        color: #fff;
    }

.original-price {
    color: #999 !important;
    text-decoration: line-through !important;
    font-size: 14px !important;
}

.sale-price {
    color: #f25a38 !important;
    font-size: 30px !important;
    font-weight: 700 !important;
}

.discount-tag {
    background: #eefafb !important;
    color: #2d7f88 !important;
    padding: 5px 10px !important;
    border-radius: 20px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
}

.price-row {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.package-duration {
    display: inline-block;
    background: #e8f8fa;
    color: #2f6d75;
    border: 1px solid #73ccd2;
    border-radius: 30px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}

@media(max-width:767px) {

    .package-header-top,
    .package-header-bottom {
        display: block;
    }

    .package-book-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .package-header-title h2 {
        font-size: 22px;
    }
}


/*Page Header*/



/* Selected Package */

.widget-services ul li a.active-package {
    background: #73ccd2;
}



/*CTA Button*/
.pkg-cta-section {
    background: linear-gradient(135deg, #f0fbfc 0%, #e4f7f8 100%);
    border-radius: 14px;
    border: 1px solid #d4eef0;
    text-align: center;
    padding: 44px 40px;
    margin-top: 30px; /* reduced from 40px */
}

.pkg-cta-btn {
    display: inline-block;
    background: #73ccd2;
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 50px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 16px rgba(115,204,210,0.35);
    transition: all 0.3s ease;
}

    .pkg-cta-btn:hover {
        background: #5bb8bf;
        box-shadow: 0 6px 20px rgba(115,204,210,0.50);
        color: #fff !important;
        transform: translateY(-2px);
        text-decoration: none;
    }

    .pkg-cta-btn i {
        margin-left: 8px;
    }
/*CTA Button*/

/*Package Banner*/
/* =====================================================
   PACKAGE BANNER
   Desktop : 1900x600 → full width, fixed height
   Mobile  : auto height, cropped center
   ===================================================== */
.pkg-banner-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
   height: 400px; /* Desktop height */
    background: #1a1a2e;
}

.pkg-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops and centers – no stretch */
    object-position: center;
    display: block;
}
/* Dark overlay for text readability */
.pkg-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.55));
}

.pkg-banner-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* ---- Tablet ---- */
@media (max-width: 992px) {
    .pkg-banner-wrapper {
        height: 300px;
    }

    .pkg-banner-title {
        font-size: 26px;
    }
}

/* ---- Mobile ---- */
@media (max-width: 576px) {
    .pkg-banner-wrapper {
        height: 200px;
    }

    .pkg-banner-title {
        font-size: 20px;
    }
}
/*Package Banner*/