/* Mobile Navigation Styles - Fresh Start */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        background: white;
        border-top: 1px solid #eee;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    /* Mobile dropdown styling */
    .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        box-shadow: none !important;
        border: 0 !important;
        background-color: #f8f9fa !important;
        margin-top: 0 !important;
    }
    
    /* Dropdown arrow styling */
    .dropdown-toggle::after {
        display: inline-block !important;
        margin-left: 0.255em !important;
        vertical-align: 0.255em !important;
        content: "" !important;
        border-top: 0.3em solid !important;
        border-right: 0.3em solid transparent !important;
        border-bottom: 0 !important;
        border-left: 0.3em solid transparent !important;
        transition: transform 0.2s ease;
    }
    
    /* Arrow rotation when open */
    .dropdown.show .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}
