/* styles-ltr.css - CSS Overrides for LTR (English) */

/* ===== LTR Specific Overrides ===== */
[dir="ltr"] body {
    direction: ltr;
}

/* ===== Module Quote Border ===== */
[dir="ltr"] .module-quote {
    border-right: none;
    border-left: 4px solid var(--primary);
}

/* ===== WhatsApp Button Position ===== */
[dir="ltr"] .whatsapp-float {
    left: auto;
    right: 30px;
}

/* ===== Footer Links Hover ===== */
[dir="ltr"] .footer-links a:hover {
    padding-right: 0;
    padding-left: 5px;
}

/* ===== Language Switcher Position ===== */
[dir="ltr"] .lang-switcher {
    margin-right: 0;
    margin-left: 15px;
}

/* ===== Navigation Links After Effect ===== */
[dir="ltr"] .nav-links a::after {
    right: auto;
    left: 0;
}

/* ===== Hero Buttons Icon Direction ===== */
[dir="ltr"] .btn-primary i {
    transform: scaleX(-1); /* Flip arrow for LTR */
}

/* ===== Floating Cards Position ===== */
[dir="ltr"] .card-1 {
    left: auto;
    right: 0;
}

[dir="ltr"] .card-2 {
    left: auto;
    right: -10%;
}

[dir="ltr"] .card-3 {
    right: auto;
    left: 0;
}

/* ===== Form Labels ===== */
[dir="ltr"] .form-group label {
    text-align: left;
}

/* ===== Contact Cards Text Alignment ===== */
[dir="ltr"] .contact-card {
    text-align: center; /* Keep centered for both */
}

/* ===== Responsive - Mobile Menu ===== */
@media (max-width: 768px) {
    [dir="ltr"] .nav-links {
        right: auto;
        left: -100%;
    }

    [dir="ltr"] .nav-links.active {
        left: 0;
        right: auto;
    }

    [dir="ltr"] .lang-switcher {
        margin-left: 0;
    }
}
