/* ================================================
   LTR Override for English Version
   Loaded AFTER style.css to override RTL defaults
   ================================================ */

/* ---- Base Direction ---- */
body {
    direction: ltr;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ---- Language Switcher ---- */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.lang-switcher:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.lang-flag {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}

/* ---- Service Cards ---- */
.service-card {
    text-align: left;
}

.service-card::before {
    right: auto;
    left: 0;
    border-radius: 0 0 0 4px;
}

/* ---- Service Link Arrow ---- */
.service-link .fa-arrow-left {
    display: none;
}

.service-link .fa-arrow-right {
    display: inline;
}

/* ---- About Section ---- */
.about-content {
    text-align: left;
}

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

.about-img-secondary {
    left: auto;
    right: -30px;
}

.about-experience {
    left: auto;
    right: 0;
}

/* ---- Footer ---- */
.footer-col {
    text-align: left;
}

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

/* ---- Contact Info ---- */
.contact-item {
    text-align: left;
}

.contact-info-card {
    text-align: left;
}

/* ---- Dropdown ---- */
.has-dropdown .dropdown {
    left: 0;
    right: auto;
}

.has-dropdown .dropdown li a {
    text-align: left;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
    justify-content: center;
}

/* ---- Feature List ---- */
.feature {
    text-align: left;
}

/* ---- Project Info ---- */
.project-info {
    text-align: left;
}

/* ---- Section Headers ---- */
.section-header {
    text-align: center;
}

/* ---- Hero Content ---- */
.hero-content {
    text-align: left;
}

/* ---- CTA ---- */
.cta-content {
    text-align: center;
}

/* ---- Page Banner ---- */
.page-banner-content {
    text-align: center;
}

/* ---- Stats ---- */
.stat-item {
    text-align: center;
}

/* ---- Footer Contact Items ---- */
.footer-contact .contact-item {
    flex-direction: row;
}

/* ---- Mobile Responsive ---- */
@media (max-width: 768px) {
    .lang-switcher {
        padding: 5px 10px;
        font-size: 12px;
    }

    .lang-flag {
        width: 18px;
        height: 13px;
    }

    .header-actions {
        position: absolute;
        right: auto;
        left: 70px;
        top: 50%;
        transform: translateY(-50%);
        gap: 8px;
    }

    .header-actions .header-cta {
        display: none;
    }

    .nav-menu ul li a {
        text-align: left;
    }

    .about-grid {
        direction: ltr;
    }

    .about-text {
        text-align: left !important;
        direction: ltr !important;
    }

    .hero-content {
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }
}
