/********** Template CSS - Decor Wale **********/
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@400;500;600;700&display=swap');

:root {
    --primary: #E60067;
    --primary-dark: #C40055;
    --purple: #5E1C99;
    --purple-dark: #4A154B;
    --secondary: #00C2CB;
    --secondary-dark: #009AA2;
    --gold: #FFB300;
    --gold-light: #FEF08A;
    --light: #F8F9FA;
    --dark: #1A0B2E;
    --brand-gradient: linear-gradient(135deg, #5E1C99 0%, #E60067 50%, #00C2CB 100%);
    --gold-gradient: linear-gradient(135deg, #FFB300 0%, #F59E0B 100%);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(230, 0, 103, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(94, 28, 153, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

p,h6,h1,h3,a,h2,h5,h4,b,span {
    font-family: "Outfit", "Kanit", sans-serif !important;
}

.fw-medium {
    font-weight: 600 !important;
}

/* Text and Background Utility Classes */
.text-primary {
    color: var(--primary) !important;
}
.text-secondary {
    color: var(--secondary) !important;
}
.text-gold {
    color: var(--gold) !important;
}
.bg-primary {
    background-color: var(--primary) !important;
}
.bg-secondary {
    background-color: var(--secondary) !important;
}
.bg-gold {
    background-color: var(--gold) !important;
}
.border-primary {
    border-color: var(--primary) !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 25px;
    bottom: 175px;
    z-index: 99;
    background-color: var(--dark);
    color: #fff;
    border: 2px solid var(--primary);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.float-btn {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 25px;
    z-index: 999;
    border-radius: 50px !important;
    width: 52px;
    height: 52px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.float-btn-call {
    bottom: 35px;
    background-color: var(--primary);
    color: #ffffff !important;
}
.float-btn-whatsapp {
    bottom: 95px;
    background-color: #25D366;
    color: #ffffff !important;
}

/* Floating animation */
@keyframes pulse-ring {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.float-btn-whatsapp {
    animation: pulse-ring 2.5s infinite;
}

/*** Spinner ***/
#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;
}

/*** Button ***/
.btn {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(255, 51, 119, 0.35);
}

.btn.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 51, 119, 0.45);
}

.btn.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(0, 194, 203, 0.35);
}

.btn.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 194, 203, 0.45);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-lg-square {
    width: 52px;
    height: 52px;
    border-radius: 50px !important;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px !important;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 20px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 12px 15px;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
        padding: 10px 0;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: auto;
    border-radius: 50px;
}

.navbar-light.sticky-top {
    top: 0px !important;
    transition: all .3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        padding: 10px 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .3s;
        opacity: 1;
    }

    .dropdown-item {
        padding: 10px 20px;
        font-weight: 500;
        transition: all 0.2s ease;
    }
    .dropdown-item:hover {
        background-color: rgba(255, 51, 119, 0.08);
        color: var(--primary);
        padding-left: 25px;
    }
}

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.75) 100%);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2.8rem;
    height: 2.8rem;
    background-color: rgba(255, 51, 119, 0.8);
    border-radius: 50%;
    background-size: 50%;
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
}

.page-header-inner {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.92) 0%, rgba(94, 28, 153, 0.88) 50%, rgba(230, 0, 103, 0.85) 100%);
    padding: 80px 0 !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

/*** Facts ***/
.fact {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url(../img/carousel-bg-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*** Service ***/
.service .nav .nav-link {
    background: var(--light);
    border-radius: 10px;
    transition: .5s;
}

.service .nav .nav-link.active {
    background: var(--primary);
}

.service .nav .nav-link.active h4 {
    color: #FFFFFF !important;
}

/*** Booking ***/
.booking {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url(../img/carousel-bg-2.html) center center no-repeat;
    background-size: cover;
}

/*** Team ***/
.team-item {
    background-color: #FFFFFF !important;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.team-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-item .team-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 51, 119, 0.9);
    transform: scale(0);
    transition: .4s;
}

.team-item:hover .team-overlay {
    transform: scale(1);
}

.team-item .team-overlay .btn {
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 50px;
}

.team-item .team-overlay .btn:hover {
    color: #FFFFFF;
    background: var(--dark);
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
    border-radius: 16px;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 14px;
    height: 14px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    transition: .3s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 10px;
}

/*** Footer ***/
.footer {
    background: linear-gradient(rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.95)), url(../img/birthday.jpg) center center no-repeat;
    background-size: cover;
    color: #e2e8f0;
}

.footer .btn.btn-social {
    margin-right: 8px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: .3s;
    background: rgba(255, 255, 255, 0.05);
}

.footer .btn.btn-social:hover {
    color: #ffffff;
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 8px;
    padding: 0;
    text-align: left;
    color: #cbd5e1;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: var(--secondary);
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    padding-left: 5px;
    letter-spacing: 0.5px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright a {
    color: var(--secondary);
    text-decoration: none;
}

.product-image {
    width: 100%; 
    height: 278px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.home-cards {
    height: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.06);
    background: #ffffff;
    overflow: hidden;
}

.home-cards:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.product-btn {
    border-radius: 50px;
    background-color: var(--primary);
    border: none;
    color: #fff;
    font-weight: 600;
}

.product-btn:hover {
    background-color: var(--primary-dark);
    color: #fff;
}

@media (max-width: 500px) {
    .product-image {
        width: 100%; 
        height: 180px;
        object-fit: cover;
    }

    .product-title {
        font-size: 13px;
        font-weight: 600 !important;
    }

    .product-btn {
        font-size: 11px !important;
        margin-top: 8px !important;
        margin-bottom: 5px !important;
        border-radius: 50px;
        padding: 6px 12px !important;
    }

    .product-details {
        padding: 10px !important;
    }

    /* Category Card Styling */
    .category-card {
        transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    }
    .category-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(255, 51, 119, 0.18) !important;
        border-color: rgba(255, 51, 119, 0.3) !important;
    }
    .category-card:hover img {
        transform: scale(1.08);
    }
}

@media (max-width: 400px) {
    .product-image {
        width: 100%; 
        height: 155px;
        object-fit: cover;
    }
}

/* ==========================================================================
   Modern Header & Hero Section - Decor Wale
   ========================================================================== */
.topbar-wrapper {
    background: linear-gradient(90deg, #1A0B2E 0%, #31103F 50%, #1A0B2E 100%);
    border-bottom: 1px solid rgba(230, 0, 103, 0.2);
    color: #cbd5e1;
    font-size: 13.5px;
}

.topbar-badge {
    background: rgba(230, 0, 103, 0.2);
    border: 1px solid rgba(230, 0, 103, 0.4);
    color: #ff85c0;
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.navbar-brand-logo {
    max-height: 68px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-brand-logo {
    transform: scale(1.03);
}

.btn-brand-primary {
    background: linear-gradient(135deg, #E60067 0%, #5E1C99 100%);
    color: #ffffff !important;
    border: none;
    box-shadow: 0 6px 20px rgba(230, 0, 103, 0.35);
    transition: all 0.3s ease;
    border-radius: 50px;
    font-weight: 700;
}

.btn-brand-primary:hover {
    background: linear-gradient(135deg, #C40055 0%, #4A154B 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 0, 103, 0.5);
}

.btn-whatsapp-hero {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff !important;
    border: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    font-weight: 700;
    border-radius: 50px;
}

.btn-whatsapp-hero:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #0e7065 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.btn-hero-call {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-radius: 50px;
    font-weight: 600;
}

.btn-hero-call:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: #ffffff !important;
}

/* Luxury Hero Section */
.hero-section-wrapper {
    background: linear-gradient(135deg, #1A0B2E 0%, #2D0A40 40%, #5E1C99 75%, #1A0B2E 100%);
    position: relative;
    border-radius: 0 0 40px 40px;
    padding: 70px 0 85px 0;
    overflow: hidden;
}

.hero-section-wrapper::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(230,0,103,0.3) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section-wrapper::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,194,203,0.3) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-live-dot {
    width: 10px;
    height: 10px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 10px #22c55e;
    animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title-main {
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.text-brand-gradient {
    background: linear-gradient(135deg, #FF6596 0%, #FFB300 50%, #00C2CB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-description {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 620px;
}

.hero-feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.feature-chip-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #f1f5f9;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-chip-item i {
    color: #FFB300;
}

/* Glass Showcase Card Slider */
.hero-carousel-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
}

.hero-carousel-img {
    height: 480px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-carousel-card:hover .hero-carousel-img {
    transform: scale(1.03);
}

.hero-card-floating-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(26, 11, 46, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 20px;
    border-radius: 16px;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #1A0B2E;
    margin-left: -12px;
    object-fit: cover;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

@media (max-width: 991.98px) {
    .hero-title-main {
        font-size: 2.2rem;
    }
    .hero-section-wrapper {
        padding: 40px 0 60px 0;
        border-radius: 0 0 25px 25px;
    }
    .hero-carousel-img {
        height: 350px;
    }
}

/* ==========================================================================
   Premium Testimonials, Location Cards & Footer - Decor Wale
   ========================================================================== */
.testimonial-card-modern {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(230, 0, 103, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    height: 100%;
}

.testimonial-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(230, 0, 103, 0.15);
    border-color: rgba(230, 0, 103, 0.3);
}

.testimonial-quote-icon {
    font-size: 2.2rem;
    color: rgba(230, 0, 103, 0.2);
    position: absolute;
    top: 20px;
    right: 25px;
}

.verified-badge {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.25);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
}

/* Location Badge Card */
.location-card-pill {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    color: #1e293b;
}

.location-card-pill:hover {
    background: linear-gradient(135deg, #1A0B2E 0%, #31103F 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(94, 28, 153, 0.2);
}

.location-card-pill:hover i {
    color: #E60067 !important;
}

/* Upgraded Footer */
.footer-dark-luxury {
    background: linear-gradient(180deg, #1A0B2E 0%, #0D0517 100%);
    border-top: 2px solid rgba(230, 0, 103, 0.3);
    color: #cbd5e1;
}

.footer-dark-luxury a {
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.footer-dark-luxury a:hover {
    color: #E60067 !important;
}

/* ==========================================================================
   Mobile-First Optimization & Touch Experience (Decor Wale)
   ========================================================================== */

/* Mobile Top Announcement Banner */
.mobile-top-banner {
    background: linear-gradient(90deg, var(--primary) 0%, var(--purple) 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    text-align: center;
}

/* Mobile Bottom Floating Action Bar */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(26, 11, 46, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(230, 0, 103, 0.3);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-bottom-bar .btn-mobile-call {
    flex: 1;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 14px;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
}

.mobile-bottom-bar .btn-mobile-wa {
    flex: 1.3;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border-radius: 50px;
    padding: 10px 14px;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

@media (max-width: 991.98px) {
    /* Navbar Mobile Dropdown Fix - Push down content instead of floating over */
    .navbar .nav-item .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin-top: 10px !important;
        background-color: #f8fafc !important;
        border: 1px solid rgba(230, 0, 103, 0.15) !important;
        border-radius: 12px !important;
        box-shadow: none !important;
        transform: none !important;
        padding: 8px 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .navbar-brand-logo {
        max-height: 48px !important;
        width: auto !important;
    }
    
    .navbar-toggler {
        padding: 6px 10px;
        background: rgba(230, 0, 103, 0.08);
        border-radius: 8px;
    }

    .navbar-collapse {
        background: #ffffff;
        border-radius: 16px;
        padding: 15px;
        margin-top: 10px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

    .dropdown-item {
        padding: 10px 16px !important;
        font-size: 14px !important;
        color: #334155 !important;
    }
    .dropdown-item:hover, .dropdown-item:active {
        background-color: rgba(230, 0, 103, 0.1) !important;
        color: var(--primary) !important;
    }

    /* Hero Section Mobile */
    .hero-section-wrapper {
        padding: 25px 0 40px 0 !important;
        border-radius: 0 0 20px 20px;
    }

    .hero-badge-pill {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 15px;
    }

    .hero-title-main {
        font-size: 1.85rem !important;
        line-height: 1.25 !important;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .hero-feature-chips {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 24px;
    }

    .feature-chip-item {
        font-size: 11.5px;
        padding: 8px 10px;
        justify-content: center;
    }

    .btn-whatsapp-hero, .btn-hero-call {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-carousel-img {
        height: 280px !important;
    }

    .hero-card-floating-badge {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 12px;
    }

    .hero-trust-bar {
        margin-top: 20px;
        padding-top: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .float-btn {
        right: 16px !important;
        width: 48px !important;
        height: 48px !important;
        font-size: 20px !important;
        z-index: 1040 !important;
    }

    .float-btn-call {
        bottom: 20px !important;
    }
    
    .float-btn-whatsapp {
        bottom: 78px !important;
    }
    
    .back-to-top {
        bottom: 136px !important;
        right: 16px !important;
        width: 42px !important;
        height: 42px !important;
        font-size: 16px !important;
        z-index: 1030 !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    }

    /* Category Cards Mobile Layout */
    .category-card {
        display: flex;
        flex-direction: column;
        height: 100%;
        border-radius: 16px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    }

    .category-card .position-relative {
        height: 160px !important;
        flex-shrink: 0;
    }

    .category-card img {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    .category-card .p-3, .category-card .p-md-4 {
        padding: 12px 10px !important;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        justify-content: space-between;
    }

    .category-card h4 {
        font-size: 0.92rem !important;
        line-height: 1.3 !important;
        font-weight: 700 !important;
        margin-bottom: 6px !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 2.4rem;
    }

    .category-card .badge {
        font-size: 10px !important;
        padding: 4px 8px !important;
        margin: 8px !important;
    }

    /* Subpages Product Card Mobile Styling */
    .card.shadow-sm, .product-card {
        border-radius: 16px !important;
        display: flex;
        flex-direction: column;
        height: 100%;
        margin-bottom: 0 !important;
    }

    .card.shadow-sm img, .product-card img {
        height: 170px !important;
        object-fit: cover !important;
        border-radius: 16px 16px 0 0 !important;
    }

    .card.shadow-sm .card-body, .product-card-body {
        padding: 12px 10px !important;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        justify-content: space-between;
    }

    .card.shadow-sm .card-title, .product-title {
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
        min-height: 2.3rem;
    }

    /* Testimonials Mobile UI */
    .testimonial-card-modern {
        padding: 18px 14px !important;
        border-radius: 16px !important;
    }

    .testimonial-quote-icon {
        font-size: 1.4rem !important;
        top: 12px !important;
        right: 14px !important;
    }

    .testimonial-card-modern p {
        font-size: 0.88rem !important;
        line-height: 1.45 !important;
    }
}

/* Modern Feature & Product Cards Styles */
.fs-7 { font-size: 0.85rem !important; }
.fs-8 { font-size: 0.75rem !important; }

.bg-primary-subtle { background-color: rgba(230, 0, 103, 0.1) !important; }
.bg-warning-subtle { background-color: rgba(255, 193, 7, 0.15) !important; }
.bg-danger-subtle { background-color: rgba(220, 53, 69, 0.1) !important; }
.bg-success-subtle { background-color: rgba(25, 135, 84, 0.1) !important; }

.feature-card-modern {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.feature-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(230, 0, 103, 0.12) !important;
    border-color: rgba(230, 0, 103, 0.2) !important;
}

.product-card-modern {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 20px !important;
}

.product-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12) !important;
}

.product-card-modern .product-img-main {
    transition: transform 0.5s ease;
}

.product-card-modern:hover .product-img-main {
    transform: scale(1.06);
}

.product-title-modern {
    color: #212529;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.35;
}

/* Sticky Header Rules */
.sticky-top {
    position: sticky !important;
    top: 0 !important;
    z-index: 1030 !important;
    background-color: #ffffff !important;
}

/* App Style Category Cards */
.category-card-app {
    border-radius: 20px !important;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease;
    background: #ffffff;
}

.category-card-app:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(230, 0, 103, 0.2) !important;
}

.category-card-app .category-card-img-wrap {
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
}

.category-card-app .category-card-img {
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card-app:hover .category-card-img {
    transform: scale(1.08);
}

.category-card-app .category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.88) 100%);
    pointer-events: none;
}

.category-card-app .category-card-title {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
    letter-spacing: -0.2px;
}

.category-action-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.category-card-app:hover .category-action-circle {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.15);
}

.product-title-modern {
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center !important;
    margin-bottom: 0.75rem !important;
}

@media (max-width: 767.98px) {
    .container-xxl.py-5, .container-fluid.py-5 {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }

    .container-xxl.py-3, .container-fluid.py-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .container, .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .row {
        margin-left: -6px !important;
        margin-right: -6px !important;
    }

    .row > [class*="col-"] {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    /* Category Cards Mobile Styling */
    .category-card-app {
        border-radius: 16px !important;
    }

    .category-card-app .category-card-img-wrap {
        height: 175px !important;
        border-radius: 16px !important;
    }

    .category-card-app .category-card-title {
        font-size: 0.85rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0 !important;
    }

    .category-card-app .category-card-content {
        padding: 10px 8px !important;
    }

    .category-action-circle {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.7rem !important;
    }

    /* Feature Highlights Mobile Styles */
    .feature-card-modern {
        padding: 10px 8px !important;
        border-radius: 14px !important;
    }

    .feature-icon-box {
        width: 34px !important;
        height: 34px !important;
        margin-right: 8px !important;
    }

    .feature-icon-box i {
        font-size: 0.88rem !important;
    }

    .feature-card-modern h6 {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0 !important;
    }

    /* Product Cards Mobile Styling */
    .product-card-modern {
        border-radius: 16px !important;
    }

    .product-card-modern .product-image-container {
        height: 160px !important;
    }

    .product-title-modern {
        font-size: 0.82rem !important;
        margin-bottom: 8px !important;
        text-align: center !important;
        font-weight: 700 !important;
        white-space: normal !important;
    }

    .product-card-modern .p-3, .product-card-modern .p-2 {
        padding: 10px 8px !important;
    }

    .product-card-modern .btn {
        font-size: 0.75rem !important;
        padding: 6px 4px !important;
        white-space: nowrap !important;
    }

    /* Floating Action Buttons Mobile Adjustments */
    .float-btn {
        right: 12px !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 1rem !important;
    }

    .float-btn-call {
        bottom: 20px !important;
    }

    .float-btn-whatsapp {
        bottom: 72px !important;
    }

    .back-to-top {
        right: 12px !important;
        bottom: 124px !important;
        width: 38px !important;
        height: 38px !important;
        font-size: 0.85rem !important;
    }
}