/* ===== MOBILE MENU FIX ===== */
@media (max-width: 1023px) {
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
        background: none;
        border: none;
    }
    
    .nav-toggle .bar {
        width: 24px;
        height: 3px;
        background-color: var(--text-color);
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-white);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding: 16px;
    }
    
    .nav-link {
        display: block;
        padding: 12px 24px;
        font-size: 18px;
        border-radius: 8px;
        background: var(--bg-gray);
        text-align: center;
        min-width: 200px;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        background: var(--primary-color);
        color: var(--bg-white);
    }
}

@media (max-width: 767px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1002;
        background: var(--bg-white);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .main {
        margin-top: 70px;
    }
    
    .hero {
        margin-top: 0;
        padding-top: 48px;
    }
}

