/**
 * PMTS - RTL (Right-to-Left) Styles
 * Applied for Arabic and other RTL languages
 */

/* Keep PMTS logo and brand in LTR */
[dir="rtl"] .nav__logo,
[dir="rtl"] .logo-text,
[dir="rtl"] .footer__brand,
[dir="rtl"] .logo-letter {
    direction: ltr !important;
    unicode-bidi: embed !important;
}

/* Keep code blocks in LTR */
[dir="rtl"] pre,
[dir="rtl"] code,
[dir="rtl"] .code-block {
    direction: ltr !important;
    text-align: left !important;
}

/* Keep technical values in LTR */
[dir="rtl"] .stat-value,
[dir="rtl"] .metric-value,
[dir="rtl"] .counter {
    direction: ltr !important;
}

/* General RTL text alignment */
[dir="rtl"] {
    text-align: right;
}

/* Navigation adjustments */
[dir="rtl"] .nav__links {
    flex-direction: row-reverse;
}

/* Flex row reverse for RTL */
[dir="rtl"] .hero__stats,
[dir="rtl"] .features__grid {
    direction: ltr;
}
