/* Mobile Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 24px;
    height: 2px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    header .container {
        padding: 16px 24px;
        flex-direction: row !important;
        width: 100%;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--light-color);
        transition: 0.5s;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 0 !important;
        z-index: 1000;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }
    
    nav ul li {
        margin: 16px 0 !important;
        width: 100%;
    }
    
    nav ul li a {
        font-size: 1.2rem;
        display: inline-block;
        width: auto;
    }
    
    nav ul li.language-switcher {
        margin: 24px 0 !important;
    }
    
    .current-lang {
        background-color: var(--secondary-color, #f0f0f0);
        padding: 12px 20px;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 500;
    }
    
    /* Language Switcher Mobile Styles */
    .language-switcher {
        position: relative;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .language-dropdown {
        position: relative !important;
        top: 0 !important;
        display: none;
        flex-direction: column;
        margin-top: 10px !important;
        width: 100%;
        background-color: var(--light-bg-color, #f8f9fa);
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .language-switcher.active .language-dropdown {
        display: flex !important;
    }
    
    /* Additional mobile styles for responsiveness */
    .feature, .why-card, .step {
        margin-bottom: 20px;
        width: 100%;
    }
    
    .step {
        flex-basis: 100%;
    }
    
    .hero-content h2 {
        font-size: 1.8rem !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
    }
    
    .testimonial {
        margin: 0 10px;
        width: calc(100% - 20px);
    }
}

@media (max-width: 576px) {
    header .container {
        padding: 12px 16px;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .hamburger .line {
        width: 20px;
    }
}
