/* RTL (Right-to-Left) styles for Arabic language support */

/* Apply RTL direction changes */
html[dir="rtl"],
html[lang="ar"] {
  direction: rtl;
}

html[dir="rtl"] body,
html[lang="ar"] body {
  text-align: right;
  direction: rtl;
}

/* Header adjustments for RTL */
html[dir="rtl"] .header-inner {
  flex-direction: row-reverse;
}

html[dir="rtl"] .brand {
  flex-direction: row-reverse;
}

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

html[dir="rtl"] .nav-list.open {
  right: auto;
  left: 0;
}

/* Hero section RTL */
html[dir="rtl"] .hero-inner {
  flex-direction: row-reverse;
}

html[dir="rtl"] .hero-text {
  text-align: right;
}

html[dir="rtl"] .hero-text h2 {
  text-align: right;
}

/* Services grid - center text for RTL */
html[dir="rtl"] .service-card {
  text-align: center;
}

/* About section */
html[dir="rtl"] .about-grid {
  grid-template-columns: 1fr 1fr;
}

/* Contact form and info - RTL text alignment */
html[dir="rtl"] .contact-info {
  text-align: right;
}

html[dir="rtl"] .contact-form {
  text-align: right;
}

html[dir="rtl"] .contact-form label {
  display: block;
  text-align: right;
}

html[dir="rtl"] .contact-form input,
html[dir="rtl"] .contact-form select,
html[dir="rtl"] .contact-form textarea {
  text-align: right;
  direction: rtl;
}

/* Testimonials - center for RTL */
html[dir="rtl"] .testimonials {
  text-align: center;
}

html[dir="rtl"] .testimonial {
  text-align: right;
}

html[dir="rtl"] .testimonials-wrap {
  animation: scroll-testimonials-rtl 80s linear infinite;
}

/* RTL scroll animation - opposite direction */
@keyframes scroll-testimonials-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

/* Footer */
html[dir="rtl"] .footer-inner {
  flex-direction: row-reverse;
  justify-content: space-between;
  text-align: right;
}

html[dir="rtl"] .site-footer p {
  text-align: right;
}

/* Language toggle button position */
html[dir="rtl"] .lang-toggle {
  margin-left: 0;
  margin-right: 8px;
}

html[dir="ltr"] .lang-toggle {
  margin-left: 8px;
  margin-right: 0;
}

/* Responsive RTL adjustments */
@media (max-width: 900px) {
  html[dir="rtl"] .header-inner {
    flex-direction: row-reverse;
  }

  html[dir="rtl"] .about-grid {
    grid-template-columns: 1fr;
  }

  html[dir="rtl"] .contact-grid {
    grid-template-columns: 1fr;
  }

  html[dir="rtl"] .hero-inner {
    flex-direction: column-reverse;
  }

  html[dir="rtl"] .hero-text {
    text-align: center;
  }

  html[dir="rtl"] .nav-list.open {
    flex-direction: column-reverse;
  }
}

/* Ensure smooth transition when language changes */
* {
  transition: direction 0.2s ease;
}

body {
  transition:
    text-align 0.2s ease,
    direction 0.2s ease;
}
