/* LTR overrides for English pages */
html[dir="ltr"] {
    direction: ltr;
}

html[dir="ltr"] body {
    text-align: left;
}

html[dir="ltr"] .site-header .logo {
    font-family: 'Heebo', sans-serif;
}

@media (min-width: 993px) {
    html[dir="ltr"] .nav-list {
        flex-direction: row;
    }
}

html[dir="ltr"] .list-check li {
    padding-left: 35px;
    padding-right: 0;
}

html[dir="ltr"] .list-check li::before {
    left: 0;
    right: auto;
}

html[dir="ltr"] .contact-form input,
html[dir="ltr"] .contact-form textarea {
    text-align: left;
}

html[dir="ltr"] .card-link:hover {
    transform: translateX(4px);
}

html[dir="ltr"] .split-content {
    text-align: left;
}

html[dir="ltr"] .split-content .section-title {
    text-align: left;
}

html[dir="ltr"] .footer-grid {
    direction: ltr;
}

/* Language switch button styling - keeping the premium style from main.css */
html[dir="ltr"] .lang-switch {
    font-family: 'Heebo', sans-serif;
}

/* Hero CTA button alignment for LTR */
html[dir="ltr"] .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

html[dir="ltr"] .hero-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

html[dir="ltr"] .hero-content {
    text-align: center;
}

html[dir="ltr"] .trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

html[dir="ltr"] .section-title {
    text-align: center;
}

html[dir="ltr"] .cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

html[dir="ltr"] #contact {
    text-align: center;
}

/* Mobile menu fixes for LTR */
html[dir="ltr"] .sub-menu {
    left: 0;
    right: auto;
    transform: translateX(0);
}

@media (max-width: 992px) {
    html[dir="ltr"] .nav-list {
        right: auto;
        left: 0;
        transform: translateX(-100%);
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        z-index: 1000;
        background-color: white;
        width: 100%;
        height: 100vh;
        gap: 30px;
        /* More space for touch */
    }

    html[dir="ltr"] .nav-list.is-active {
        transform: translateX(0);
    }

    html[dir="ltr"] .nav-list li {
        width: 100%;
        text-align: center;
    }

    html[dir="ltr"] .nav-list a {
        font-size: 1.8rem;
        /* Larger text for mobile */
        display: block;
        width: 100%;
    }

    html[dir="ltr"] .nav-list .btn {
        margin-inline-start: 0;
        width: 250px;
        /* Fixed width for better look */
        margin: 10px auto;
        padding: 15px 30px;
        font-size: 1.2rem;
    }
}
html[dir=\"ltr\"] .breadcrumbs li:not(:last-child)::after {
    content: '/';
}
