/* The8Beat Luxury Brand Design System */
.addresss,
.g-map,
.email2 {
    display: none !important
}

.fa {
    font-family: FontAwesome;
}

:root {
    --primary-bg: #000000;
    --accent-gold: #D4AF37;
    --accent-gold-hover: #AA800B;
    --text-white: #FFFFFF;
    --text-light: #F5F5F5;
    --text-muted: rgba(255, 255, 255, 0.5);
    --border-gold: rgba(212, 175, 55, 0.15);
    --border-white: rgba(255, 255, 255, 0.05);
    --card-bg-glass: rgba(18, 18, 18, 0.6);
}

body {
    background-color: var(--primary-bg);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.font-playfair,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Edo', sans-serif !important;
    letter-spacing: 1px;
}

/* Custom Selection */
::selection {
    background-color: var(--accent-gold);
    color: #000000;
}

/* Divider Gold */
.divider-gold {
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 15px 0;
}

/* Luxury buttons */
.btn-gold {
    background-color: var(--accent-gold);
    color: #000000;
    border: 1px solid var(--accent-gold);
    border-radius: 0;
    font-weight: 600;
    transition: all 0.4s ease;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-grey {
    background-color: #ddd;
    color: #000000;
    border: 1px solid #ddd;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.4s ease;
}

.btn-grey:hover {
    background-color: transparent;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.15);
    border-radius: 0;
    transition: all 0.4s ease;
}

.btn-outline-light:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #000000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Navbar */
.luxury-navbar-wrapper .navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.luxury-navbar-wrapper .navbar-nav .nav-link:hover {
    color: var(--accent-gold) !important;
}

/* Floating WhatsApp bubble */
.whatsapp-float {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 40px;
    left: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 25px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(37, 211, 102, 0.5);
    color: #FFF;
}

.call-float {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 90px;
    left: 20px;
    background-color: #ddd;
    color: #000;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(212, 175, 55, 0.5);
    color: #000;
}

/* Swiper Dots customization */
.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--accent-gold) !important;
    width: 20px !important;
    border-radius: 5px !important;
}

/* Glassmorphism card default styles */
.glass-card {
    background: var(--card-bg-glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
}

/* CMS Rich Text block styling */
.long-desc-block {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.8;
}

.long-desc-block h1,
.long-desc-block h2,
.long-desc-block h3,
.long-desc-block h4,
.long-desc-block h5,
.long-desc-block h6 {
    color: var(--text-white);
    font-family: 'Playfair Display', serif;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
}

.long-desc-block h1 {
    font-size: 2.2rem;
}

.long-desc-block h2 {
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.long-desc-block h3 {
    font-size: 1.5rem;
}

.long-desc-block p {
    margin-bottom: 1.25rem;
}

.long-desc-block ul,
.long-desc-block ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.long-desc-block li {
    margin-bottom: 0.5rem;
}

.navbar-brand img {
    width: 130px;
}

#section-gallery .btn {
    border-color: #D4AF37 !important;
    color: #D4AF37 !important;
}

#section-gallery .btn:hover {
    border-color: #D4AF37 !important;
    color: #000 !important;
}

#section-gallery .btn.active {
    background-color: #D4AF37 !important;
    border-color: #D4AF37 !important;
    color: #000000 !important;
}

.gallery_pages .btn {
    border-color: #D4AF37 !important;
    color: #D4AF37 !important;
}

.gallery_pages .btn:hover {
    border-color: #D4AF37 !important;
    color: #000 !important;
}

.gallery_pages .btn.active {
    background-color: #D4AF37 !important;
    border-color: #D4AF37 !important;
    color: #000000 !important;
}

.btn.btn-gold:hover {
    color: #FFFFFF !important
}

.service-icon-box {
    display: none !important
}

.ul-color li {
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 1.1em !important;
    margin-bottom: 0;
}

@media (min-width: 1200px) {
    .display-3 {
        font-size: 2.5rem !important;
    }
}

/* =========================================
   Mobile-First App Layout Overrides
========================================= */

@media (max-width: 991.98px) {
    .navbar-brand {
        text-align: center;
        margin: auto;
    }

    .navbar-brand img {
        width: 60px;
    }

    /* 1. Body Padding for fixed bottom nav */
    body {
        padding-bottom: 70px !important;
        /* Space for bottom tab bar */
    }

    /* 2. Fluid Typography */
    h1,
    .h1 {
        font-size: calc(1.75rem + 1vw) !important;
    }

    h2,
    .h2 {
        font-size: calc(1.5rem + 1vw) !important;
    }

    h3,
    .h3 {
        font-size: calc(1.3rem + .6vw) !important;
    }

    .display-3 {
        font-size: calc(1.5rem + 1.2vw) !important;
    }

    .display-4 {
        font-size: calc(2rem + 1vw) !important;
    }

    /* 3. Section Padding (Reduce massive desktop gaps) */
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    /* 4. Touch Targets (Min 48x48px) */
    .btn,
    .dropdown-item,
    .form-control,
    .form-select,
    .bottom-nav-item {
        min-height: 48px;
    }

    .bottom-nav-item {
        min-width: 48px;
        color: rgba(255, 255, 255, 0.5);
        transition: color 0.3s ease;
    }

    .bottom-nav-item:hover,
    .bottom-nav-item:active {
        color: #D4AF37 !important;
        /* Gold */
    }

    .bottom-nav-item.active {
        color: #D4AF37 !important;
    }

    /* Active Indicator Dot */
    .active-dot {
        width: 4px;
        height: 4px;
        background-color: #D4AF37;
        border-radius: 50%;
        margin-top: 2px;
        opacity: 0;
        transform: scale(0);
        transition: all 0.3s ease;
    }

    .bottom-nav-item.active .active-dot {
        opacity: 1;
        transform: scale(1);
    }

    /* Ensure no horizontal scroll */
    .container,
    .container-fluid,
    .row {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Hiding Smart Header Transition */
    .luxury-navbar-wrapper {
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    }

    .header-hidden {
        transform: translateY(-100%);
    }

    .offcanvas-body .fa::before {
        font-family: Fontawesome !important;
    }

    .mobile-bottom-nav {
        z-index: 9;
    }

    .luxury-navbar-wrapper {
        top: 0 !important;
    }

    .display-3 {
        font-size: 1.5em !important;
    }

    #hero-slider p.lead {
        font-size: 0.9em !important;
    }

    .whatsapp-float {
        bottom: 70px;
        width: 30px;
        height: 30px;
        left: 10px;
    }

    .call-float {
        bottom: 110px;
        width: 30px;
        height: 30px;
        left: 10px
    }

    .inquiry-float .l-circle {
        width: 50px !important;
        height: 50px !important;
    }

    .wlco p {
        line-height: 1.5;
        font-size: 1.1em !important;
    }

    .fea h2 {
        font-size: 1.6em !important;
    }

    .fea h4 {
        font-size: 1.1em;
    }

    .abou h2 {
        font-size: 1.6em !important;
    }

    blockquote .fs-5 {
        font-size: 0.8em !important;
    }

    .why-c h2 {
        font-size: 1.6em !important;
    }

    .exe h2 {
        font-size: 1.6em !important;
    }

    .galle h2 {
        font-size: 1.6em !important;
    }

    .btn,
    .dropdown-item,
    .form-control,
    .form-select,
    .bottom-nav-item {
        min-height: auto;
    }

    .btn.px-4 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .testi h2 {
        font-size: 1.6em !important;
    }

    .testi p {
        line-height: 1.5 !important;
        font-size: 0.9em !important;
    }

    .abt-sec h2,
    .inst h2,
    .meet-team h2,
    .what-w h2 {
        font-size: 1.6em !important;
    }

    .homepage-section h2 {
        font-size: 1.6em !important;
    }

    .homepage-section p {
        font-size: 1em !important;
    }

    footer {
        display: none;
    }

    .bnner,
    .s-details {
        min-height: 300px !important;
    }

    .abt-sec p {
        line-height: 1.5;
        font-size: 0.8em !important;
    }

    .display-4 {
        font-size: 1.6em !important;
    }
}