
/* Mobile Dropdown Fix */
@media (max-width: 991px) {
    .new-nav-links .custom-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        padding: 10px 0 10px 15px;
        border-left: 2px solid #c08b47;
        margin-top: 10px;
        display: none; /* Controlled by JS on mobile */
    }
    
    .new-nav-links .has-dropdown.mobile-expanded .custom-dropdown {
        display: flex;
    }
    
    .new-nav-links .custom-dropdown a {
        color: #1e3a5f !important;
        padding: 8px 10px;
        font-size: 13px !important;
        font-weight: 500;
    }
    
    .new-nav-links .custom-dropdown a:hover {
        color: #c08b47 !important;
        background: transparent !important;
    }
    
    .new-nav-links .has-dropdown > a > i {
        padding: 5px 10px;
        margin-right: -10px;
        cursor: pointer;
    }
}
