/* Mobile Bottom Navigation */
@media (max-width: 991px) {
    .main-page-wrapper {
        padding-bottom: 70px; /* Prevent content from being hidden behind nav */
    }

    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 9999;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 10px 0;
        height: 70px;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }

    .mobile-bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #666;
        font-size: 12px;
        flex: 1;
    }

    .mobile-bottom-nav .nav-item i {
        font-size: 24px;
        margin-bottom: 2px;
        transition: color 0.3s;
    }

    .mobile-bottom-nav .nav-item.active {
        color: #198754; /* Success color used in template */
        font-weight: 500;
    }
    
    .mobile-bottom-nav .nav-item.active i {
        color: #198754;
    }

    /* Hide "Get Free Consultation" button on mobile as it takes too much space in header */
    .right-widget {
        display: none !important;
    }
    
    /* Adjust map height for mobile */
    .map-banner-one {
        height: 300px;
    }
}

@media (min-width: 992px) {
    .mobile-bottom-nav {
        display: none;
    }
}
