/* ===== NEW MOBILE-ONLY NAVIGATION ===== */

/* Hide on desktop - only show on mobile */
@media (min-width: 769px) {
    .mobile-nav-overlay,
    .mobile-nav-trigger {
        display: none !important;
    }
}

/* Show only on mobile */
@media (max-width: 768px) {
    /* Mobile nav trigger (hamburger) */
    .mobile-nav-trigger {
        position: fixed;
        top: 20px;
        right: 20px;
        width: 30px;
        height: 25px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 1001;
        background: rgba(255,255,255,0.9);
        padding: 5px;
        border-radius: 4px;
    }
    
    .mobile-nav-trigger span {
        display: block;
        height: 3px;
        width: 100%;
        background: #333;
        transition: all 0.3s ease;
    }
    
    /* Mobile nav overlay */
    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.98);
        z-index: 1000;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .mobile-nav-overlay.active {
        display: flex;
    }
    
    .mobile-nav-container {
        text-align: center;
        padding: 20px;
        width: 100%;
        max-width: 300px;
    }
    
    /* Mobile logo */
    .mobile-nav-logo img {
        max-width: 150px;
        margin-bottom: 30px;
    }
    
    /* Mobile menu */
    .mobile-nav-menu {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .mobile-nav-link {
        font-size: 1.2rem;
        color: #333;
        text-decoration: none;
        padding: 10px;
        transition: color 0.3s ease;
    }
    
    .mobile-nav-link:hover {
        color: #f97316;
    }
    
    /* Mobile contact */
    .mobile-contact-info {
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    
    .mobile-phone {
        display: inline-block;
        background: #f97316;
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        margin-bottom: 10px;
    }
    
    /* Close button */
    .mobile-nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #333;
    }
}