/* Hamburger Menu Fix - Show All 3 Lines */
.mobile-menu-toggle {
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    padding: 10px;
    width: 30px;
    height: 24px;
    position: relative;
    display: none;
}

.mobile-menu-toggle span {
    display: block !important;
    width: 25px;
    height: 2px;
    background-color: #ffffff !important;
    margin: 5px 0;
    transition: 0.3s;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure all 3 spans are visible */
.mobile-menu-toggle span:nth-child(1),
.mobile-menu-toggle span:nth-child(2),
.mobile-menu-toggle span:nth-child(3) {
    display: block !important;
    visibility: visible !important;
}

/* Show hamburger on mobile only */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block !important;
    }
    
    /* Show company name on tablets and larger phones */
    .nav-logo-text {
        display: inline-block !important;
        font-size: 1rem;
        margin-left: 10px;
    }
    
    /* Hide company name only on very small screens under 380px */
    @media (max-width: 380px) {
        .nav-logo-text {
            font-size: 0.85rem;
        }
    }
    
    /* Hide only on tiny screens under 320px */
    @media (max-width: 320px) {
        .nav-logo-text {
            display: none !important;
        }
    }
}
