/********** Template CSS **********/
:root {
    --primary: #fea116;
    --light: #f1f8ff;
    --dark: #0f172b;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.5s ease-out,
        visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition:
        opacity 0.5s ease-out,
        visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 43, 0.7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}

/*** Service ***/
.service-item {
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    transition: 0.5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: 0.5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: 0.5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #ffffff !important;
}

/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background:
        linear-gradient(rgba(15, 23, 43, 0.1), rgba(15, 23, 43, 0.1)),
        url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

/*** Testimonial ***/
.testimonial {
    background:
        linear-gradient(rgba(15, 23, 43, 0.7), rgba(15, 23, 43, 0.7)),
        url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 30px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--primary);
    border-radius: 2px;
    font-size: 18px;
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: #ffffff;
}

/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: 0.5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}

/*** Footer ***/
.newsletter {
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    margin-top: -110px;
    padding-top: 180px;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #ffffff;
    border-radius: 35px;
    transition: 0.3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.gallery-box {
    height: 100%;
}

#mainBanquetImage {
    transition: 0.5s;
}

.banquet-thumb {
    transition: 0.4s;
    border: 3px solid transparent;
}

.banquet-thumb:hover {
    transform: scale(1.07);
}

.active-thumb {
    border: 3px solid #fea116;
}

#mainBanquetImage:hover {
    transform: scale(1.02);
}

.amenity-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px 15px;
    text-align: center;
    transition: 0.4s;
    height: 100%;
}

.amenity-item i {
    font-size: 38px;
    color: #fea116;
    margin-bottom: 15px;
}

.amenity-item h6 {
    margin: 0;
    font-weight: 600;
}

.amenity-item:hover {
    background: #fea116;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.amenity-item:hover i,
.amenity-item:hover h6 {
    color: #fff;
}

.amenities {
    height: 145px;
    /* सभी cards में same height */
    overflow-y: auto;
    /* ज्यादा amenities हों तो scroll */
    overflow-x: hidden;
    padding-right: 5px;
}

/* Optional: Scrollbar Styling */
.amenities::-webkit-scrollbar {
    width: 5px;
}

.amenities::-webkit-scrollbar-thumb {
    background: #0d6efd;
    border-radius: 10px;
}

.amenities::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.amenities .badge {
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 500;
}

.testimonial-item {
    height: 260px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.testimonial-item p {
    flex: 1;
    overflow: hidden;

    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;

    line-height: 1.7;
}

.testimonial-item .d-flex {
    margin-top: auto;
}

/* Mobile */

@media (max-width: 991px) {
    #mainBanquetImage {
        height: 380px !important;
    }

    .banquet-thumb {
        height: 90px !important;
    }
}

.menu-tabs {
    gap: 10px;
}

.menu-tabs .nav-link {
    border-radius: 30px;
    padding: 12px 22px;
    color: #555;
    background: #f5f5f5;
}

.menu-tabs .nav-link.active {
    background: var(--primary);
    color: #fff;
}

.menu-category {
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
}

.menu-category-title {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 15px;
    margin-bottom: 5px;
}

.menu-category-title h4 {
    margin: 0;
    text-transform: uppercase;
    font-size: 20px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px dashed #ddd;
}

.menu-item:last-child {
    border-bottom: 0;
}

.menu-item h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.menu-item h6 small {
    color: #777;
}

.menu-item strong {
    color: var(--primary);
    white-space: nowrap;
    font-size: 16px;
}

.dining-feature {
    background: #fff;
    padding: 35px 20px;
    border-radius: 8px;
    height: 100%;
    transition: 0.3s;
}

.dining-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.dining-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 25px;
}

.dining-cta {
    background: var(--primary);
    border-radius: 8px;
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

@media (max-width: 767px) {
    .menu-tabs {
        display: flex;
        flex-wrap: wrap;
    }

    .menu-tabs .nav-link {
        padding: 9px 14px;
        font-size: 13px;
    }

    .dining-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

.banquet-main-image {
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.banquet-main-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.banquet-gallery-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border: 0;
    padding: 12px 18px;
    border-radius: 5px;
}

.banquet-gallery-btn:hover {
    background: var(--primary);
}

/* Thumbnails */

.banquet-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.banquet-thumb {
    width: 105px;
    height: 75px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 5px;
    border: 2px solid transparent;
    cursor: pointer;
}

.banquet-thumb.active {
    border-color: var(--primary);
}

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

/* Quick Info */

.banquet-quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f8f8;
    padding: 15px;
    border-radius: 6px;
}

.banquet-quick-item i {
    color: var(--primary);
    font-size: 22px;
}

.banquet-quick-item small {
    display: block;
    color: #777;
}

.banquet-quick-item strong {
    display: block;
}

/* Specification */

.specification-card {
    background: #fff;
    text-align: center;
    padding: 30px 20px;
    height: 100%;
    border-radius: 8px;
    transition: 0.3s;
}

.specification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.specification-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 22px;
}

.specification-card h5 {
    margin-bottom: 10px;
}

.specification-card p {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

.specification-card strong {
    color: var(--primary);
}

/* =========================================================
   BANQUET SPECIFICATION GRID
========================================================= */

.specification-table {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* Each column */
.specification-column {
    border-bottom: 1px solid #e9e9e9;
}

/* Vertical divider */
.specification-column:nth-child(odd) {
    border-right: 1px solid #e9e9e9;
}

/* Remove bottom border from last row */
.specification-column:nth-last-child(-n + 2) {
    border-bottom: none;
}

/* Specification item */
.specification-table-row {
    min-height: 85px;
    padding: 20px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    background: #fff;

    transition: all 0.3s ease;
}

/* Hover */
.specification-table-row:hover {
    background: #fafafa;
}

/* Left side */
.specification-table-row span {
    display: flex;
    align-items: center;
    gap: 13px;

    color: #333;
    font-size: 15px;
    font-weight: 600;

    min-width: 190px;
}

/* Icons */
.specification-table-row span i {
    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(254, 161, 22, 0.12);
    color: #fea116;

    font-size: 15px;

    flex-shrink: 0;
}

/* Right value */
.specification-table-row strong {
    text-align: right;

    color: #666;
    font-size: 14px;
    font-weight: 500;

    line-height: 1.5;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
    .specification-column {
        border-right: none !important;
        border-bottom: 1px solid #e9e9e9 !important;
    }

    .specification-column:last-child {
        border-bottom: none !important;
    }

    .specification-table-row {
        min-height: 75px;
        padding: 16px 18px;
        gap: 15px;
    }

    .specification-table-row span {
        min-width: auto;
        font-size: 14px;
    }

    .specification-table-row span i {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .specification-table-row strong {
        font-size: 13px;
    }
}

/* Amenities */

.banquet-amenity {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    border-radius: 8px;
    transition: 0.3s;
}

.banquet-amenity:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.banquet-amenity > i {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 18px;
}

.banquet-amenity h6 {
    font-size: 17px;
    margin-bottom: 10px;
}

.banquet-amenity p {
    color: #777;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* Event Cards */

.event-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    transition: 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.event-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-content {
    padding: 25px;
    position: relative;
}

.event-content > i {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 12px;
}

.event-content h4 {
    margin-bottom: 10px;
}

.event-content p {
    color: #777;
    margin: 0;
}

/* Gallery */

.banquet-gallery-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 7px;
    cursor: pointer;
}

.banquet-gallery-image-small {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 7px;
    cursor: pointer;
}

/* CTA */

.banquet-cta {
    background: var(--primary);
    padding: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Modal */

.banquet-modal-image {
    width: 100%;
    height: 70vh;
    object-fit: contain;
    background: #000;
}

/* Mobile */

@media (max-width: 991px) {
    .banquet-main-image {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .banquet-main-image {
        height: 300px;
    }

    .specification-table-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .specification-table-row strong {
        text-align: left;
    }

    .banquet-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .banquet-gallery-image,
    .banquet-gallery-image-small {
        height: 250px;
    }
}

.celebration-image-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    grid-template-rows: 250px 250px;
    gap: 15px;
}

.celebration-image-large {
    grid-row: span 2;
    overflow: hidden;
    border-radius: 8px;
}

.celebration-image-small {
    overflow: hidden;
    border-radius: 8px;
}

.celebration-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.celebration-image-grid img:hover {
    transform: scale(1.05);
}

/* =========================================
   HIGHLIGHTS
========================================= */

.celebration-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f8f8;
    padding: 15px;
    border-radius: 6px;
}

.celebration-highlight i {
    color: var(--primary);
    font-size: 22px;
    width: 30px;
}

.celebration-highlight strong {
    display: block;
}

.celebration-highlight small {
    color: #777;
}

/* =========================================
   OCCASION CARDS
========================================= */

.occasion-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    transition: 0.3s;
}

.occasion-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.occasion-image {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.occasion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.occasion-card:hover .occasion-image img {
    transform: scale(1.06);
}

.occasion-icon {
    position: absolute;
    left: 20px;
    bottom: -22px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    border: 4px solid #fff;
}

.occasion-content {
    padding: 35px 25px 25px;
}

.occasion-content h4 {
    margin-bottom: 10px;
}

.occasion-content p {
    color: #777;
    line-height: 1.7;
}

.occasion-content a {
    color: var(--primary);
    font-weight: 500;
}

/* =========================================
   PACKAGE TABS
========================================= */

.package-tabs {
    gap: 10px;
}

.package-tabs .nav-link {
    border-radius: 30px;
    background: #f4f4f4;
    color: #555;
    padding: 12px 24px;
}

.package-tabs .nav-link.active {
    background: var(--primary);
    color: #fff;
}

/* =========================================
   PACKAGE CARD
========================================= */

.package-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    height: 100%;
    transition: 0.3s;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border: 2px solid var(--primary);
}

.package-image {
    height: 230px;
    position: relative;
    overflow: hidden;
}

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

.package-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: #fff;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 12px;
}

.package-content {
    padding: 25px;
}

.package-content h4 {
    margin-bottom: 10px;
}

.package-content > p {
    color: #777;
    min-height: 50px;
}

.package-price {
    margin: 20px 0;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 6px;
}

.package-price small {
    display: block;
    color: #777;
}

.package-price strong {
    font-size: 30px;
    color: var(--primary);
}

.package-price span {
    color: #777;
}

.package-content ul {
    padding: 0;
    margin: 0 0 25px;
    list-style: none;
}

.package-content li {
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
    color: #555;
}

.package-content li:last-child {
    border-bottom: 0;
}

.package-content li i {
    color: var(--primary);
    margin-right: 10px;
}

/* =========================================
   SIMPLE PACKAGE
========================================= */

.package-simple-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 35px 25px;
    height: 100%;
    text-align: center;
    transition: 0.3s;
}

.package-simple-card:hover,
.package-simple-card.active {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.package-simple-card > i {
    color: var(--primary);
    font-size: 35px;
    margin-bottom: 20px;
}

.package-simple-card h4 {
    margin-bottom: 10px;
}

.package-simple-card span {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.package-simple-card p {
    color: #777;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* =========================================
   INCLUSIONS
========================================= */

.inclusion-box {
    background: #fff;
    text-align: center;
    padding: 35px 20px;
    height: 100%;
    border-radius: 8px;
    transition: 0.3s;
}

.inclusion-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.inclusion-box > i {
    color: var(--primary);
    font-size: 30px;
    margin-bottom: 20px;
}

.inclusion-box h5 {
    margin-bottom: 10px;
}

.inclusion-box p {
    color: #777;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================
   CUSTOM PACKAGE
========================================= */

.custom-package {
    background: var(--primary);
    padding: 45px;
    border-radius: 8px;
}

/* =========================================
   GALLERY
========================================= */

.celebration-gallery-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.celebration-gallery-image-small {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

/* =========================================
   FINAL CTA
========================================= */

.celebration-cta {
    background: var(--primary);
    border-radius: 8px;
    padding: 55px 30px;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
    .celebration-image-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px;
    }

    .occasion-image {
        height: 220px;
    }

    .package-tabs {
        flex-wrap: wrap;
    }

    .package-tabs .nav-link {
        padding: 9px 15px;
        font-size: 13px;
    }

    .custom-package {
        padding: 30px 20px;
        text-align: center;
    }

    .celebration-gallery-image,
    .celebration-gallery-image-small {
        height: 250px;
    }
}

.package-detail-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 8px;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-main {
    position: relative;
    overflow: hidden;
}

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

.gallery-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
}

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

.gallery-view-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    border: 0;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 11px 18px;
    border-radius: 5px;
}

/* =========================================
   HEADER
========================================= */

.package-category {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 7px;
}

.package-rating {
    background: var(--primary);
    color: #fff;
    border-radius: 5px;
    padding: 8px 12px;
    text-align: center;
    min-width: 95px;
}

.package-rating span {
    font-weight: 700;
    font-size: 18px;
}

.package-rating i {
    font-size: 12px;
}

.package-rating small {
    display: block;
    font-size: 10px;
    margin-top: 2px;
}

.package-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.package-tags span {
    background: #f5f5f5;
    padding: 8px 13px;
    border-radius: 5px;
    font-size: 13px;
    color: #555;
}

.package-tags i {
    color: var(--primary);
    margin-right: 6px;
}

/* =========================================
   DETAIL SECTIONS
========================================= */

.detail-section {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    margin-top: 25px;
}

.detail-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.detail-section > p {
    color: #666;
    line-height: 1.8;
}

/* =========================================
   HIGHLIGHTS
========================================= */

.highlight-item {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 6px;
    height: 100%;
}

.highlight-item > i {
    color: var(--primary);
    font-size: 20px;
    margin-top: 3px;
}

.highlight-item strong {
    display: block;
    margin-bottom: 4px;
}

.highlight-item p {
    color: #777;
    font-size: 13px;
    margin: 0;
}

/* =========================================
   INCLUDED
========================================= */

.included-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.included-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.included-icon {
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 137, 0, 0.08);
    color: var(--primary);
    border-radius: 50%;
}

.included-row h5 {
    margin-bottom: 5px;
}

.included-row p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

.included-check {
    margin-left: auto;
    color: var(--primary);
    margin-top: 8px;
}

/* =========================================
   SECTION HEADING
========================================= */

.section-heading-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.section-heading-flex h3 {
    margin-bottom: 5px;
}

.section-heading-flex > a {
    color: var(--primary);
    white-space: nowrap;
}

/* =========================================
   MENU
========================================= */

.menu-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.menu-column {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 6px;
}

.menu-column h5 {
    color: var(--primary);
    margin-bottom: 12px;
}

.menu-column ul {
    margin: 0;
    padding-left: 20px;
}

.menu-column li {
    color: #666;
    padding: 4px 0;
}

/* =========================================
   DECORATION
========================================= */

.decoration-card {
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 7px;
    height: 100%;
}

.decoration-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.decoration-card > div {
    padding: 18px;
}

.decoration-card h5 {
    margin-bottom: 7px;
}

.decoration-card p {
    color: #777;
    font-size: 14px;
    margin: 0;
}

/* =========================================
   VENUE
========================================= */

.venue-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.venue-info > div {
    padding: 18px;
    background: #f8f8f8;
    border-radius: 6px;
}

.venue-info i {
    color: var(--primary);
    margin-right: 8px;
}

.venue-info strong {
    display: block;
    margin-top: 7px;
}

.venue-info span {
    display: block;
    color: #777;
    font-size: 13px;
    margin-top: 4px;
}

/* =========================================
   TIMELINE
========================================= */

.event-timeline {
    position: relative;
}

.event-timeline:before {
    content: "";
    position: absolute;
    left: 22px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: #ddd;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 20px;
    padding-bottom: 25px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-number {
    position: relative;
    z-index: 2;
    min-width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
}

.timeline-item h5 {
    margin-bottom: 5px;
}

.timeline-item p {
    color: #777;
    margin: 0;
    font-size: 14px;
}

/* =========================================
   AMENITIES
========================================= */

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.amenity-grid > div {
    padding: 18px 10px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 6px;
}

.amenity-grid i {
    display: block;
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 8px;
}

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

/* =========================================
   IMPORTANT INFO
========================================= */

.important-info {
    background: #fff8e8;
    border-left: 4px solid #e0a100;
    padding: 20px;
}

.important-info ul {
    margin: 0;
    padding-left: 20px;
}

.important-info li {
    color: #666;
    padding: 6px 0;
}

/* =========================================
   REVIEW
========================================= */

.review-summary {
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-summary strong {
    background: var(--primary);
    color: #fff;
    padding: 7px 10px;
    border-radius: 5px;
}

.review-summary i {
    color: #f5a623;
}

.review-summary span {
    color: #777;
    font-size: 13px;
}

.review-card {
    border-top: 1px solid #eee;
    padding: 20px 0;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.review-user small {
    display: block;
    color: #888;
}

.review-stars {
    color: #f5a623;
    margin: 10px 0;
}

.review-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   BOOKING CARD
========================================= */

.package-booking-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.booking-price {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.booking-price small {
    display: block;
    color: #777;
}

.booking-price strong {
    color: #222;
    font-size: 34px;
}

.booking-price span {
    color: #777;
}

.booking-price p {
    margin: 4px 0 0;
    color: #999;
    font-size: 11px;
}

/* =========================================
   BOOKING FIELDS
========================================= */

.booking-field {
    margin-top: 20px;
}

.booking-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.booking-field select,
.booking-field input {
    width: 100%;
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0 12px;
    outline: none;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    right: 15px;
    top: 16px;
    color: var(--primary);
}

.input-icon input {
    padding-right: 40px;
}

/* =========================================
   COUNTER
========================================= */

.guest-counter {
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.guest-counter button {
    width: 48px;
    height: 46px;
    border: 0;
    background: #f7f7f7;
    font-size: 22px;
}

.guest-counter span {
    font-weight: 600;
}

/* =========================================
   ESTIMATE
========================================= */

.estimated-price {
    margin: 20px 0;
    padding: 15px;
    background: #f7faf7;
    border-radius: 5px;
}

.estimated-price > div {
    display: flex;
    justify-content: space-between;
}

.estimated-price span {
    color: #666;
}

.estimated-price strong {
    color: var(--primary);
    font-size: 20px;
}

.estimated-price small {
    color: #888;
}

/* =========================================
   SAFE BOOKING
========================================= */

.booking-safe {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #777;
    font-size: 12px;
    margin-top: 15px;
}

.booking-safe i {
    color: var(--primary);
}

/* =========================================
   CONTACT CARD
========================================= */

.contact-package-card {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.contact-package-card p {
    color: #777;
    font-size: 14px;
}

.contact-package-card a {
    display: block;
    color: var(--primary);
    font-weight: 500;
    margin-top: 8px;
}

/* =========================================
   WHY BOOK
========================================= */

.why-book-card {
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-top: 20px;
}

.why-book-card h5 {
    margin-bottom: 18px;
}

.why-book-card > div {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px 0;
    color: #555;
    font-size: 14px;
}

.why-book-card i {
    color: var(--primary);
}

/* =========================================
   SIMILAR PACKAGE
========================================= */

.similar-package {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    height: 100%;
    transition: 0.3s;
}

.similar-package:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.similar-package > img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.similar-content {
    padding: 20px;
}

.similar-content small {
    color: var(--primary);
    font-size: 11px;
}

.similar-content h4 {
    margin: 5px 0 8px;
}

.similar-content p {
    color: #777;
    font-size: 14px;
}

.similar-content strong {
    color: var(--primary);
}

.similar-content a {
    color: var(--primary);
    font-size: 13px;
}

/* =========================================
   MOBILE BOOKING BAR
========================================= */

.mobile-booking-bar {
    display: none;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {
    .package-booking-card {
        position: static;
    }

    .amenity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .package-detail-gallery {
        height: 300px;
        grid-template-columns: 1fr;
    }

    .gallery-side {
        display: none;
    }

    .package-detail-header .d-flex {
        flex-direction: column;
    }

    .package-rating {
        align-self: flex-start;
    }

    .detail-section {
        padding: 20px;
    }

    .menu-preview {
        grid-template-columns: 1fr;
    }

    .venue-info {
        grid-template-columns: 1fr;
    }

    .amenity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading-flex {
        align-items: flex-start;
        flex-direction: column;
    }

    .package-booking-card {
        margin-bottom: 80px;
    }

    .mobile-booking-bar {
        position: fixed;
        display: flex;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        background: #fff;
        border-top: 1px solid #ddd;
        padding: 10px 15px;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    }

    .mobile-booking-bar small {
        display: block;
        color: #777;
        font-size: 10px;
    }

    .mobile-booking-bar strong {
        display: block;
        font-size: 20px;
    }

    .mobile-booking-bar strong span {
        font-size: 11px;
        color: #777;
        font-weight: normal;
    }

    .mobile-booking-bar > a {
        background: var(--primary);
        color: #fff;
        padding: 12px 18px;
        border-radius: 5px;
        font-weight: 600;
    }
}

.package-detail-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 8px;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-main {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-main img,
.gallery-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-main:hover img,
.gallery-side img:hover {
    transform: scale(1.03);
}

.gallery-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    overflow: hidden;
}

.gallery-side img {
    cursor: pointer;
}

.gallery-view-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    border: 0;
    background: rgba(0, 0, 0, 0.78);
    color: #fff;
    padding: 11px 18px;
    border-radius: 5px;
    z-index: 5;
    transition: 0.3s;
}

.gallery-view-btn:hover {
    background: var(--primary);
}

/* PACKAGE HEADER */

.package-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.package-category {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 7px;
}

.package-rating {
    background: var(--primary);
    color: #fff;
    border-radius: 5px;
    padding: 8px 12px;
    text-align: center;
    min-width: 95px;
}

.package-rating span {
    font-size: 18px;
    font-weight: 700;
}

.package-rating i {
    font-size: 12px;
}

.package-rating small {
    display: block;
    font-size: 10px;
    margin-top: 2px;
}

.package-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.package-tags span {
    background: #f5f5f5;
    padding: 8px 13px;
    border-radius: 5px;
    font-size: 13px;
    color: #555;
}

.package-tags i {
    color: var(--primary);
    margin-right: 6px;
}

/* DETAIL */

.detail-section {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    margin-top: 25px;
}

.detail-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.detail-section > p {
    color: #666;
    line-height: 1.8;
}

/* HIGHLIGHTS */

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    height: 100%;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 6px;
    transition: 0.3s;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.highlight-item > i {
    color: var(--primary);
    font-size: 20px;
    margin-top: 3px;
}

.highlight-item strong {
    display: block;
    margin-bottom: 5px;
}

.highlight-item p {
    color: #777;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

/* INCLUDED */

.included-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.included-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.included-icon {
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 137, 0, 0.08);
    color: var(--primary);
    border-radius: 50%;
}

.included-row h5 {
    margin-bottom: 5px;
}

.included-row p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

.included-check {
    margin-left: auto;
    color: var(--primary);
    margin-top: 8px;
}

/* BOOKING */

.package-booking-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.booking-price {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.booking-price small {
    display: block;
    color: #777;
}

.booking-price strong {
    color: #222;
    font-size: 34px;
}

.booking-price span {
    color: #777;
}

.booking-price p {
    margin: 4px 0 0;
    color: #999;
    font-size: 11px;
}

.booking-field {
    margin-top: 20px;
}

.booking-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.booking-field select,
.booking-field input {
    width: 100%;
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0 12px;
    outline: none;
}

.input-icon {
    position: relative;
}

.input-icon input {
    padding-right: 45px;
}

.input-icon i {
    position: absolute;
    right: 15px;
    top: 16px;
    color: var(--primary);
}

/* COUNTER */

.guest-counter {
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.guest-counter button {
    width: 48px;
    height: 48px;
    border: 0;
    background: #f7f7f7;
    font-size: 22px;
    transition: 0.2s;
}

.guest-counter button:hover {
    background: var(--primary);
    color: #fff;
}

.guest-counter span {
    font-weight: 600;
}

/* PRICE */

.estimated-price {
    margin: 20px 0;
    padding: 15px;
    background: #f7faf7;
    border-radius: 5px;
}

.estimated-price > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.estimated-price span {
    color: #666;
    font-size: 13px;
}

.estimated-price strong {
    color: var(--primary);
    font-size: 20px;
}

.estimated-price small {
    color: #888;
}

/* SAFE */

.booking-safe {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #777;
    font-size: 12px;
    margin-top: 15px;
}

.booking-safe i {
    color: var(--primary);
}

/* WHY */

.why-book-card {
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-top: 20px;
}

.why-book-card h5 {
    margin-bottom: 18px;
}

.why-book-card > div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #555;
    font-size: 14px;
}

.why-book-card i {
    color: var(--primary);
}

/* MENU */

.section-heading-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.section-heading-flex h3 {
    margin-bottom: 5px;
}

.section-heading-flex > a {
    color: var(--primary);
    white-space: nowrap;
}

.menu-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.menu-column {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 6px;
}

.menu-column h5 {
    color: var(--primary);
    font-size: 17px;
    margin-bottom: 12px;
}

.menu-column ul {
    margin: 0;
    padding-left: 20px;
}

.menu-column li {
    color: #666;
    padding: 4px 0;
}

/* DECORATION */

.decoration-card {
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 7px;
    height: 100%;
}

.decoration-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.decoration-card > div {
    padding: 18px;
}

.decoration-card h5 {
    margin-bottom: 7px;
}

.decoration-card p {
    color: #777;
    font-size: 14px;
    margin: 0;
}

/* VENUE */

.venue-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.venue-info > div {
    padding: 20px;
    background: #f8f8f8;
    border-radius: 6px;
}

.venue-info i {
    color: var(--primary);
    font-size: 20px;
}

.venue-info strong {
    display: block;
    margin-top: 10px;
}

.venue-info span {
    display: block;
    color: #777;
    font-size: 13px;
    margin-top: 4px;
}

/* TIMELINE */

.event-timeline {
    position: relative;
}

.event-timeline:before {
    content: "";
    position: absolute;
    left: 22px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: #ddd;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 20px;
    padding-bottom: 25px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-number {
    position: relative;
    z-index: 2;
    min-width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
}

.timeline-item h5 {
    margin-bottom: 5px;
}

.timeline-item p {
    color: #777;
    margin: 0;
    font-size: 14px;
}

/* AMENITIES */

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.amenity-grid > div {
    padding: 20px 10px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 6px;
    transition: 0.3s;
}

.amenity-grid > div:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.amenity-grid i {
    display: block;
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 8px;
}

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

/* IMPORTANT */

.important-info {
    background: #fff8e8;
    border-left: 4px solid #e0a100;
    padding: 20px;
}

.important-info ul {
    margin: 0;
    padding-left: 20px;
}

.important-info li {
    color: #666;
    padding: 6px 0;
}

/* REVIEWS */

.review-summary {
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-summary strong {
    background: var(--primary);
    color: #fff;
    padding: 7px 10px;
    border-radius: 5px;
}

.review-summary i {
    color: #f5a623;
}

.review-summary span {
    color: #777;
    font-size: 13px;
}

.review-card {
    border-top: 1px solid #eee;
    padding: 20px 0;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.review-user small {
    display: block;
    color: #888;
}

.review-stars {
    color: #f5a623;
    margin: 10px 0;
}

.review-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* SIMILAR */

.similar-package {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    height: 100%;
    transition: 0.3s;
}

.similar-package:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.similar-package > img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.similar-content {
    padding: 20px;
}

.similar-content small {
    color: var(--primary);
    font-size: 11px;
}

.similar-content h4 {
    margin: 5px 0 8px;
}

.similar-content p {
    color: #777;
    font-size: 14px;
}

.similar-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.similar-footer strong {
    color: var(--primary);
}

.similar-footer a {
    color: var(--primary);
    font-size: 13px;
}

/* GALLERY MODAL */

.gallery-modal-content {
    background: #111;
    border: 0;
}

.gallery-modal-content .modal-header {
    border-bottom: 1px solid #333;
}

.gallery-modal-content .modal-title {
    color: #fff;
}

.gallery-modal-content .btn-close {
    filter: invert(1);
}

.gallery-modal-content .modal-body {
    padding: 0;
}

.gallery-modal-image {
    height: 650px;
    object-fit: contain;
    background: #111;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
    .menu-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .venue-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenity-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
    .package-detail-gallery {
        height: 300px;
        grid-template-columns: 1fr;
    }

    .gallery-side {
        display: none;
    }

    .package-header-flex {
        flex-direction: column;
    }

    .package-rating {
        align-self: flex-start;
    }

    .detail-section {
        padding: 20px;
    }

    .menu-preview {
        grid-template-columns: 1fr;
    }

    .venue-info {
        grid-template-columns: 1fr 1fr;
    }

    .amenity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading-flex {
        align-items: flex-start;
        flex-direction: column;
    }

    .similar-footer {
        align-items: flex-start;
        gap: 10px;
        flex-direction: column;
    }

    .gallery-modal-image {
        height: 350px;
    }
}

/* SMALL MOBILE */

@media (max-width: 480px) {
    .venue-info {
        grid-template-columns: 1fr;
    }

    .package-tags span {
        width: 100%;
    }

    .included-row {
        flex-wrap: wrap;
    }

    .included-check {
        margin-left: 65px;
    }
}

.room-gallery {
    background: #fff;
}

.main-room-image {
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
}

.main-room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.main-room-image img:hover {
    transform: scale(1.02);
}

.gallery-view-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border: 0;
    padding: 12px 18px;
    border-radius: 5px;
    cursor: pointer;
}

.gallery-view-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* =========================================================
   THUMBNAILS
========================================================= */

.room-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.room-thumb {
    width: 105px;
    height: 75px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
}

.room-thumb.active {
    border-color: var(--primary);
}

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

/* =========================================================
   BOOKING
========================================================= */

.booking-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.booking-card h2 small {
    font-size: 14px;
    color: #777;
    font-weight: normal;
}

/* =========================================================
   QUICK INFO
========================================================= */

.room-quick-info {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
}

.quick-info-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.quick-info-item:last-child {
    border-bottom: 0;
}

/* =========================================================
   SECTIONS
========================================================= */

.room-section {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.section-heading {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.section-heading:after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary);
    margin-top: 10px;
}

.room-description {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

/* =========================================================
   HIGHLIGHTS
========================================================= */

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: #f8f8f8;
    border-radius: 6px;
}

.highlight-item > i {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
}

.highlight-item strong {
    display: block;
    margin-bottom: 3px;
}

.highlight-item small {
    color: #777;
}

/* =========================================================
   AMENITIES
========================================================= */

.amenity-box {
    height: 100%;
    background: #f8f8f8;
    padding: 25px;
    border-radius: 7px;
}

.amenity-box h5 {
    margin-bottom: 20px;
    font-weight: 600;
}

.amenity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenity-list li {
    padding: 7px 0;
    color: #555;
}

.amenity-list li i {
    color: var(--primary);
    margin-right: 10px;
}

/* =========================================================
   PHOTOS
========================================================= */

.room-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
    cursor: pointer;
    transition: 0.3s;
}

.room-photo-small {
    width: 100%;
    height: 180px;
    object-fit: cover;
    cursor: pointer;
    transition: 0.3s;
}

.room-photo:hover,
.room-photo-small:hover {
    transform: scale(1.02);
}

/* =========================================================
   POLICIES
========================================================= */

.policy-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.policy-item {
    display: flex;
    gap: 20px;
}

.policy-item > i {
    font-size: 22px;
    width: 30px;
}

.policy-item strong {
    display: block;
    margin-bottom: 5px;
}

.policy-item p {
    margin: 0;
    color: #666;
    line-height: 1.7;
}

/* =========================================================
   RIGHT SIDEBAR
========================================================= */

.sticky-booking {
    position: sticky;
    top: 100px;
    background: #fff;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.stay-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.stay-feature > i {
    color: var(--primary);
    font-size: 20px;
    width: 25px;
}

.stay-feature strong {
    display: block;
    margin-bottom: 5px;
}

.stay-feature p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   GALLERY
========================================================= */

.gallery-large-image {
    height: 70vh;
    object-fit: contain;
    background: #000;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {
    .main-room-image {
        height: 400px;
    }

    .sticky-booking {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .main-room-image {
        height: 280px;
    }

    .room-thumb {
        width: 85px;
        height: 65px;
    }

    .booking-card {
        padding: 20px;
    }

    .room-section {
        padding: 25px 0;
    }

    .section-heading {
        font-size: 22px;
    }
}

.menu-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.menu-category {
    width: 100%;
}

@media (max-width: 991px) {
    .menu-category-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   BANQUET GALLERY
========================================================= */

.banquet-gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 190px 190px;
    gap: 12px;
}

/* Gallery Item */

.banquet-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    background: #f5f5f5;
}

/* Main Image */

.banquet-gallery-main {
    grid-row: span 2;
}

/* Image */

.banquet-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}

/* Hover Image */

.banquet-gallery-item:hover img {
    transform: scale(1.06);
}

/* Overlay */

.banquet-gallery-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0);

    color: #fff;

    opacity: 0;

    transition: all 0.3s ease;
}

/* Hover Overlay */

.banquet-gallery-item:hover .banquet-gallery-overlay {
    background: rgba(0, 0, 0, 0.45);
    opacity: 1;
}

/* Overlay Icon */

.banquet-gallery-overlay i {
    font-size: 25px;
}

/* Main Image Overlay */

.banquet-gallery-main .banquet-gallery-overlay div {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;

    background: rgba(0, 0, 0, 0.65);

    border-radius: 30px;

    font-size: 14px;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {
    .banquet-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 160px 160px;
    }

    .banquet-gallery-main {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 575px) {
    .banquet-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 130px 130px;
        gap: 8px;
    }

    .banquet-gallery-item {
        border-radius: 7px;
    }

    .banquet-gallery-main {
        grid-column: span 2;
    }
}




