/* ==========================================================================
   RTL Specific Styles
   أنماط اتجاه من اليمين لليسار
   ========================================================================== */

/* Reset RTL Direction */
html[dir="rtl"] body,
body.rtl {
    direction: rtl;
    text-align: right;
}

/* Navigation Arrows */
.rtl .nav-menu .sub-menu {
    right: auto;
    left: 0;
}

.rtl .hero-slider__prev svg,
.rtl .hero-slider__next svg {
    transform: scaleX(-1);
}

.rtl .news-card__link svg,
.rtl .category-card__cta svg {
    transform: scaleX(-1);
}

/* Footer Links */
.rtl .footer__links a svg {
    transform: scaleX(-1);
}

.rtl .footer__links a:hover {
    transform: translateX(-5px);
}

/* Breadcrumbs */
.rtl .breadcrumbs svg {
    transform: scaleX(-1);
}

/* Form inputs */
.rtl input[type="tel"],
.rtl input[type="email"],
.rtl input[type="url"] {
    direction: ltr;
    text-align: right;
}

/* Mobile Navigation */
.rtl .mobile-nav {
    right: auto;
    left: -100%;
}

.rtl .mobile-nav.active {
    left: 0;
}

.rtl .mobile-nav__content {
    right: auto;
    left: 0;
    transform: translateX(-100%);
}

.rtl .mobile-nav.active .mobile-nav__content {
    transform: translateX(0);
}

/* Sidebar */
.rtl .project-sidebar {
    text-align: right;
}

/* Filter hover effects */
.rtl .contact-card:hover,
.rtl .footer__links a:hover {
    transform: translateX(5px);
}

/* Stats */
.rtl .stat-number {
    direction: ltr;
}

/* Phone numbers */
.rtl [dir="ltr"] {
    direction: ltr !important;
    unicode-bidi: embed;
}