@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* :root {
    --orange: #f47721;
    --pink: #d82ec6;
    --purple: #9b10b5;
    --ink: #4a3848;
    --muted: #8d728a;
    --soft: #faeefc;
    --cream: #f5e8df;
    --shadow: 0 12px 28px rgba(92, 42, 90, .15);
    --title: "Fira Sans", sans-serif;
    --normal: "Montserrat", sans-serif;
    ;
} */

:root {
    --orange: #FF6B4D;
    --yellow: #FFB23C;
    --darkblue: #1B1230;
    --pink: #E91E63;
    --purple: #E91E63;
    --ink: #4a3848;
    --muted: #8d728a;
    --soft: #faeefc;
    --cream: #f5e8df;
    --shadow: 0 12px 28px rgba(92, 42, 90, .15);
    --title: "Fira Sans", sans-serif;
    --normal: "Montserrat", sans-serif;
    ;
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1490px;
    }
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: var(--normal);
    background: #fff;
}

a {
    text-decoration: none;
}

.top-strip {
    background: #fff;
    color: var(--pink);
    font-size: .82rem;
    font-weight: 500;
    padding: .55rem 0;
}

.list-btn {
    background: var(--orange);
    border-radius: 8px;
    color: #fff;
    padding: .45rem 1.2rem;
}

.login-link {
    color: var(--orange);
    font-weight: 500;
}

.main-nav {
    background: #FFF8F2;
    /* background: linear-gradient(90deg, var(--orange), var(--purple)); */
    min-height: 58px;
    color: #000000 !important;
    border-top: 3px solid;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, var(--orange), var(--purple)) 1;
}

.logo,
.footer-logo {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 0;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, .9);
    font-size: .92rem;
    font-weight: 400;
}

.hero,
.carousel-item {
    position: relative;
    height: clamp(420px, 48vw, 700px);
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    animation: slowZoom 8s ease-in-out both;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(233, 30, 99, 0.80) 0%,
            rgba(255, 107, 77, 0.50) 35%,
            rgba(255, 178, 60, 0.15) 55%,
            rgba(0, 0, 0, 0) 100%);
}

.hero-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0 0 50px 50px;
    color: #fff;
    text-shadow: 0 3px 12px rgba(0, 0, 0, .35);
    background: #fafafa;
    background: linear-gradient(180deg,
            rgba(250, 250, 250, 0) 0%,
            rgba(255, 107, 77, 0.55) 45%,
            rgba(233, 30, 99, 1) 100%);
}

.hero-caption h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 2.3rem);
    font-weight: 900;
}

.hero-caption p {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.3rem, 3.2vw, 1.7rem);
    font-style: italic;
}

.carousel-indicators {
    margin-bottom: 18px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

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

@keyframes slowZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }

}

/* Tablet */

@media (max-width:991px) {

    .hero,
    .carousel-item {
        height: auto;
    }

    .hero-caption {
        padding: 0 20px 35px;
    }

    .hero-caption h1 {
        font-size: 32px;
    }

    .hero-caption p {
        font-size: 18px;
    }

    .step-badge {
        background: #f58220;
        color: #fff;
        padding: 7px 15px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 700;
        margin-right: 8px;
        line-height: 1;
        white-space: nowrap;
        position: absolute;
        margin-left: -83px;
    }

}

/* Mobile */

@media (max-width:767px) {

    .hero,
    .carousel-item {
        height: 230px;
    }

    .hero-slide {
        height: 230px;
    }

    .banner-img {
        height: auto;
        object-fit: cover;
        object-position: center;
    }

    .hero-caption {
        padding: 0 15px 18px;
    }

    .hero-caption h1 {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 3px;
    }

    .hero-caption p {
        font-size: 14px;
        line-height: 1.3;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .carousel-indicators {
        margin-bottom: 6px;
    }

    .step-badge {
        font-size: 11px;
        padding: 7px 14px;
    }
}

.section-pad {
    padding: 3rem 0;
}

.section-title {
    color: var(--pink);
    font-family: var(--title);
    font-size: clamp(1.45rem, 2vw, 1.85rem);
    font-weight: 400;
    margin: 0 0 0rem;
    padding-bottom: 30px;
    position: relative;
    text-align: center;
    background: url(../img/head-bg.png) no-repeat center bottom;
}

.section-title2 {
    color: var(--pink);
    font-family: var(--title);
    font-size: clamp(1.45rem, 2vw, 1.85rem);
    font-weight: 400;
    margin: 0 0 0rem;
    padding-bottom: 30px;
    position: relative;
    text-align: left;
    background: url(../img/head-bg-2.png) no-repeat left bottom;
}

/* .service-strip {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(11, minmax(90px, 1fr));
  overflow-x: auto;
  padding: .35rem 0 .8rem;
}

.service-box {
  align-items: center;
  animation: floatUp .75s ease both;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #343434;
  display: flex;
  flex-direction: column;
  font-size: .90rem;
  gap: .45rem;
  min-height: 95px;
  padding: .6rem;
  transition: .25s ease;
  margin: 15px 0;
}
.service-box img{ width:80px; height:auto; }
.service-box:nth-child(2),
.venue-card:nth-child(2) {
  animation-delay: .08s;
}

.service-box:nth-child(3),
.venue-card:nth-child(3) {
  animation-delay: .16s;
}

.service-box:nth-child(4),
.venue-card:nth-child(4) {
  animation-delay: .24s;
}

.service-box:hover,
.service-box.active {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  color: var(--orange);
  transform: translateY(-5px);
} */

/*==================================================
            SECTION COMPONENTS
==================================================*/
#services.section-pad {
    padding: 50px 0;
}

#services .section-title {
    font-size: 1.60rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

/*==================================================
        SERVICE BOX COMPONENT & HOVER STYLES
==================================================*/
#services .service-box {
    width: 105px;
    min-width: 105px;
    height: 105px;
    background: #ffffff;
    border: 1px solid #ebdbe9;
    border-radius: 12px;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
    margin: 4px 0;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

#services .service-box img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 6px;
    transition: transform 0.25s ease;
}

#services .service-box span {
    font-size: 11px;
    font-weight: 500;
    color: #444;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#services .service-box:hover,
#services .service-box.active {
    border-color: #c61abc;
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(198, 26, 188, 0.12);
    transform: translateY(-6px);
}

#services .service-box.active span,
#services .service-box:hover span {
    color: #c61abc;
    font-weight: 600;
}

/*==================================================
      RESPONSIVE MATRIX MASTER LAYOUT ENGINE
==================================================*/
#services .category-container-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0 25px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

#services .category-container-wrapper::-webkit-scrollbar {
    height: 6px;
}

#services .category-container-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#services .category-container-wrapper::-webkit-scrollbar-thumb {
    background: #dfd4e3;
    border-radius: 10px;
}

#services .service-strip {
    display: flex;
    gap: 16px;
    width: max-content;
}

@media (min-width: 768px) {


    #services .service-box {
        width: 130px;
        min-width: 130px;
        height: 130px;
        padding: 12px;
    }

    #services .service-box img {
        width: 58px;
        height: 58px;
        margin-bottom: 10px;
    }

    #services .service-box span {
        font-size: 13px;
    }

    #services .service-column-group-desktop {
        display: grid;
        grid-template-rows: repeat(2, auto);
        gap: 20px;
    }

    #services .service-strip {
        gap: 20px;
    }
}

/*==================================================
    SCOPED SEARCH CONTROLS & SELECT2 OVERRIDES
==================================================*/
#services .search-panel {
    margin: 0 auto;
    max-width: 1140px;
    padding: 10px;
}

#services .filter-fields-row {
    margin-left: -12px;
    margin-right: -12px;
}

#services .filter-field-column {
    padding-left: 12px;
    padding-right: 12px;
}

#services .search-opt {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0 0 20px 0;
}

#services .form-label {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

/* Custom design restricted to current scope section only */
#services .form-control,
#services .form-select {
    width: 100%;
    height: 52px;
    background-color: #ffffff;
    border: 2px solid #e1d6e0;
    border-radius: 12px;
    font-size: 15px;
    color: #333333;
    font-weight: 500;
    padding: 0 18px;
    box-shadow: none;
    outline: none;
}

#services .form-control:focus {
    border-color: #c61abc;
    box-shadow: 0 0 0 4px rgba(198, 26, 188, 0.1);
}

/* Custom design scoped to Select2 elements generated under this section */
#services .select2-container--default .select2-selection--single {
    height: 52px;
    background-color: #ffffff;
    border: 2px solid #e1d6e0;
    border-radius: 12px;
    outline: none;
    display: flex;
    align-items: center;
    transition: border-color 0.2s ease;
}

#services .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333333;
    font-size: 15px;
    font-weight: 500;
    padding-left: 18px;
    padding-right: 30px;
    line-height: 48px;
}

#services .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px;
    right: 12px;
    display: flex;
    align-items: center;
}

#services .select2-container--default.select2-container--focus .select2-selection--single,
#services .select2-container--default.select2-container--open .select2-selection--single {
    border-color: #c61abc;
    box-shadow: 0 0 0 4px rgba(198, 26, 188, 0.1);
}

/* Structured Scoped Layout Alignment Configurations for Dynamic Filters Box */
#services .dynamic-filter-injector-box {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

#services .dynamic-filter-inner-wrapper {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
}

#services .gradient-btn {
    background: linear-gradient(135deg, #ef7d66, #ed6f99);
    border: 0;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 14px 45px;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(198, 26, 188, 0.25);
    transition: all 0.3s ease;
}

#services .gradient-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 26, 188, 0.35);
    color: #fff;
}

/*==================================================
    STRICT MOBILE OPTIMIZATIONS OVERRIDES (MAX-WIDTH)
==================================================*/
@media (max-width: 767px) {
    #services .service-box {
        width: 105px;
        min-width: 82px;
        height: 105px;
        padding: 4px;
        border-radius: 10px;
    }

    #services .service-box img {
        width: 50px;
        height: 50px;
        margin-bottom: 4px;
    }

    #services .service-box span {
        font-size: 11px;
        line-height: 1.1;
    }

    #services .service-column-group-mobile {
        display: grid;
        grid-template-rows: repeat(3, auto);
        gap: 8px;
    }

    #services .service-strip {
        gap: 8px;
    }

    #services .category-container-wrapper {
        padding: 5px 0 12px 0;
    }

    #services .section-title {
        font-size: 1.15rem;
        margin-bottom: 14px;
    }

    /* Fixed Layout Alignment and sizes across ALL field containers */
    #services .filter-fields-row {
        margin-left: 0;
        margin-right: 0;
    }

    #services .filter-field-column,
    #services .dynamic-filter-inner-wrapper {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 10px;
    }

    #services .dynamic-filter-injector-box {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin: 0;
    }

    #services .search-opt {
        margin: 0;
        padding: 0;
    }

    #services .form-control {
        height: 44px;
        border-radius: 10px;
        font-size: 14px;
        padding: 0 14px;
    }

    #services .form-control::placeholder {
        line-height: normal;
    }

    #services .select2-container--default .select2-selection--single {
        height: 44px;
        border-radius: 10px;
    }

    #services .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 14px;
        padding-left: 14px;
        line-height: 40px;
    }

    #services .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 42px;
        right: 8px;
    }

    #services .form-label {
        margin-bottom: 6px;
        font-size: 13px;
    }
}

.event-stack {
    align-items: end;
    display: flex;
    justify-content: center;
    min-height: 245px;
    position: relative;
}

.event-card {
    animation: popIn .75s ease both;
    border-radius: 18px;
    box-shadow: 0 8px 18px rgba(83, 20, 93, .35);
    color: #fff;
    flex: 0 0 210px;
    height: 145px;
    margin: 0 -24px;
    overflow: hidden;
    position: relative;
    transition: .25s ease;
}

.event-card::after {
    background: linear-gradient(0deg, rgba(185, 0, 178, .88), transparent 58%);
    content: "";
    inset: 0;
    position: absolute;
}

.vendor-card video {
    line-height: 0px !important;
    border-radius: 12px;
}

.event-card span {
    bottom: 18px;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    z-index: 2;
}

.event-card:hover {
    transform: translateY(-10px) scale(1.03);
    z-index: 5;
}

.small-card {
    transform: translateY(-18px);
}

.mid-card {
    flex-basis: 245px;
    height: 168px;
    z-index: 2;
}

.main-card {
    flex-basis: 315px;
    height: 220px;
    z-index: 4;
}

.promo-box {
    border-radius: 16px;
    box-shadow: var(--shadow);
    min-height: 240px;
    overflow: hidden;
    padding: 2rem;
    position: relative;
}

.banquet {
    background: linear-gradient(rgba(255, 255, 255, .48), rgba(255, 255, 255, .2)), url("Event26.png") center/cover;
}

.decor {
    background: linear-gradient(110deg, rgba(77, 0, 51, .94), rgba(141, 24, 95, .7)), url("Event26.png") center/cover;
    color: #fff;
}

.promo-box h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3vw, 3rem);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.promo-icons {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 2rem;
    text-align: center;
}

.venues {
    background: var(--cream);
}

.list-card {
    background: linear-gradient(290deg, #ef7d66, #ed6f99);
    margin: 14px 0;
    border-radius: 12px;
    box-shadow: var(--shadow);
    color: #fff;
    overflow: hidden;
    transition: .25s ease;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    transform: scale(1.0);
}

.list-card:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    transform: scale(1.1);
}

.cover-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    barder: 2px solid #fff;
}

.list-body {
    padding: .9rem;
}

.list-body h3 {
    font-size: .95rem;
    font-weight: 500;
    margin: 0 0 .35rem;
}

.list-body p {
    font-size: .75rem;
    margin-bottom: .7rem;
}

.venue-actions {
    display: flex;
    gap: .6rem;
    margin-top: .75rem;
}

.venue-actions a {
    background: #fff;
    border-radius: 20px;
    color: var(--darkblue);
    flex: 1;
    font-size: .85rem;
    font-weight: 500;
    padding: .35rem;
    text-align: center;
}

.list-card:hover .venue-actions a {
    background: var(--darkblue);
    border-radius: 20px;
    color: #fff;
    flex: 1;
    font-size: .85rem;
    font-weight: 500;
    padding: .35rem;
    text-align: center;
}

.vendor-card {
    animation: popIn .7s ease both;
    background: #fff;
    padding: 4px 4px 0 4px;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: auto;
    overflow: hidden;
}

.vendor-cta {
    background: left center/cover #f5e8df;
    color: #000000;
    padding: 2rem 0;
}

.vendor-cta h2 {
    font-size: 1.90rem;
    font-family: var(--title);
    font-weight: 400;
    margin: 0;
}

.white-btn {
    background: #fff;
    border-radius: 12px;
    color: var(--orange);
    font-weight: 500;
    padding: .75rem 1.6rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: all 0.35s ease-in-out;
}

.white-btn:hover {
    transition: all 0.35s ease-in-out;
    transform: scale(1.1);
}

.contact-section {
    background: linear-gradient(290deg, #ef7d66, #fb6c9c);
    color: #fff;
    padding: 4.5rem 0;
}

.contact-section h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 1.3rem;
}

.contact-section p {
    opacity: .92;
}

.contact-list {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
}

.contact-list li {
    margin-bottom: 1rem;
    padding-left: 2.2rem;
    position: relative;
}

.contact-list li i {
    margin-left: -20px;
    margin-right: 8px;
}

.contact-list li::before {
    border: 2px solid #fff;
    border-radius: 50%;
    content: "";
    height: 30px;
    left: 10px;
    position: absolute;
    top: -4px;
    width: 30px;
}

.contact-section .form-control {
    background: transparent;
    border-color: rgba(255, 255, 255, .78);
    border-radius: 999px;
    color: #fff;
}

.contact-section .form-control::placeholder {
    color: rgba(255, 255, 255, .88);
}

.submit-btn {
    background: #fff;
    color: #c654bb;
    margin-top: 0;
    width: 100%;
}

.footer {
    background: #f3e7df;
    color: #c270bd;
    padding-top: 3.5rem;
}

.footer h3 {
    color: #ba49b9;
    font-family: var(--title);
    font-weight: 400;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.footer a {
    color: var(--orange);
    display: block;
    font-size: 1.0rem;
    margin-bottom: .35rem;
}

.footer p {
    font-size: .8rem;
}

.footer-logo {
    color: #ba49b9;
}

.blog-thumb {
    background: #fff;
    border-radius: 6px;
    height: 80px;
    margin-bottom: .75rem;
    width: 135px;
}

.socials {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.socials a {
    align-items: center;
    background: #d7b9b0;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    font-weight: 800;
    height: 28px;
    justify-content: center;
    width: 28px;
}

.copyright {
    background: #fff;
    color: #8d7c85;
    font-size: .72rem;
    margin-top: 2rem;
    padding: 1.1rem 0;
}

/*---------- swiper ------------ */


.heading {
    text-align: center;
    font-size: 40px;
    color: #9c27b0;
    font-weight: 700;
    margin-bottom: 60px
}

.swiper {
    padding: 30px 0 90px;
    overflow: visible
}

.swiper-slide {
    width: 320px
}

.card-box {
    height: 270px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .2);
    transition: .35s
}

.card-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .5s
}

.card-box:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background: linear-gradient(180deg,
            rgba(250, 250, 250, 0) 0%,
            rgba(255, 107, 77, 0.55) 45%,
            rgba(233, 30, 99, 1) 100%);
}

.card-box span {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    z-index: 2;
    width: 100%;
    text-align: center
}

.swiper-slide-active {
    z-index: 10
}

.swiper-slide-active .card-box {
    transform: scale(1.15)
}

.swiper-slide-active img {
    transform: scale(1.08)
}

.swiper-slide-prev .card-box,
.swiper-slide-next .card-box {
    transform: scale(.92)
}

/* .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
    opacity: .5;
    transform: scale(.82)
} */

@media(max-width:767px) {
    .heading {
        font-size: 28px;
        margin-bottom: 40px
    }

    .swiper-slide {
        width: 230px
    }

    .card-box {
        height: 200px
    }

    .card-box span {
        font-size: 18px
    }

    .swiper-slide-active .card-box {
        transform: scale(1.05)
    }

    .swiper-slide-prev .card-box,
    .swiper-slide-next .card-box {
        transform: scale(.92)
    }
}

@media (min-width: 1400px) {
    .swiper-slide {
        width: 280px;
    }

    .card-box {
        height: 360px;
    }
}

@media (max-width: 1199px) {
    .swiper-slide {
        width: 260px;
    }

    .card-box {
        height: 330px;
    }
}

@media (max-width: 991px) {
    .swiper-slide {
        width: 240px;
    }

    .card-box {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .swiper-slide {
        width: 220px;
    }

    .card-box {
        height: 260px;
    }
}

/*---------- listing ------------ */
.left-filter {
    border-radius: 15px;
    background-color: #fff;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.filter-head {
    background-color: var(--purple);
    padding: 20px 0 30px 0;
    text-align: center;
}

.filter-head h1 {
    color: #fff;
    font-size: 20px;
    font-family: var(--title);
    font-weight: 500;
}

.filter-head {
    background-color: #1B1230;
    box-shadow: var(--shadow);
    z-index: 6;
}

.filter-data {
    border-radius: 15px;
    background-color: #fff;
    margin-top: -20px;
    z-index: 8;
    padding: 15px;
}

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

.breadcrumb ul li {
    display: inline-block;
    color: var(--orange);
}

.breadcrumb ul li a {
    color: var(--orange);
    list-style: none;
}

/*---------- details ------------ */
.detail-location {
    align-items: center;
    border-left: 3px solid var(--purple);
    color: var(--pink);
    display: flex;
    font-weight: 600;
    gap: 12px;
    line-height: 1.25;
    padding-left: 24px;
}

.rating-pill {
    align-items: center;
    background: linear-gradient(90deg, var(--orange), var(--purple));
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-weight: 600;
    gap: 10px;
    justify-content: center;
    min-width: 102px;
    padding: 8px 20px;
}

.detail-main {
    padding: 28px 0 64px;
}

.breadcrumb-line {
    color: var(--orange);
    font-size: .95rem;
    margin-bottom: 14px;
}

.breadcrumb-line a {
    color: var(--orange);
}

.detail-title-row {
    align-items: center;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(260px, 380px) 1fr auto;
    margin-bottom: 28px;
}

.detail-heading {
    color: var(--pink);
    font-family: var(--title);
    font-size: clamp(2rem, 3vw, 2.7rem);
    font-weight: 400;
    margin: 0;
    padding-bottom: 20px;
    position: relative;
}

.detail-heading::after {
    background: var(--orange);
    bottom: 5px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 84px;
}

.detail-heading::before {
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 11px solid var(--orange);
    bottom: -5px;
    content: "";
    left: 16px;
    position: absolute;
}

.detail-location {
    align-items: center;
    border-left: 3px solid var(--purple);
    color: var(--pink);
    display: flex;
    font-weight: 600;
    gap: 12px;
    line-height: 1.25;
    padding-left: 24px;
}

.icon-round {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    color: var(--orange);
    display: inline-flex;
    flex: 0 0 36px;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.icon-round svg,
.mini-icon {
    fill: currentColor;
    height: 20px;
    width: 20px;
}

.rating-pill {
    align-items: center;
    background: linear-gradient(90deg, var(--orange), var(--purple));
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-weight: 600;
    gap: 10px;
    justify-content: center;
    min-width: 102px;
    padding: 8px 20px;
}

.detail-photo-card,
.description-box,
.info-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
    overflow: hidden;
}

.detail-photo-card {
    animation: floatUp .75s ease both;
    height: 495px;
    position: relative;
}

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

.photo-actions {
    background: linear-gradient(180deg, rgba(164, 20, 181, 0), rgba(169, 18, 184, .96));
    bottom: 0;
    color: #fff;
    display: grid;
    font-weight: 600;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
    left: 0;
    padding: 48px 18px 18px;
    position: absolute;
    right: 0;
    text-align: center;
}

.description-box {
    margin-top: 28px;
    padding: 22px 26px 34px;
}

.description-box h2,
.info-group-title {
    color: var(--purple);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.description-box p {
    color: #646064;
    font-weight: 500;
    line-height: 1.35;
    margin: 0;
}

.info-card {
    animation: floatUp .75s ease both;
    animation-delay: .12s;
    min-height: 495px;
    padding: 34px;
}

.info-grid {
    display: grid;
    gap: 26px 48px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-wide {
    grid-column: 1 / -1;
}

.info-group-title {
    align-items: center;
    display: flex;
    gap: 8px;
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-chip {
    background: #fff;
    border: 1px solid #cfc7cd;
    border-radius: 999px;
    color: var(--orange);
    display: inline-flex;
    font-size: 1rem;
    min-width: 92px;
    padding: 5px 16px;
}

.amenities {
    border-top: 1px solid #bdb4bb;
    margin-top: 28px;
    padding-top: 22px;
}

.amenities .detail-chip {
    color: #8e8a8f;
    min-width: auto;
    padding-inline: 20px;
}

.demand-text {
    color: #f02d38;
    font-weight: 600;
    margin: 28px 0 20px;
}

.phone-line {
    color: var(--purple);
    font-weight: 700;
    margin-bottom: 18px;
}

.phone-line span {
    color: var(--orange);
    font-size: 1.08rem;
    margin-left: 8px;
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.detail-action-btn {
    align-items: center;
    background: linear-gradient(90deg, var(--orange), var(--purple));
    border: 0;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-weight: 600;
    gap: 8px;
    min-width: 180px;
    /* min-width: 230px; */
    padding: 10px 22px;
}

.detail-action-btn:hover {
    background: linear-gradient(-90deg, var(--orange), var(--purple));
    color: #fff;
}

.promo-strip {
    padding: 0 0 50px;
}

.promo-strip .promo-box {
    border: 2px solid var(--orange);
    min-height: 285px;
}

.similar-section {
    padding-bottom: 64px;
}

.similar-title {
    color: var(--pink);
    font-family: var(--title);
    font-size: clamp(2rem, 3vw, 2.55rem);
    font-weight: 400;
    margin-bottom: 40px;
    padding-bottom: 22px;
    position: relative;
}

.similar-title::after {
    background: var(--orange);
    bottom: 7px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 90px;
}

.similar-title::before {
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid var(--orange);
    bottom: -4px;
    content: "";
    left: 20px;
    position: absolute;
}

.similar-card {
    animation: floatUp .75s ease both;
    background: linear-gradient(180deg, #FF6B4D, #E91E63);
    border-radius: 12px;
    box-shadow: var(--shadow);
    color: #fff;
    overflow: hidden;
    transition: .25s ease;
}

.similar-card:hover {
    transform: translateY(-8px);
}

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

.similar-card-body {
    padding: 16px;
}

.similar-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.similar-meta {
    align-items: flex-start;
    display: flex;
    gap: 8px;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.similar-stats {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.small-pill {
    background: #fff;
    border-radius: 999px;
    color: var(--orange);
    display: inline-flex;
    font-size: .78rem;
    font-weight: 700;
    justify-content: center;
    min-width: 96px;
    padding: 6px 12px;
}

.footer .footer-logo {
    color: #ba49b9;
}

.footer-logo img {
    max-height: 70px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .detail-title-row {
        grid-template-columns: 1fr;
    }

    .detail-location {
        border-left: 0;
        padding-left: 0;
    }

    .detail-photo-card,
    .info-card {
        height: auto;
        min-height: 0;
    }

    .detail-photo-card {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 575.98px) {
    .detail-main {
        padding-top: 22px;
    }

    .info-card {
        padding: 24px;
    }

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

    .photo-actions {
        font-size: .85rem;
        grid-template-columns: 3fr;
        padding-top: 28px;
    }
}



@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 991.98px) {
    .service-strip {
        grid-template-columns: repeat(4, minmax(100px, 1fr));
    }

    .event-stack {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .event-card,
    .small-card,
    .mid-card,
    .main-card {
        flex: 1 1 210px;
        height: 160px;
        margin: 0;
        transform: none;
    }
}

@media (max-width: 575.98px) {
    .top-strip .container {
        align-items: flex-start !important;
        flex-direction: column;
        gap: .55rem;
    }



    .service-strip {
        grid-template-columns: repeat(4, minmax(80px, 1fr));
    }

    .search-panel .col-md-3 {
        margin-inline: .25rem;
    }

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

    .socials {
        justify-content: flex-start;
    }
}

.user-avatar {
    text-align: center;
    margin-bottom: 20px;
}

.user-avatar img,
.avatar-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

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

.avatar-placeholder {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

/* ========================================
   BLOG SIDEBAR - COMPLETE STYLES
======================================== */

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem 1.5rem 1.8rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0ebed;
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.sidebar-widget-title {
    font-family: var(--title, 'Georgia', serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink, #4a3848);
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid #f0ebed;
    position: relative;
    letter-spacing: -0.3px;
}

.sidebar-widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 45px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange, FF6B4D), var(--purple, #E91E63));
    border-radius: 2px;
}

/* Search */
.blog-search .form-control {
    border: 2px solid #eae4e8;
    border-radius: 12px 0 0 12px;
    padding: 0.6rem 1rem;
    font-size: 0.92rem;
    background: #faf8f9;
    height: 46px;
    color: var(--ink, #4a3848);
    transition: all 0.3s ease;
}

.blog-search .form-control:focus {
    border-color: var(--orange, FF6B4D);
    box-shadow: 0 0 0 4px rgba(244, 119, 33, 0.08);
    background: #ffffff;
    outline: none;
}

.blog-search .form-control::placeholder {
    color: #b0a5ad;
}

.btn-search {
    background: linear-gradient(135deg, var(--orange, FF6B4D), var(--purple, #E91E63));
    color: #ffffff;
    border: none;
    border-radius: 0 12px 12px 0;
    padding: 0 1.2rem;
    transition: all 0.3s ease;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-search:hover {
    opacity: 0.9;
    color: #ffffff;
}

.btn-search i {
    font-size: 1rem;
}

/* Categories */
.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    border-bottom: 1px solid #f0ebed;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.sidebar-categories li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-categories li:first-child {
    padding-top: 0;
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ink, #4a3848);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0 4px;
}

.sidebar-categories a:hover {
    color: var(--purple, #E91E63);
    padding-left: 8px;
}

.category-count {
    background: #f0ebed;
    color: var(--purple, #E91E63);
    padding: 0.1rem 0.6rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

/* Recent Posts */
.recent-post-item {
    display: flex;
    gap: 0.8rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0ebed;
    align-items: center;
    transition: all 0.3s ease;
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-item:first-child {
    padding-top: 0;
}

.recent-post-item img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #f0ebed;
    transition: all 0.3s ease;
}

.recent-post-item:hover img {
    border-color: var(--orange, FF6B4D);
}

.recent-post-info {
    flex: 1;
    min-width: 0;
}

.recent-post-info h5 {
    font-size: 0.88rem;
    font-weight: 600;
    margin: 0 0 0.2rem;
    line-height: 1.3;
}

.recent-post-info h5 a {
    color: var(--ink, #4a3848);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.recent-post-info h5 a:hover {
    color: var(--purple, #E91E63);
}

.recent-post-info span {
    font-size: 0.72rem;
    color: var(--muted, #8d728a);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.recent-post-info span::before {
    content: '📅';
    font-size: 0.6rem;
}

/* Tags */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.2rem;
}

.tag-item {
    background: #f5f0f2;
    color: var(--muted, #8d728a);
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tag-item:hover {
    background: linear-gradient(135deg, var(--orange, FF6B4D), var(--purple, #E91E63));
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(155, 16, 181, 0.2);
}

/* Newsletter */
.newsletter-widget {
    background: linear-gradient(135deg, #faf5fb, #f0ebed);
    border: none;
    position: relative;
    overflow: hidden;
}

.newsletter-widget::before {
    content: '📬';
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 4rem;
    opacity: 0.1;
    transform: rotate(15deg);
}

.newsletter-widget p {
    color: var(--muted, #8d728a);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.newsletter-form .form-control {
    border: 2px solid #eae4e8;
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-size: 0.88rem;
    background: #ffffff;
    height: 44px;
    color: var(--ink, #4a3848);
    transition: all 0.3s ease;
}

.newsletter-form .form-control:focus {
    border-color: var(--orange, FF6B4D);
    box-shadow: 0 0 0 4px rgba(244, 119, 33, 0.08);
    outline: none;
}

.newsletter-form .form-control::placeholder {
    color: #b0a5ad;
}

.btn-subscribe {
    background: linear-gradient(135deg, var(--orange, FF6B4D), var(--purple, #E91E63));
    color: #ffffff;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-subscribe:hover {
    opacity: 0.9;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 119, 33, 0.25);
}

.btn-subscribe::after {
    content: '→';
    transition: transform 0.3s ease;
}

.btn-subscribe:hover::after {
    transform: translateX(4px);
}

/* ========================================
       BLOG LIST - REDESIGNED
       ======================================== */
.blog-search .form-control {
    border: 2px solid #eae4e8;
    border-radius: 10px 0 0 10px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background: #fff;
    height: 42px;
}

.blog-search .form-control:focus {
    border-color: var(--orange);
    box-shadow: none;
}

.btn-search {
    background: linear-gradient(135deg, var(--orange), var(--purple));
    color: #fff;
    border: none;
    border-radius: 0 10px 10px 0;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    height: 42px;
    width: 44px;
}

.btn-search:hover {
    color: #fff;
    opacity: 0.9;
}

/* Featured Post */
.featured-post-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.featured-post-image {
    position: relative;
    height: 100%;
    min-height: 240px;
    overflow: hidden;
}

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

.featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--orange), var(--purple));
    color: #fff;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-post-content {
    padding: 1.8rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
}

.post-category {
    background: var(--soft);
    color: var(--purple);
    padding: 0.15rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.post-date {
    color: var(--muted);
    font-size: 0.8rem;
}

.post-date i {
    margin-right: 4px;
}

.featured-post-title {
    font-family: var(--title);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.featured-post-excerpt {
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.featured-post-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.featured-post-author img,
.author-avatar-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar-placeholder {
    background: linear-gradient(135deg, var(--orange), var(--purple));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.featured-post-author span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink);
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--orange), var(--purple));
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 119, 33, 0.25);
    color: #fff;
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

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

/* Blog Cards - Smaller */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    padding-top: 55%;
    background: #f0ebed;
}

.blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-card-category {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.15rem 0.6rem;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.blog-card-body {
    padding: 1rem;
}

.blog-card-meta {
    display: flex;
    gap: 0.8rem;
    font-size: 0.7rem;
    color: var(--muted);
    margin-bottom: 0.3rem;
}

.blog-card-meta i {
    margin-right: 3px;
}

.blog-card-title {
    font-family: var(--title);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--purple);
}

.blog-card-excerpt {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 0.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--orange);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.blog-card-link:hover {
    color: var(--purple);
    gap: 0.6rem;
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.sidebar-widget-title {
    font-family: var(--title);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.8rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--soft);
    position: relative;
}

.sidebar-widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--purple));
}

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

.sidebar-categories li {
    border-bottom: 1px solid var(--soft);
    padding: 0.4rem 0;
}

.sidebar-categories li:last-child {
    border-bottom: none;
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ink);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.sidebar-categories a:hover {
    color: var(--purple);
    padding-left: 4px;
}

.category-count {
    background: var(--soft);
    color: var(--purple);
    padding: 0.05rem 0.5rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.recent-post-item {
    display: flex;
    gap: 0.8rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--soft);
    align-items: center;
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-item img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-info h5 {
    font-size: 0.82rem;
    font-weight: 500;
    margin: 0 0 0.1rem;
    line-height: 1.3;
}

.recent-post-info h5 a {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-info h5 a:hover {
    color: var(--purple);
}

.recent-post-info span {
    font-size: 0.7rem;
    color: var(--muted);
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag-item {
    background: var(--soft);
    color: var(--muted);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: linear-gradient(135deg, var(--orange), var(--purple));
    color: #fff;
}

.newsletter-widget {
    background: linear-gradient(135deg, var(--soft), #f0ebed);
}

.newsletter-widget p {
    color: var(--muted);
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

.newsletter-form {
    display: flex;
    gap: 0.4rem;
    flex-direction: column;
}

.newsletter-form .form-control {
    border: 2px solid #eae4e8;
    border-radius: 8px;
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
    background: #fff;
    height: 38px;
}

.newsletter-form .form-control:focus {
    border-color: var(--orange);
    box-shadow: none;
}

.btn-subscribe {
    background: linear-gradient(135deg, var(--orange), var(--purple));
    color: #fff;
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    height: 38px;
}

.btn-subscribe:hover {
    opacity: 0.9;
    color: #fff;
}

.btn-outline-primary {
    border: 2px solid var(--orange);
    color: var(--orange);
    background: transparent;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

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

/* Pagination */
.pagination {
    display: flex;
    gap: 0.3rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.pagination .page-item .page-link {
    border: 2px solid #eae4e8;
    border-radius: 6px;
    padding: 0.3rem 0.7rem;
    color: var(--ink);
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--orange), var(--purple));
    border-color: var(--purple);
    color: #fff;
}

.pagination .page-item .page-link:hover {
    border-color: var(--orange);
    background: transparent;
}

/* ========================================
       RESPONSIVE
       ======================================== */
@media (max-width: 991px) {
    .featured-post-image {
        min-height: 200px;
    }

    .featured-post-content {
        padding: 1.2rem;
    }

    .featured-post-title {
        font-size: 1.1rem;
    }

    .blog-card-image {
        padding-top: 60%;
    }
}

@media (max-width: 767px) {
    .section-pad {
        padding: 1.5rem 0;
    }

    .featured-post-card {
        border-radius: 12px;
    }

    .featured-post-image {
        min-height: 160px;
    }

    .featured-post-content {
        padding: 1rem;
    }

    .featured-post-title {
        font-size: 1rem;
    }

    .featured-post-excerpt {
        font-size: 0.85rem;
    }

    .blog-card {
        border-radius: 10px;
    }

    .blog-card-image {
        padding-top: 50%;
    }

    .blog-card-body {
        padding: 0.8rem;
    }

    .blog-card-title {
        font-size: 0.9rem;
    }

    .blog-card-excerpt {
        font-size: 0.78rem;
    }

    .sidebar-widget {
        padding: 1rem;
    }

    .blog-search .form-control {
        height: 38px;
        font-size: 0.85rem;
    }

    .btn-search {
        height: 38px;
        width: 40px;
    }

    .post-meta {
        gap: 0.5rem;
    }

    .recent-post-item img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 575px) {
    .featured-post-image {
        min-height: 130px;
    }

    .featured-post-content {
        padding: 0.8rem;
    }

    .featured-post-title {
        font-size: 0.9rem;
    }

    .featured-post-excerpt {
        font-size: 0.8rem;
    }

    .blog-card-image {
        padding-top: 45%;
    }

    .blog-card-title {
        font-size: 0.85rem;
    }

    .blog-card-excerpt {
        font-size: 0.75rem;
    }

    .blog-card-meta {
        font-size: 0.65rem;
    }

    .sidebar-widget {
        padding: 0.8rem;
    }

    .sidebar-widget-title {
        font-size: 0.9rem;
    }

    .blog-search .form-control {
        height: 34px;
        font-size: 0.8rem;
    }

    .btn-search {
        height: 34px;
        width: 36px;
        font-size: 0.8rem;
    }

    .btn-read-more {
        font-size: 0.8rem;
        padding: 0.3rem 1rem;
    }

    .pagination .page-item .page-link {
        padding: 0.2rem 0.5rem;
        font-size: 0.75rem;
    }

    .g-3 {
        --bs-gutter-y: 0.5rem;
        --bs-gutter-x: 0.5rem;
    }
}

@media (max-width: 400px) {
    .featured-post-image {
        min-height: 100px;
    }

    .featured-post-content {
        padding: 0.6rem;
    }

    .featured-post-title {
        font-size: 0.8rem;
    }

    .blog-card-title {
        font-size: 0.8rem;
    }

    .blog-card-body {
        padding: 0.6rem;
    }

    .blog-card-excerpt {
        -webkit-line-clamp: 1;
    }
}

.post-header {
    margin-bottom: 2rem;
}

.post-category-badge {
    margin-bottom: 0.8rem;
}

.post-category-badge span {
    background: linear-gradient(135deg, var(--orange), var(--purple));
    color: #fff;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-title {
    font-family: var(--title);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-meta-details {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.post-author img,
.author-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar-placeholder {
    background: linear-gradient(135deg, var(--orange), var(--purple));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
}

.author-avatar-placeholder-lg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--purple));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 600;
    flex-shrink: 0;
}

.post-author span {
    font-size: 0.9rem;
    color: var(--muted);
}

.post-author strong {
    color: var(--ink);
}

.post-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.post-meta-info i {
    margin-right: 4px;
}

.post-featured-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.post-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--ink);
    margin-bottom: 1.2rem;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    font-family: var(--title);
    color: var(--purple);
    margin: 1.5rem 0 1rem;
}

.post-content h3 {
    font-size: 1.4rem;
}

.post-content ul,
.post-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.post-content ul li,
.post-content ol li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.post-content blockquote {
    background: var(--soft);
    border-left: 4px solid var(--purple);
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: var(--muted);
}

.post-content img {
    max-width: 100%;
    border-radius: 10px;
    margin: 1rem 0;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem 2.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.tags-label {
    font-weight: 600;
    color: var(--ink);
    margin-right: 0.5rem;
}

.post-tags .tag-item {
    background: var(--soft);
    color: var(--muted);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-tags .tag-item:hover {
    background: linear-gradient(135deg, var(--orange), var(--purple));
    color: #fff;
}

.post-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: #fff;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.share-label {
    font-weight: 600;
    color: var(--ink);
}

.share-icons {
    display: flex;
    gap: 0.5rem;
}

.share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-icon:hover {
    transform: translateY(-3px);
    color: #fff;
}

.share-icon.facebook {
    background: #1877f2;
}

.share-icon.twitter {
    background: #1da1f2;
}

.share-icon.linkedin {
    background: #0a66c2;
}

.share-icon.whatsapp {
    background: #25d366;
}

.share-icon.email {
    background: #ea4335;
}

.author-bio {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    align-items: flex-start;
}

.author-bio-content h4 {
    font-family: var(--title);
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 0.3rem;
}

.author-bio-content p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.author-social {
    display: flex;
    gap: 0.5rem;
}

.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--soft);
    color: var(--muted);
    transition: all 0.3s ease;
    text-decoration: none;
}

.author-social a:hover {
    background: var(--purple);
    color: #fff;
}

.related-posts-title {
    font-family: var(--title);
    font-size: 1.4rem;
    color: var(--purple);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--soft);
    position: relative;
}

.related-posts-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--purple));
}

@media (max-width: 991px) {
    .post-title {
        font-size: 1.8rem;
    }

    .post-content {
        padding: 1.8rem;
    }

    .post-content p {
        font-size: 1rem;
    }

    .post-tags {
        padding: 1rem 1.5rem;
    }

    .post-share {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 767px) {
    .section-pad {
        padding: 2rem 0;
    }

    .post-title {
        font-size: 1.5rem;
    }

    .post-meta-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .post-content {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .post-content p {
        font-size: 0.95rem;
    }

    .post-content h3 {
        font-size: 1.2rem;
    }

    .post-tags {
        padding: 0.8rem 1rem;
        border-radius: 12px;
    }

    .post-share {
        padding: 0.8rem 1rem;
        border-radius: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .author-avatar-placeholder-lg {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .author-social {
        justify-content: center;
    }

    .related-posts-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 575px) {
    .post-title {
        font-size: 1.2rem;
    }

    .post-category-badge span {
        font-size: 0.65rem;
    }

    .post-content {
        padding: 1rem;
    }

    .post-content p {
        font-size: 0.9rem;
    }

    .post-content blockquote {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .post-tags {
        flex-wrap: wrap;
    }

    .share-icons {
        flex-wrap: wrap;
    }

    .share-icon {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
}

.step-badge {
    background: #f58220;
    color: #fff;
    padding: 7px 15px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    margin-right: 8px;
    line-height: 1;
    white-space: nowrap;
}


.vendor-pricing-master {
    background: #ffffff;
    font-family: var(--normal, sans-serif);
    padding: 60px 0;
    position: relative;
}

/* Top Cards Grid */
.pricing-card-box {
    background: #ffffff !important;
    border-radius: var(--auth-radius, 20px);
    padding: 38px 26px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border: 2px solid #eae2e8;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.pricing-card-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(27, 18, 48, 0.12);
    border-color: var(--orange, #FF6B4D);
}

/* Verified Highlight Card */
.pricing-card-box.popular {
    border-color: var(--purple, #E91E63);
    box-shadow: 0 14px 35px rgba(233, 30, 99, 0.12);
}

.pricing-card-box.popular:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 25px 50px rgba(233, 30, 99, 0.25);
}

/* Dark VIP Preferred Card */
.pricing-card-box.vip-card {
    background: linear-gradient(155deg, #241432 0%, #150c26 100%) !important;
    border: 2px solid rgba(255, 178, 60, 0.4);
    color: #ffffff !important;
}

.pricing-card-box.vip-card:hover {
    transform: translateY(-12px) scale(1.01);
    border-color: var(--yellow, #FFB23C);
    box-shadow: 0 25px 50px rgba(255, 107, 77, 0.30);
}

/* Feature Item Lists */
.plan-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.plan-feature-item {
    display: flex;
    align-items: flex-start;
    font-size: 0.88rem;
    line-height: 1.45;
}

.plan-feature-item i {
    font-size: 0.95rem;
    margin-top: 3px;
    flex-shrink: 0;
    margin-right: 12px;
    transition: transform 0.25s ease;
}

.pricing-card-box:hover .plan-feature-item i {
    transform: scale(1.15);
}

/* Card Buttons */
.btn-plan-basic {
    border: 1.5px solid #d5c7d1;
    background: transparent;
    color: var(--purple, #E91E63);
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-plan-basic:hover {
    background: var(--purple, #E91E63);
    color: #ffffff !important;
    border-color: var(--purple, #E91E63);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.25);
}

.btn-plan-verified {
    background: linear-gradient(135deg, var(--orange, #FF6B4D), var(--purple, #E91E63));
    color: #ffffff !important;
    font-weight: 600;
    padding: 13px 20px;
    border-radius: 12px;
    border: none;
    text-align: center;
    text-decoration: none;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-plan-verified:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(244, 119, 33, 0.40);
    filter: brightness(1.08);
}

.btn-plan-vip {
    background: linear-gradient(135deg, var(--yellow, #FFB23C), var(--orange, #FF6B4D));
    color: #1B1230 !important;
    font-weight: 700;
    padding: 13px 20px;
    border-radius: 12px;
    border: none;
    text-align: center;
    text-decoration: none;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-plan-vip:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(255, 178, 60, 0.45);
    filter: brightness(1.08);
}

/* Compare Toggle Button */
.btn-toggle-compare {
    background: #ffffff;
    color: var(--purple, #E91E63);
    border: 2px solid var(--purple, #E91E63);
    padding: 9px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.90rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-toggle-compare:hover {
    background: var(--purple, #E91E63);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.25);
    transform: translateY(-2px);
}

/* Comparison Table Wrapper */
#compareTableWrapper {
    display: none;
    /* Initially hidden */
    margin-top: 50px;
    scroll-margin-top: 30px;
}

.comparison-wrapper {
    background: #ffffff;
    border-radius: var(--auth-radius, 20px);
    box-shadow: 0 16px 45px rgba(27, 18, 48, 0.07);
    border: 1.5px solid #ece4eb;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1080px;
}

.comparison-table {
    margin-bottom: 0;
    vertical-align: middle;
    width: 100%;
}

.comparison-table thead th {
    background: #faf6f9;
    padding: 22px 18px;
    border-bottom: 2px solid #e8dfe6;
    vertical-align: middle;
}

.comparison-table th.feature-th {
    width: 37%;
    font-family: var(--title, sans-serif);
    font-size: 1.05rem;
    color: var(--ink, #4a3848);
    font-weight: 700;
    padding-left: 26px;
}

.comparison-table th.plan-th {
    width: 21%;
    text-align: center;
    font-family: var(--title, sans-serif);
    font-size: 1.02rem;
    color: var(--ink, #4a3848);
    font-weight: 700;
}

.comparison-table th.highlight-th {
    background: rgba(233, 30, 99, 0.04);
    color: var(--purple, #E91E63);
    border-left: 1.5px solid rgba(233, 30, 99, 0.15);
    border-right: 1.5px solid rgba(233, 30, 99, 0.15);
}

.comparison-table tr.category-row td {
    background: #f7edf5;
    color: var(--purple, #E91E63);
    font-family: var(--title, sans-serif);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 12px 26px;
    border-top: 1px solid #e8dfe6;
    border-bottom: 1px solid #e8dfe6;
}

.comparison-table tbody tr.data-row {
    transition: background-color 0.2s ease;
}

.comparison-table tbody tr.data-row:hover {
    background-color: #fefafc;
}

.comparison-table tbody td {
    padding: 13px 18px;
    font-size: 0.88rem;
    color: var(--ink, #4a3848);
    border-bottom: 1px solid #f2ebf0;
}

.comparison-table tbody td.feature-name {
    font-weight: 500;
    padding-left: 26px;
}

.comparison-table tbody td.val-col {
    text-align: center;
    font-weight: 600;
}

.comparison-table tbody td.highlight-td {
    background: rgba(233, 30, 99, 0.02);
    border-left: 1.5px solid rgba(233, 30, 99, 0.15);
    border-right: 1.5px solid rgba(233, 30, 99, 0.15);
}

.icon-check {
    color: #7b42f6;
    font-size: 1.1rem;
}

.icon-cross {
    color: #f43f5e;
    font-size: 1.1rem;
}

.btn-tbl-action {
    display: inline-block;
    padding: 9px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-tbl-basic {
    background: #f1e9ef;
    color: var(--ink, #4a3848);
    border: 1px solid #d8ccd6;
}

.btn-tbl-basic:hover {
    background: var(--ink, #4a3848);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.btn-tbl-verified {
    background: linear-gradient(135deg, var(--orange, #FF6B4D), var(--purple, #E91E63));
    color: #ffffff !important;
    border: none;
}

.btn-tbl-verified:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(233, 30, 99, 0.35);
}

.btn-tbl-vip {
    background: linear-gradient(135deg, var(--yellow, #FFB23C), var(--orange, #FF6B4D));
    color: #1B1230 !important;
    border: none;
}

.btn-tbl-vip:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(255, 107, 77, 0.35);
}

.table-footer-row td {
    padding: 22px 18px !important;
    background: #faf6f9;
    border-top: 2px solid #e8dfe6;
}
