/* Custom English Version Styles */

/* General LTR adjustments */
body {
    direction: ltr;
    text-align: left;
    font-family: 'Cairo', sans-serif;
}

/* Language Switcher */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    position: relative;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-switcher a {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(201, 165, 92, 0.1);
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.lang-switcher a:hover {
    background: var(--gold-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(201, 165, 92, 0.3);
}

.lang-switcher i {
    margin-right: 6px;
    font-size: 14px;
}

/* RTL to LTR specific fixes */
.hero-content {
    text-align: center;
}

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

.about-feature {
    flex-direction: row;
}

.feature-icon {
    margin-right: 10px;
    margin-left: 0;
}

.why-choose-text {
    text-align: left;
}

.service-content {
    text-align: left;
}

.service-content ul li {
    padding-left: 25px;
    padding-right: 0;
    text-align: left;
}

.service-content ul li:before {
    left: 0;
    right: auto;
}

.quote {
    text-align: left;
}

.contact-form {
    text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
    text-align: left;
    direction: ltr;
}

.footer-content {
    text-align: left;
}

.footer-logo, 
.footer-links, 
.footer-services, 
.footer-contact {
    text-align: left;
}

/* Fix testimonials arrows */
.slick-prev {
    left: 10px;
    right: auto;
}

.slick-next {
    right: 10px;
    left: auto;
}

/* Success message for contact form */
.form-success {
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Make the slick slider work properly in LTR */
.testimonials-slider {
    direction: ltr;
}

.testimonials-slider .slick-track,
.testimonials-slider .slick-list {
    direction: ltr;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .lang-switcher {
        margin-right: 40px;
    }
    
    nav.active ul li:last-child {
        margin-top: 10px;
    }
} 