/* Mobile Navbar Hide - Hide only navigation links, keep navbar branding */
@media (max-width: 768px) {
    /* Hide only the desktop navigation links on mobile */
    .test-links {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Hide all desktop nav links specifically */
    .test-link {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Hide dropdown containers on mobile */
    .dropdown-container {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Ensure navbar, logo, and hamburger menu are visible on mobile */
    .test-navbar,
    .test-navbar .test-container,
    .test-logo,
    .test-logo img,
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Position hamburger menu properly */
    .mobile-menu-toggle {
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 1001 !important;
    }
    
    /* Ensure hamburger lines are visible */
    .hamburger-line {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background-color: #E63946 !important;
        width: 25px !important;
        height: 3px !important;
    }
    
    /* Adjust body for fixed navbar */
    body {
        padding-top: 60px !important;
    }
    
    /* Adjust content spacing for fixed navbar */
    main, section, .main-content {
        margin-top: 20px !important;
    }
}

/* Show desktop navigation on desktop */
@media (min-width: 769px) {
    #guaranteed-hamburger,
    #guaranteed-menu {
        display: none !important;
    }
}