/* ==========================================================================
   The Balloon Blush Decoration - Custom Stylesheet
   Color Palette: Blush Pink, Rose Gold, Champagne, Deep Plum
   ========================================================================== */

:root {
    --bs-primary: #d81b60;
    --bs-primary-rgb: 216, 27, 96;
    --bs-secondary: #c98b2c;
    --bs-secondary-rgb: 201, 139, 44;
    --bs-dark: #1c1022;
    --bs-dark-rgb: 28, 16, 34;
    --bs-light: #fff8fa;
    --bs-light-rgb: 255, 248, 250;
    --bs-body-color: #4a4150;
    --bs-body-bg: #ffffff;
    --primary-gradient: linear-gradient(135deg, #d81b60 0%, #e91e63 50%, #c2185b 100%);
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f39c12 100%);
    --blush-subtle: #fce4ec;
}

body {
    font-family: 'Poppins', 'Roboto', sans-serif;
    color: var(--bs-body-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Yantramanav', sans-serif;
    font-weight: 700;
    color: var(--bs-dark);
}

.text-primary {
    color: var(--bs-primary) !important;
}

.text-secondary {
    color: var(--bs-secondary) !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.bg-secondary {
    background-color: var(--bs-dark) !important;
}

.bg-light-blush {
    background-color: #fdf2f6 !important;
}

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

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 95px;
    transition: 0.5s;
    z-index: 999;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(216, 27, 96, 0.3);
}

.back-to-top:hover {
    background: var(--bs-dark);
    color: #ffffff !important;
    transform: translateY(-3px);
}

/*** Floating Quick Contact Action Buttons ***/
.floating-actions {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.btn-whatsapp-float {
    background-color: #25D366;
    color: #ffffff !important;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.btn-whatsapp-float:hover {
    transform: scale(1.1);
    color: #ffffff !important;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp-float::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.6;
    animation: pulse-border 2s infinite;
    z-index: -1;
}

.btn-call-float {
    background: var(--bs-primary);
    color: #ffffff !important;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 20px rgba(216, 27, 96, 0.4);
    transition: all 0.3s;
}

.btn-call-float:hover {
    background: #ad1457;
    transform: scale(1.1);
    color: #ffffff !important;
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .4s ease-in-out;
    letter-spacing: 0.3px;
}

.btn-square { width: 34px; height: 34px; }
.btn-sm-square { width: 36px; height: 36px; }
.btn-md-square { width: 44px; height: 44px; }
.btn-lg-square { width: 54px; height: 54px; }

.btn-square, .btn-sm-square, .btn-md-square, .btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(216, 27, 96, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ad1457 0%, #d81b60 100%);
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(216, 27, 96, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--gold-gradient);
    border: none;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(201, 139, 44, 0.25);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #b87b1c 0%, #d4af37 100%);
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(201, 139, 44, 0.4);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--bs-primary);
    color: var(--bs-primary);
}

.btn-outline-primary:hover {
    background: var(--bs-primary);
    color: #ffffff !important;
}

/*** Sub Title ***/
.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
    letter-spacing: 2px;
    font-size: 15px;
    font-weight: 700;
}

.sub-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background: var(--bs-secondary);
    position: absolute;
    top: 50%;
    margin-left: 12px;
    border-radius: 2px;
}

/*** Topbar ***/
.topbar {
    padding: 6px 20px;
    background: var(--bs-dark) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar a {
    transition: 0.3s;
    font-size: 14px;
}

.topbar a:hover {
    color: var(--bs-primary) !important;
}

@media (max-width: 991px) {
    .topbar {
        display: none !important;
    }
}

/*** Navbar ***/
.navbar-light {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: .3s;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 20px;
    padding: 28px 0;
    color: var(--bs-dark) !important;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
    font-weight: 600;
}

.navbar-light .navbar-brand h1 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #d81b60 0%, #c98b2c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-light .navbar-brand {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.navbar-light .navbar-brand .brand-logo,
.navbar-brand img,
.brand-logo {
    width: 48px !important;
    height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    border: 2px solid #fff !important;
    box-shadow: 0 3px 10px rgba(216, 27, 96, 0.2) !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
    transition: transform 0.3s ease;
}

.navbar-light .navbar-brand:hover .brand-logo {
    transform: scale(1.06) rotate(3deg);
}

.footer-logo {
    width: 54px !important;
    height: 54px !important;
    max-width: 54px !important;
    max-height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
}

.navbar-light .navbar-brand .brand-sub {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #7a6e82;
    display: block;
    margin-top: -2px;
}

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

/*** Hero Carousel ***/
.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    height: 680px;
    display: block;
    object-fit: cover;
}

.header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(28, 16, 34, 0.75), rgba(28, 16, 34, 0.65));
}

.header-carousel .carousel-caption-content {
    max-width: 920px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(216, 27, 96, 0.85);
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.header-carousel .owl-nav .owl-prev { left: 25px; }
.header-carousel .owl-nav .owl-next { right: 25px; }

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 550px;
    }
    .header-carousel .owl-nav { display: none; }
}

/*** Single Page Hero Breadcrumb ***/
.bg-breadcrumb {
    position: relative;
    padding: 120px 0 60px 0;
    background: linear-gradient(rgba(28, 16, 34, 0.82), rgba(216, 27, 96, 0.75)), url(../img/breadcrumb.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/*** Counter Facts ***/
.counter-facts {
    background: linear-gradient(rgba(28, 16, 34, 0.9), rgba(28, 16, 34, 0.88)), url(../img/counter-bg.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}

.counter-facts .counter {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 30px 20px;
    transition: 0.3s;
}

.counter-facts .counter:hover {
    transform: translateY(-5px);
    background: rgba(216, 27, 96, 0.15);
    border-color: var(--bs-primary);
}

/*** Service / Package Cards ***/
.package-card {
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0e6ed;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(216, 27, 96, 0.18);
    border-color: var(--bs-primary);
}

.package-card .package-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.package-card .package-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card:hover .package-img-wrapper img {
    transform: scale(1.08);
}

/*** Package Cards (7eventzz / E-commerce App Style) ***/
.package-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0e6ee;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(216, 27, 96, 0.14);
    border-color: rgba(216, 27, 96, 0.3);
}

.package-img-wrapper {
    position: relative;
    overflow: hidden;
    background: #fdf2f6;
    aspect-ratio: 4 / 3;
    width: 100%;
}

.package-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-img-wrapper img {
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ff5722;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.package-badge.badge-trending { background: #ff5722; }
.package-badge.badge-bestseller { background: #d81b60; }
.package-badge.badge-popular { background: #8b5cf6; }
.package-badge.badge-offer { background: #16a34a; }

.package-card .card-body {
    padding: 14px 14px 16px 14px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.35;
    margin-bottom: 6px;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.rating-pill {
    background: #16a34a;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.rating-pill i {
    font-size: 9px;
}

.reviews-count {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

.price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    margin-bottom: 10px;
}

.offer-price {
    color: #0f172a;
    font-size: 18px;
    font-weight: 800;
}

.orig-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 500;
}

.discount-pill {
    color: #16a34a;
    font-size: 12px;
    font-weight: 700;
}

.package-btn {
    width: 100%;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 12px;
    text-align: center;
}

@media (max-width: 767px) {
    .package-card .card-body {
        padding: 8px 8px 10px 8px;
    }
    .package-title {
        font-size: 13px;
        min-height: 34px;
        line-height: 1.3;
        margin-bottom: 4px;
    }
    .rating-row {
        gap: 4px;
        margin-bottom: 4px;
    }
    .rating-pill {
        font-size: 10px;
        padding: 1px 5px;
    }
    .reviews-count {
        font-size: 10px;
    }
    .offer-price {
        font-size: 15px;
    }
    .orig-price {
        font-size: 11px;
    }
    .discount-pill {
        font-size: 11px;
    }
    .package-badge {
        font-size: 9px;
        padding: 2px 6px;
        top: 6px;
        left: 6px;
    }
    .package-btn {
        font-size: 11px;
        padding: 6px 8px;
    }
}

/*** Mobile Bottom Navigation Bar (App Style) ***/
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 1050;
    border-top: 1px solid #f1f5f9;
    padding-bottom: env(safe-area-inset-bottom);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #64748b;
    font-size: 11px;
    font-weight: 500;
    transition: 0.2s;
    flex: 1;
}

.mobile-nav-item i {
    font-size: 18px;
    margin-bottom: 2px;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--bs-primary);
}

.mobile-nav-chat {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -24px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    border: 3px solid #ffffff;
    font-size: 10px;
    font-weight: 700;
}

.mobile-nav-chat i {
    font-size: 22px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    body {
        padding-bottom: 64px;
    }
    .floating-actions {
        display: none !important;
    }
}

/*** Branch Cards ***/
.branch-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #f2e6ee;
    transition: 0.3s;
    height: 100%;
}

.branch-card:hover {
    transform: translateY(-5px);
    border-color: var(--bs-primary);
    box-shadow: 0 14px 35px rgba(216, 27, 96, 0.15);
}

.branch-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fdf2f6;
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

/*** Gallery Grid ***/
.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(28, 16, 34, 0.88), rgba(216, 27, 96, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    color: #ffffff;
    font-size: 17px;
    margin-bottom: 6px;
}

.gallery-overlay p {
    color: #fce4ec;
    font-size: 13px;
    margin-bottom: 12px;
}

/*** Filter Buttons ***/
.gallery-filter-btn {
    border: 1px solid #e0d0da;
    background: #ffffff;
    color: #55445d;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin: 5px;
    transition: 0.3s;
    cursor: pointer;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(216, 27, 96, 0.25);
}

/*** USP Badge Card ***/
.usp-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid #f2e6ee;
    transition: 0.3s;
}

.usp-card:hover {
    transform: translateY(-4px);
    border-color: var(--bs-primary);
    box-shadow: 0 10px 25px rgba(216, 27, 96, 0.12);
}

.usp-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fdf2f6;
    color: var(--bs-primary);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

/*** FAQ Accordion ***/
.accordion-item {
    border: 1px solid #f0e2ec !important;
    border-radius: 12px !important;
    margin-bottom: 14px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    font-size: 16px;
    color: var(--bs-dark) !important;
    background-color: #ffffff !important;
    padding: 18px 22px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--bs-primary) !important;
    background-color: #fdf2f6 !important;
}

.accordion-body {
    padding: 20px 22px;
    color: #55445d;
    line-height: 1.7;
}

/*** Footer ***/
.footer {
    background: #140b19;
    color: #d1c8d6;
    border-top: 4px solid var(--bs-primary);
}

.footer h4 {
    color: #ffffff;
    font-size: 20px;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.footer h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--bs-secondary);
}

.footer-link {
    color: #d1c8d6;
    transition: 0.3s;
    display: inline-block;
    margin-bottom: 10px;
    text-decoration: none;
    font-size: 15px;
}

.footer-link:hover {
    color: var(--bs-primary);
    transform: translateX(5px);
}

.copyright {
    background: #0d0610;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}