.mobile-menu-btn {
    transition: transform 0.3s ease;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--main);
    padding: 8px;
    border-radius: 8px;
}

.mobile-menu-btn:hover {
    background: rgba(168, 69, 59, 0.1);
}

.mobile-menu-btn.active {
    transform: rotate(90deg);
    background: rgba(168, 69, 59, 0.15);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-links.mobile-open {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 20px;
        gap: 16px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        border-bottom: 1px solid var(--light-gray);
        z-index: 999;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-links.mobile-open a {
        padding: 12px 16px;
        border-radius: 12px;
        transition: background 0.2s;
    }
    
    .nav-links.mobile-open a:hover {
        background: rgba(168, 69, 59, 0.08);
    }
    
    .nav-links.mobile-open .nav-cta {
        margin-top: 8px;
        text-align: center;
        justify-content: center;
    }
}