@media (max-width: 991px) {

    /* Luxury Mobile Menu */
    .header-nav .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1050;
        width: 100%;
        height: 100vh;
        background: rgba(15, 36, 99, 0.98);
        /* Semi-transparent navy */
        backdrop-filter: blur(10px);
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        padding: 2rem;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-right: 1px solid rgba(212, 175, 55, 0.2);
        /* Gold accent */
    }

    .header-nav .navbar-collapse.show {
        transform: translateX(0);
        box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.5);
    }

    .header-nav .navbar-collapse ul {
        width: 100%;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .navbar-nav .nav-link {
        color: #fff;
        font-size: 1.25rem;
        padding: 0.75rem 1.5rem;
        margin: 0.5rem 0;
        position: relative;
        transition: all 0.3s ease;
        background: transparent;
    }

    .navbar-nav .nav-link:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--falcon-secondary);
        /* Gold underline */
        transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--falcon-secondary);
    }

    .navbar-nav .nav-link:hover:before,
    .navbar-nav .nav-link.active:before {
        width: 40px;
    }

    .navbar-toggle-icon {
        width: 1rem;
    }

    .navbar-toggle-icon .toggle-line,
    .navbar-toggle-icon:after,
    .navbar-toggle-icon:before {
        background: #fff !important;
    }

    .bn_heading {
        font-size: 34px;
    }

    .filter-section {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        width: 100%;
        height: 100vh;
        background: white;
        overflow-y: auto;
        transform: translateY(100%);
        transition: transform 0.5s ease;
    }

    .filter-section.active {
        transform: translateY(0%);
    }

    .hero-banner::after {
        content: none;
    }
}


@media (max-width: 768px) {
    .hero-banner {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}


@media (max-width: 575px) {
    .header {
        background: #fff !important;
        top: 0px !important;
    }

    .header nav {
        box-shadow: none !important;
    }

    .header_btn img {
        width: 25px;
    }

    .header_btn {
        padding: 5px 5px !important;
        font-size: 14px;
    }

    .payment_icons img {
        height: 25px;
    }

    .navbar-brand img {
        width: 50px;
    }

    .toast {
        max-width: 100% !important;
    }

    .cta-sec .avatar-5xl {
        height: auto;
        width: 100%;
    }
}