/* =====================================================
   GLOBAL
===================================================== */
body {
    font-family: "Montserrat", sans-serif;
    background: #fff;
    color: #000;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.btn:hover {
    transform: translateY(-1px);
    transition: 0.2s ease;
}

/* =====================================================
   HEADER TOP
===================================================== */
/* old bg #ff758c */
.header-top {
    background: #57732f;
    color: #fff;
    font-size: 14px;
    position: relative;
    z-index: 1101;
    padding: 10px 0;
}

.header-top a {
    text-decoration: none;
}

/* Main row */
.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info span,
.contact-info div {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.contact-info i {
    color: #fff;
    margin-right: 0;
}

/* Right actions */
.top-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.top-actions .btn-link {
    padding: 0 10px;
}

.top-actions .btn-warning {
    border-radius: 20px;
}

/* Logo */
.header-logo img {
    display: block;
    height: 60px;
    object-fit: contain;
}

/* =====================================================
   STICKY NAVBAR
===================================================== */

.menu-bar {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1100;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 10px 0;
}

.navbar-brand {
    font-size: 26px;
    font-weight: 700;
    color: #57732f !important;
}

/* Menu Links */
.menu-bar .nav-link,
.menu-bar a {
    color: #111 !important;
    padding: 10px 16px !important;
    font-weight: 600;
    border-radius: 10px;
    transition: all .25s ease;
}

.menu-bar .nav-link:hover,
.menu-bar .nav-link.active,
.menu-bar a:hover {
    color: #57732f !important;
    background: #e3f4ca;
}

/* Center nav properly */
.navbar-nav {
    align-items: center;
    gap: 5px;
}

/* Toggler */
.navbar-toggler {
    border: 1px solid #57732f;
    padding: 6px 10px;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: none;
}

/* =====================================================
   HERO SECTION
===================================================== */

.hero-section {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    perspective: 1500px;
    overflow: hidden;
}

.hero-section img {
    width: 100%;
    height: 800px;
    /* height: 450px; */
    object-fit: cover;
    filter: brightness(0.6);
    transition: transform 0.2s ease-out;
}

.hero-text {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-subtext {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatAnim 10s ease-in-out infinite;
}

.shape1 {
    width: 80px;
    height: 80px;
    background: #57732f;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape2 {
    width: 60px;
    height: 60px;
    background: #ff7eb3;
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.shape3 {
    width: 100px;
    height: 100px;
    background: #ff9fae;
    top: 60%;
    left: 20%;
    animation-delay: 4s;
}

.shape4 {
    width: 70px;
    height: 70px;
    background: #ffa7c4;
    top: 65%;
    right: 15%;
    animation-delay: 6s;
}

@keyframes floatAnim {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Wishlist */
.account-avatar {
    width: 42px;
    height: 42px;
    background: #fff;
    color: #57732f;
    border-radius: 50%;
    border: 1px solid #ffd1da;

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.account-avatar i {
    font-size: 18px;
}

.badge-dot-light {
    position: absolute;
    top: -5px;
    right: -5px;

    min-width: 18px;
    height: 18px;
    border-radius: 50%;

    background: #57732f;
    color: #fff;

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

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

/* Avatar image */
.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* =====================================================
   DROPDOWN
===================================================== */

.account-menu {
    border: none;
    border-radius: 16px;
    padding: 10px 0;
    min-width: 220px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12);

    z-index: 1200 !important;
}

.account-menu .dropdown-item {
    padding: 11px 18px;
    font-size: 14px;

    display: flex;
    align-items: center;
    gap: 10px;
}

.account-menu .dropdown-item i {
    color: #57732f;
}

.account-menu .dropdown-item:hover {
    background: #fff1f4;
}

.account-menu .dropdown-divider {
    margin: 6px 0;
}

/* =====================================================
   FILTER BOX
===================================================== */

.filter-wrapper {
    width: 92%;
    max-width: 1400px;
    margin: -110px auto 50px;
    position: relative;
    z-index: 20;
}

/* Inner Box */
.filter-box {
    background: rgb(250 250 250);
    backdrop-filter: blur(12px);
    padding: 24px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 10px rgb(196 216 173);
    border: 1px solid #577336;
    position: relative;
}

/* Row */
.filter-box .row {
    align-items: center;
}

/* Inputs + Select */
.filter-box .form-control,
.filter-box .form-select {
    height: 52px;
    border-radius: 50px;
    border: 1px solid #577336;

    font-size: 14px;
    font-weight: 500;

    padding: 12px 16px;

    box-shadow: none;
    transition: all 0.25s ease;
    background: #fff;
}

/* Focus */
.filter-box .form-control:focus,
.filter-box .form-select:focus {
    border-color: #57732f;
    box-shadow: 0 0 0 4px rgba(210, 218, 199, 0.12);
}

/* Placeholder */
.filter-box input::placeholder {
    color: #999;
    font-weight: 500;
}

/* Location Dropdown */
/* #location_results {
    top: calc(100% + 6px);
    left: 0;

    border-radius: 14px;
    border: 1px solid #ffdbe2;

    overflow: hidden;
    z-index: 9999;

    background: #fff;
} */

.filter-wrapper,
.filter-box,
.filter-box .row,
.filter-box .col {
    overflow: visible !important;
}


#location_results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 99999 !important;

    display: none;

    background: #fff;
    border-radius: 12px;
    margin-top: 6px;

    max-height: 220px;
    overflow-y: auto;

    border: 1px solid #eee;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

#location_results .list-group-item {
    border: none;
    border-bottom: 1px solid #f3f3f3;
    padding: 12px 14px;

    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}

#location_results .list-group-item:hover {
    background: #fff1f4;
    color: #57732f;
}

/* Homepage filter overlaps hero */
.home-filter {
    margin-top: -130px;
}

/* Inner pages */
.inner-filter {
    margin-top: 40px;
}

/* =====================================================
   EVENT ADS / HERO CAROUSEL
===================================================== */

#eventAdsStyleCarousel {
    width: 92%;
    max-width: 1400px;
    margin: 30px auto 60px;
    position: relative;
}

/* Card */
.event-hero-card {
    border-radius: 28px;
    overflow: hidden;
    position: relative;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.18),
        0 5px 15px rgba(210, 218, 199, 0.15);

    background: #fff;
}

/* Image */
.event-hero-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;

    transform: scale(1);
    transition: transform 0.6s ease;
}

/* Hover zoom */
.event-hero-card:hover .event-hero-img {
    transform: scale(1.04);
}

/* Dark overlay */
.event-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.72) 10%,
            rgba(0, 0, 0, 0.2) 45%,
            rgba(0, 0, 0, 0.05) 100%);

    z-index: 1;
}

/* Text overlay */
.event-hero-overlay {
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 2;

    color: #fff;

    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;

    text-shadow:
        0 4px 12px rgba(0, 0, 0, 0.45);
}

/* =====================================================
   CAROUSEL CONTROLS FIX
===================================================== */

#eventAdsStyleCarousel .carousel-control-prev,
#eventAdsStyleCarousel .carousel-control-next {
    width: 65px;
    opacity: 1;
}

/* Circle button */
#eventAdsStyleCarousel .carousel-control-prev-icon,
#eventAdsStyleCarousel .carousel-control-next-icon {

    width: 52px;
    height: 52px;

    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.95);

    background-size: 18px 18px;

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.18);

    transition: all 0.25s ease;
}

/* LEFT ARROW SVG */
#eventAdsStyleCarousel .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23f36016' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

/* RIGHT ARROW SVG */
#eventAdsStyleCarousel .carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23f36016' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 0 0 .708L10.293 8l-5.647 5.646a.5.5 0 0 0 .708.708l6-6a.5.5 0 0 0 0-.708l-6-6a.5.5 0 0 0-.708 0z'/%3E%3C/svg%3E");
}

/* Hover */
#eventAdsStyleCarousel .carousel-control-prev:hover .carousel-control-prev-icon,
#eventAdsStyleCarousel .carousel-control-next:hover .carousel-control-next-icon {
    background-color: #57732f;
    transform: scale(1.08);
}

/* White arrows on hover */
#eventAdsStyleCarousel .carousel-control-prev:hover .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

#eventAdsStyleCarousel .carousel-control-next:hover .carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 0 0 .708L10.293 8l-5.647 5.646a.5.5 0 0 0 .708.708l6-6a.5.5 0 0 0 0-.708l-6-6a.5.5 0 0 0-.708 0z'/%3E%3C/svg%3E");
}

/* =====================================================
   CAROUSEL FIX
===================================================== */

#eventAdsStyleCarousel,
#eventAdsStyleCarousel .carousel-inner,
#eventAdsStyleCarousel .carousel-item {
    width: 100%;
    overflow: hidden;
}

/* Prevent vertical stacking */
#eventAdsStyleCarousel .carousel-item {
    transition: transform .6s ease-in-out;
}

/* Proper image display */
#eventAdsStyleCarousel .carousel-item img {
    display: block;
    width: 100%;
}

/* Fix Bootstrap transform issue */
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    display: block;
}

/* =====================================================
   SECTION TITLES
===================================================== */

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin: 50px 0 25px;
    color: #57732f;
    text-align: center;
}

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

.item-card {
    background: #fff;
    padding: 8px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.item-card img {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
}

.item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* =====================================================
   LIST CARDS
===================================================== */

.list-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s;
}

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

.list-details {
    padding: 10px;
    flex-grow: 1;
}

.list-details h5 {
    font-size: 18px;
    margin-bottom: 4px;
}

.list-details .price {
    font-weight: 700;
    color: #b44646;
}

/* =====================================================
   FOOTER (MATCH HEADER STYLE)
===================================================== */

.site-footer {
    background: #57732f;
    color: #fff;
    /* margin-top: 60px; */
    border-radius: 20px 20px 0 0;
    padding: 40px 0 20px;
}

/* INNER LAYOUT */
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

/* LEFT */
.footer-logo {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-text {
    font-size: 14px;
    opacity: 0.9;
    max-width: 280px;
}

/* CENTER LINKS */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: 0.2s;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(3px);
}

/* RIGHT */
.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #fff;
    color: #ff4d6d;
}

/* BOTTOM BAR */
.footer-bottom {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 13px;
    opacity: 0.9;
}

/* =====================================================
   SCROLL TO TOP
===================================================== */

.scroll-top {
    width: 50px;
    height: 50px;
    background: #57732f;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    text-align: center;
    line-height: 50px;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: none;
    transition: 0.3s;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
}

/* =====================================================
   DETAIL PAGE
===================================================== */

.detail-box {
    transition: all 0.3s ease-in-out;
}

.detail-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.thumb-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
}

.price-tag {
    font-weight: 700;
}

.detail-section-title {
    font-weight: 600;
    color: #57732f;
    margin-bottom: 0.5rem;
}

.amenity-box {
    display: inline-block;
    background: #57732f;
    color: #fff;
    padding: 5px 12px;
    margin: 0 5px 5px 0;
    border-radius: 20px;
    font-size: 14px;
}

.amenity-box:hover {
    background: #ff7eb3;
    transition: 0.3s;
}

/* =====================================================
   HELP & BOOKING
===================================================== */

.help-booking {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.help-box {
    flex: 1 1 250px;
    background: #57732f;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

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

.help-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.help-box p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* vendor form */

.auth-body .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: none;
}

.auth-body .invalid-feedback {
    display: block;
    font-size: 13px;
    margin-top: 5px;
}

/* =========================================
   GOOGLE RECAPTCHA FIX
========================================= */

.auth-card,
.auth-body,
.guest-auth-section,
.captcha-wrapper {
    overflow: visible !important;
}

/* Desktop */
.g-recaptcha {
    display: inline-block;
    max-width: 100%;
}

/* =====================================================
   VENDOR SIGNUP IMAGE
===================================================== */

.auth-card {
    overflow: hidden;
    border-radius: 18px;
}

.auth-card .row {
    min-height: 650px;
}

.vendor-image {
    width: 100%;
    height: 100%;
    min-height: 650px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =====================================================
   PREMIUM ADS SECTION
===================================================== */

.premium-ads-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;

    background:
        linear-gradient(180deg,
            #fff7f9 0%,
            #ffffff 45%,
            #fff7fb 100%);
}

/* Decorative Blur */
.premium-ads-section::before {
    content: "";

    position: absolute;
    top: -120px;
    left: -120px;

    width: 320px;
    height: 320px;

    background: rgba(210, 218, 199, 0.15);

    filter: blur(90px);
    border-radius: 50%;
}

.premium-ads-section::after {
    content: "";

    position: absolute;
    bottom: -140px;
    right: -100px;

    width: 320px;
    height: 320px;

    background: rgba(255, 126, 179, 0.12);

    filter: blur(90px);
    border-radius: 50%;
}

/* =====================================================
   CAROUSEL
===================================================== */

#adsCarousel {
    position: relative;
    z-index: 2;

    padding: 0 60px;
}

/* =====================================================
   PREMIUM CARD
===================================================== */

.premium-ad-card {
    position: relative;

    border-radius: 28px;
    overflow: hidden;

    background: #fff;

    border: 1px solid rgba(210, 218, 199, 0.12);

    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.08);

    transition: all 0.35s ease;
}

.premium-ad-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 24px 55px rgba(210, 218, 199, 0.18);
}

/* =====================================================
   IMAGE
===================================================== */

.premium-ad-image {
    position: relative;
    overflow: hidden;
}

.premium-ad-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;

    transition: transform 0.5s ease;
}

.premium-ad-card:hover .premium-ad-image img {
    transform: scale(1.08);
}

/* =====================================================
   OVERLAY
===================================================== */

.premium-gradient {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 5%,
            rgba(0, 0, 0, 0.35) 45%,
            rgba(0, 0, 0, 0.05) 100%);
}

/* =====================================================
   BADGES
===================================================== */

.premium-vendor-badge,
.premium-system-badge {
    position: absolute;
    top: 18px;
    left: 18px;

    z-index: 3;

    background:
        #57732f;

    color: #fff;

    padding: 8px 16px;
    border-radius: 50px;

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

    box-shadow:
        0 6px 18px rgba(210, 218, 199, 0.35);
}

/* =====================================================
   CONTENT
===================================================== */

.premium-ad-content {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    padding: 24px;
}

.premium-ad-content h4 {
    color: #fff;

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

    margin-bottom: 10px;
}

.premium-ad-content p {
    color: rgba(255, 255, 255, 0.88);

    font-size: 14px;
    line-height: 1.7;

    margin-bottom: 0;
}

/* =====================================================
   SYSTEM HTML ADS
===================================================== */

.system-ad-html {
    min-height: 360px;

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

    padding: 25px;

    background:
        linear-gradient(135deg,
            #fff6f8,
            #ffffff);

    overflow: hidden;
}

.system-ad-html iframe,
.system-ad-html img,
.system-ad-html ins {
    max-width: 100% !important;
}

/* =====================================================
   PREMIUM ARROWS
===================================================== */

.premium-arrow {
    width: 56px;
    height: 56px;

    top: 50%;
    transform: translateY(-50%);

    border-radius: 50%;

    background: #fff;

    opacity: 1;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12);
}

.carousel-control-prev.premium-arrow {
    left: 0;
}

.carousel-control-next.premium-arrow {
    right: 0;
}

/* DARK ICON */
.premium-arrow .carousel-control-prev-icon,
.premium-arrow .carousel-control-next-icon {
    filter: invert(1);

    width: 18px;
    height: 18px;
}

/* HOVER */
.premium-arrow:hover {
    background:
        #57732f;
}

.premium-arrow:hover .carousel-control-prev-icon,
.premium-arrow:hover .carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

/* =========================================================
   PREMIUM VENUE SECTION
========================================================= */

.premium-venue-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;

    background:
        radial-gradient(circle at top left,
            rgba(210, 218, 199, 0.12),
            transparent 30%),

        radial-gradient(circle at bottom right,
            rgba(255, 126, 179, 0.12),
            transparent 30%),

        linear-gradient(180deg,
            #fff7f9 0%,
            #ffffff 45%,
            #fff8fb 100%);
}

/* =========================================================
   PREMIUM SERVICES SECTION
========================================================= */

.premium-services-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

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

.premium-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 65px;
}

.premium-mini-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 22px;

    border-radius: 100px;

    background: #e5f6ce;

    color: #57732f;

    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.2px;

    margin-bottom: 20px;

    backdrop-filter: blur(12px);
}

.premium-mini-title::before {
    content: "✦";
}

.premium-heading h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;

    color: #111;

    margin-bottom: 18px;
}

.premium-heading p {
    max-width: 760px;
    margin: auto;

    color: #6f6f6f;

    font-size: 17px;
    line-height: 1.9;
}

/* =========================================================
   CAROUSEL
========================================================= */

#venuesCarousel {
    position: relative;
    z-index: 2;

    padding-inline: 65px;
}

#venuesCarousel .carousel-inner {
    overflow: visible;
}

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

.premium-service-card {
    position: relative;

    height: 100%;

    border-radius: 32px;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.5);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.08),
        0 18px 45px rgba(210, 218, 199, 0.08);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.premium-service-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.12),
        0 28px 60px rgba(210, 218, 199, 0.16);
}

/* =========================================================
   IMAGE
========================================================= */

.premium-service-image {
    position: relative;
    overflow: hidden;
}

.premium-service-image img {
    width: 100%;
    height: 350px;

    object-fit: cover;

    transition:
        transform .6s ease,
        filter .4s ease;
}


/* .premium-service-image {
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.premium-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease, filter .4s ease;
} */

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

/* =========================================================
   OVERLAY
========================================================= */

.premium-service-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.88) 5%,
            rgba(0, 0, 0, 0.30) 45%,
            rgba(0, 0, 0, 0.04) 100%);
}

/* =========================================================
   BADGES
========================================================= */

.premium-category-badge {
    position: absolute;
    top: 18px;
    left: 18px;

    z-index: 5;

    padding: 10px 18px;

    border-radius: 100px;

    background:
        #57732f;

    color: #fff;

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

    letter-spacing: .4px;

    box-shadow:
        0 8px 25px rgba(210, 218, 199, 0.35);
}

.premium-price {
    position: absolute;
    bottom: 18px;
    right: 18px;

    z-index: 5;

    padding: 12px 18px;

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.16);

    backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 255, 255, 0.25);

    color: #fff;

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

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.15);
}

/* =========================================================
   CONTENT
========================================================= */

.premium-service-content {
    padding: 26px;
}

.premium-service-content h4 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.4;

    color: #181818;

    margin-bottom: 16px;
}

/* =========================================================
   META
========================================================= */

.premium-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-bottom: 16px;
}

.premium-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 8px 14px;

    border-radius: 100px;

    background: #fff4f7;

    color: #555;

    font-size: 13px;
    font-weight: 600;
}

.premium-meta i {
    color: #57732f;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.premium-service-content p {
    color: #777;

    font-size: 14px;
    line-height: 1.9;

    margin-bottom: 24px;

    min-height: 78px;
}

/* =========================================================
   FOOTER
========================================================= */

.premium-service-footer {
    display: flex;
    align-items: flex-start;
    flex-direction: column;

    gap: 12px;
}

.vendor-name {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #444;

    font-size: 14px;
    font-weight: 700;
}

.vendor-name i {
    color: #57732f;
}


/* =========================================================
   ARROWS
========================================================= */

.premium-service-arrow {
    width: 62px;
    height: 62px;

    top: 50%;
    transform: translateY(-50%);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(10px);

    opacity: 1;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.14);

    transition: all .3s ease;
}

.carousel-control-prev.premium-service-arrow {
    left: -10px;
}

.carousel-control-next.premium-service-arrow {
    right: -10px;
}

.premium-service-arrow:hover {
    background:
        #57732f;

    transform: translateY(-50%) scale(1.08);
}

/* ICONS */

.premium-service-arrow .carousel-control-prev-icon,
.premium-service-arrow .carousel-control-next-icon {
    width: 22px;
    height: 22px;

    background-size: 22px;

    filter: invert(1);
}

.premium-service-arrow:hover .carousel-control-prev-icon,
.premium-service-arrow:hover .carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

/* =========================================================
   PREMIUM PACKAGES SECTION
========================================================= */

.premium-packages-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #fff;
    z-index: 1;
}

/* Blur Shapes */
.premium-packages-section::before {
    content: "";
    position: absolute;
    top: -140px;
    left: -120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(210, 218, 199, 0.12);
    filter: blur(100px);
    z-index: -1;
}

.premium-packages-section::after {
    content: "";
    position: absolute;
    bottom: -140px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 126, 179, 0.12);
    filter: blur(90px);
    z-index: -1;
}

/* =========================================================
   CAROUSEL
========================================================= */

#packagesCarousel {
    position: relative;
}

.carousel-inner {
    overflow: visible;
}

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

.package-card {
    position: relative;

    height: 100%;

    display: flex;
    flex-direction: column;

    border-radius: 30px;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.6);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.08),
        0 18px 45px rgba(210, 218, 199, 0.08);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.package-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.12),
        0 28px 65px rgba(210, 218, 199, 0.16);

    border-color: rgba(210, 218, 199, 0.2);
}

/* Glow Hover */
.package-card::before {
    content: "";

    position: absolute;
    top: -70%;
    left: -70%;

    width: 260px;
    height: 260px;

    /* background:
        radial-gradient(circle,
            rgba(210, 218, 199, 0.14),
            transparent 70%); */

    transition: all .55s ease;
}

.package-card:hover::before {
    top: -25%;
    left: -25%;
}

/* =========================================================
   FEATURED PACKAGE
========================================================= */

.package-card.featured-package {
    transform: scale(1.04);

    border: 2px solid rgba(210, 218, 199, 0.25);

    box-shadow:
        0 28px 65px rgba(210, 218, 199, 0.2);
}

.package-card.featured-package:hover {
    transform: scale(1.04) translateY(-10px);
}

.package-card.featured-package .package-icon {
    background:
        linear-gradient(135deg,
            #ff5f8d,
            #ff7eb3);
}


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

.package-badge {
    position: absolute;
    top: 18px;
    right: 18px;

    z-index: 5;

    padding: 10px 18px;

    border-radius: 100px;

    background:
        #57732f;

    color: #fff;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;

    box-shadow:
        0 8px 24px rgba(210, 218, 199, 0.35);
}

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

.package-header {
    padding: 42px 30px 28px;

    text-align: center;

    background:
        linear-gradient(180deg,
            rgba(210, 218, 199, 0.06),
            rgba(255, 255, 255, 0));
}

.package-icon {
    width: 92px;
    height: 92px;

    margin: 0 auto 24px;

    border-radius: 50%;

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

    background:
        #57732f;

    color: #fff;

    font-size: 34px;

    box-shadow:
        0 14px 30px rgba(210, 218, 199, 0.35);
}

.package-title {
    font-size: 30px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.package-subtitle {
    color: #777;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0;
}

/* =========================================================
   PRICE
========================================================= */

.package-price {
    text-align: center;
    padding: 5px 25px 30px;
}

.package-price h3 {
    font-size: 56px;
    font-weight: 800;
    color: #ff5f8d;
    margin-bottom: 8px;
    line-height: 1;
}

.package-price span {
    display: inline-block;

    font-size: 14px;
    color: #777;
    font-weight: 500;
}

/* =========================================================
   FEATURES
========================================================= */

.package-features {
    padding: 0 30px 30px;

    margin: 0;
    list-style: none;

    flex-grow: 1;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding: 15px 0;

    border-bottom: 1px solid #f3f3f3;

    color: #555;

    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    width: 24px;
    height: 24px;

    border-radius: 50%;

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

    background: #fff1f4;

    color: #57732f;

    font-size: 11px;

    flex-shrink: 0;

    margin-top: 1px;
}

.package-features span {
    flex: 1;
}

/* =========================================================
   BUTTON
========================================================= */

.package-btn-wrap {
    padding: 0 30px 35px;
}

/* =========================================================
   CAROUSEL ARROWS
========================================================= */

.premium-service-arrow {
    width: 54px;
    height: 54px;

    top: 50%;
    transform: translateY(-50%);

    border-radius: 50%;

    background: #fff;

    opacity: 1;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08);
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

/* =========================================================
   PREMIUM INQUIRY SECTION
========================================================= */

.premium-inquiry-section {
    position: relative;
    padding: 100px 0;

    background:
        radial-gradient(circle at top left, rgb(229 246 206), #f4fce7 28%), radial-gradient(circle at bottom right, rgb(229 246 206), transparent 30%), linear-gradient(180deg, #fff7f9 0%, #ffffff 48%, #dcf6ce 100%)
}

/* =========================================================
   MAIN CARD
========================================================= */

.premium-inquiry-card {
    position: relative;

    background: rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-radius: 36px;

    overflow: hidden;

    border: 1px solid rgba(210, 218, 199, 0.12);

    box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.08),
        0 25px 70px rgba(210, 218, 199, 0.10);

    z-index: 2;
}

/* Glow effect */
.premium-inquiry-card::before {
    content: "";

    position: absolute;
    top: -120px;
    left: -120px;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    /* background:
        radial-gradient(circle,
            rgba(210, 218, 199, 0.18),
            transparent 70%); */

    pointer-events: none;
}

.premium-inquiry-card::after {
    content: "";

    position: absolute;
    bottom: -140px;
    right: -120px;

    width: 300px;
    height: 300px;

    border-radius: 50%;
    /*
    background:
        radial-gradient(circle,
            rgba(255, 126, 179, 0.16),
            transparent 70%); */

    pointer-events: none;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.premium-inquiry-content {
    position: relative;
    z-index: 2;

    height: 100%;

    padding: 70px 55px;

    background:
        #57732f;

    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Small tag */
.inquiry-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;

    padding: 10px 18px;

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.14);

    border: 1px solid rgba(255, 255, 255, 0.2);

    backdrop-filter: blur(10px);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;

    margin-bottom: 28px;
}

.inquiry-tag::before {
    content: "✦";
}

/* Heading */
.premium-inquiry-content h2 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;

    margin-bottom: 22px;
}

/* Description */
.premium-inquiry-content p {
    font-size: 15px;
    line-height: 1.9;

    color: rgba(255, 255, 255, 0.92);

    margin-bottom: 34px;
}

/* =========================================================
   FEATURES
========================================================= */

.inquiry-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inquiry-feature {
    display: flex;
    align-items: center;
    gap: 12px;

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

    color: #fff;
}

.inquiry-feature i {
    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.16);

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

    font-size: 14px;

    flex-shrink: 0;
}

/* =========================================================
   FORM SIDE
========================================================= */

.premium-inquiry-form-wrap {
    position: relative;
    z-index: 2;

    padding: 65px 55px;
}

/* =========================================================
   FORM GROUP
========================================================= */

.premium-form-group {
    position: relative;
}

.premium-form-group label {
    display: block;

    margin-bottom: 12px;

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

    color: #222;
}

/* =========================================================
   INPUTS
========================================================= */

.premium-form-group .form-control,
.premium-form-group .form-select {
    width: 100%;

    min-height: 58px;

    border-radius: 18px;

    border: 1px solid #ffd8e1;

    background: #fff;

    padding: 14px 18px;

    font-size: 14px;
    font-weight: 500;

    color: #222;

    box-shadow: none;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

/* Textarea */
.premium-form-group textarea.form-control {
    min-height: 140px;
    resize: none;
    padding-top: 16px;
}

/* Placeholder */
.premium-form-group .form-control::placeholder,
.premium-form-group .form-select {
    color: #9a9a9a;
}

/* Focus */
.premium-form-group .form-control:focus,
.premium-form-group .form-select:focus {
    border-color: #57732f;

    box-shadow:
        0 0 0 5px rgba(210, 218, 199, 0.12);

    transform: translateY(-1px);
}

/* =====================================================
   GLOBAL BUTTON SYSTEM
===================================================== */

/* COMMON BUTTON BASE */
.theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border: none;
    outline: none;

    border-radius: 100px;

    font-weight: 700;
    text-decoration: none;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;

    cursor: pointer;

    position: relative;
    overflow: hidden;
}

/* HOVER */
.theme-btn:hover {
    transform: translateY(-3px);
}

/* ICON ANIMATION */
.theme-btn i {
    transition: transform .3s ease;
}

.theme-btn:hover i {
    transform: translateX(4px);
}

/* =====================================================
   PRIMARY BUTTON
===================================================== */

.theme-btn-primary {
    background: #f36016;
    color: #fff !important;

    /* box-shadow:
        0 12px 28px rgb(210 218 199); */
}

.theme-btn-primary:hover {
    color: #fff !important;

    box-shadow:
        0 12px 28px rgb(210 218 199 0.38);
}

/* =====================================================
   GOLD BUTTON
===================================================== */

.theme-btn-gold {
    background:
        linear-gradient(135deg,
            #ffb347,
            #ffcc33);

    color: #3a2b00 !important;

    box-shadow:
        0 12px 28px rgba(255, 179, 71, 0.28);
}

.theme-btn-gold:hover {
    color: #3a2b00 !important;

    box-shadow:
        0 18px 38px rgba(255, 179, 71, 0.38);
}

/* =====================================================
   WHITE BUTTON
===================================================== */

.theme-btn-white {
    background: #fff;

    color: #57732f !important;

    border: 1px solid #577336;

    box-shadow:
        0 8px 22px rgba(210, 218, 199, 0.10);
}

.theme-btn-white:hover {
    color: #57732f !important;

    box-shadow:
        0 14px 28px rgba(210, 218, 199, 0.16);
}

/* =====================================================
   DANGER BUTTON
===================================================== */

.theme-btn-danger {
    background: #dc3545;
    color: #fff !important;

    border: 1px solid #dc3545;

    box-shadow:
        0 8px 22px rgba(210, 218, 199, 0.10);
}

.theme-btn-danger:hover {
    color: #fff !important;

    box-shadow:
        0 14px 28px rgba(210, 218, 199, 0.16);
}

.theme-btn-outline-danger {
    background: transparent;
    color: #dc3545 !important;

    border: 1px solid #dc3545;

    box-shadow:
        0 8px 22px rgba(210, 218, 199, 0.10);
}

.theme-btn-outline-danger:hover {
    background: #dc3545;
    color: #fff !important;

    box-shadow:
        0 14px 28px rgba(210, 218, 199, 0.16);
}

/* =====================================================
   BUTTON SIZES
===================================================== */

.theme-btn-sm {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 13px;
}

.theme-btn-md {
    min-height: 50px;
    padding: 14px 24px;
    font-size: 14px;
}

.theme-btn-lg {
    min-height: 58px;
    padding: 18px 30px;
    font-size: 15px;
}

/* =====================================================
   ROUND ICON BUTTON
===================================================== */

.theme-icon-btn {
    width: 44px;
    height: 44px;

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

    border-radius: 50%;

    background: #fff;

    color: #57732f;

    border: 1px solid #577336;

    transition: all .3s ease;

    position: relative;

    box-shadow:
        0 8px 22px rgba(210, 218, 199, 0.10);
}

.theme-icon-btn:hover {
    transform: translateY(-3px);

    background:
        #57732f;

    color: #fff;

    box-shadow:
        0 14px 28px rgba(210, 218, 199, 0.22);
}

.theme-icon-btn i {
    font-size: 16px;
}

/* =====================================================
   BREADCRUMB
===================================================== */

.breadcrumb {
    border: 1px solid #577336;
    border-radius: 18px !important;

    background: rgba(210, 218, 199, 0.96) !important;
    backdrop-filter: blur(10px);

    padding: 14px 22px !important;

    box-shadow:
        0 8px 24px rgba(210, 218 ,199 , 0.06),
        0 2px 10px rgba(210, 218, 199, 0.08);

    margin-bottom: 0;
}

.breadcrumb-item {
    font-size: 14px;
    font-weight: 600;

    color: #666;

    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: #555;
    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}

.breadcrumb-item a:hover {
    color: #57732f;
}

.breadcrumb-item.active {
    color: #57732f;
    font-weight: 700;
}

/* Divider */
.breadcrumb-item+.breadcrumb-item::before {
    content: "\f105";

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    color: #6c8d46;

    padding: 0 12px;
    font-size: 12px;
}


/* =====================================================
   MOBILE FILTER TOGGLE
===================================================== */

.mobile-filter-toggle {
    width: 100%;

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

    padding: 14px 16px;

    border: none;
    border-radius: 14px;

    background: #57732f;
    color: #fff;

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

    margin-bottom: 18px;

    box-shadow: 0 6px 18px rgba(210, 218, 199, 0.2);
}

.mobile-filter-toggle span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-filter-toggle i {
    font-size: 16px;
}

.theme-btn-orange {
    background: #f36016;
    color: #ffffff;
}

.side-filter .accordion-item {
    border: none;
    border-bottom: 1px solid #eee;
}

.side-filter .accordion-button {
    padding: 12px 0;
    font-weight: 600;
    background: transparent;
    box-shadow: none;
}

.side-filter .accordion-button:not(.collapsed) {
    background: transparent;
    color: #577336;
}

.side-filter .accordion-body {
    padding-top: 0;
}

    .event-category-section {
        padding: 10px 0;
    }

    .section-title {
        text-align: center;
        font-size: 34px;
        font-weight: 700;
        color: #556B2F;
        margin-bottom: 35px;
    }

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

    .category-card {
        position: relative;
        overflow: hidden;
        border-radius: 22px;
    }

    .category-card img {
        width: 100%;
        height: 430px;
        object-fit: cover;
        display: block;
    }

    .category-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 60px 5px 48px;
        color: #fff;
    }

    .green {
        background: #6a8f3d;
    }

    .yellow {
        background: #f5c12a;
    }

    .orange {
        background: #f58b08;
    }

    .red {
        background: #ef4d3b;
    }

    .icon-circle {
        position: absolute;
        top: -28px;
        left: 18px;

        width: 58px;
        height: 58px;

        background: #fff;
        border-radius: 50%;

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

        font-size: 26px;
        color: #f59e0b;

        box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
    }

    .category-content h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .category-content p {
        font-size: 14px;
        line-height: 1.5;
        margin: 0;
    }


    @media(max-width:991px) {

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

    }

    @media(max-width:576px) {

        .category-grid {
            grid-template-columns: 1fr;
        }

    }
