/* English Version Styles - LTR Override */

body {
    direction: ltr;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

/* Header LTR */
.header .container {
    flex-direction: row;
}

.logo {
    flex-direction: row;
}

.navbar .nav-links {
    flex-direction: row;
}

/* Mobile nav slides from LEFT in English */
@media (max-width: 768px) {
    .header .nav-links {
        right: auto;
        left: -100%;
    }
    
    .header .nav-links.active {
        left: 0;
        right: auto;
    }
}

/* Hero Section */
.hero-content {
    text-align: center;
}

/* About Section */
.about-content {
    flex-direction: row;
}

.about-features li {
    text-align: left;
}

/* Contact Section */
.contact-container {
    flex-direction: row;
}

.info-item {
    flex-direction: row;
    text-align: left;
}

/* Partners */
.partner-item {
    text-align: center;
}

/* Footer */
.footer-content {
    flex-direction: row;
}

.footer-links ul {
    text-align: left;
}

.footer h3::after {
    right: auto;
    left: 0;
}

/* Language Button */
.lang-btn {
    background: transparent;
    color: var(--primary-color);
    padding: 8px 15px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.lang-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links ul {
        text-align: center;
    }
    
    .footer h3::after {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
