/* RTL (Right-to-Left) Support for Arabic */

/* Base direction */
html[dir="rtl"] {
  direction: rtl;
}

/* Font adjustments for Arabic */
html[dir="rtl"] body {
  font-family: 'Outfit', 'Segoe UI', 'Tahoma', sans-serif;
}

/* Header */
html[dir="rtl"] .header__inner {
  flex-direction: row-reverse;
}

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

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

/* Hero */
html[dir="rtl"] .hero::before {
  right: auto;
  left: 0;
  background: linear-gradient(225deg, transparent 0%, var(--color-bg-alt) 100%);
}

/* Problem cards - flip arrow direction */
html[dir="rtl"] .problem-card__link {
  flex-direction: row-reverse;
}

/* Solution blocks - reverse for RTL */
html[dir="rtl"] .solution-block {
  direction: rtl;
}

html[dir="rtl"] .solution-block:nth-child(even) {
  direction: rtl;
}

html[dir="rtl"] .solution-block:nth-child(even) > * {
  direction: rtl;
}

/* Ghost button arrow */
html[dir="rtl"] .btn--ghost::after {
  content: '←';
}

html[dir="rtl"] .btn--ghost:hover::after {
  transform: translateX(-4px);
}

/* Difference section */
html[dir="rtl"] .difference__inner {
  direction: rtl;
}

html[dir="rtl"] .difference__list li {
  padding-left: 0;
  padding-right: var(--space-lg);
}

html[dir="rtl"] .difference__list li::before {
  left: auto;
  right: 0;
}

/* Quote marks */
html[dir="rtl"] .difference__quote::before {
  content: '"';
}

html[dir="rtl"] .difference__quote::after {
  content: '"';
}

/* Process steps */
html[dir="rtl"] .process__steps {
  direction: rtl;
}

/* CTA section */
html[dir="rtl"] .cta-section__inner {
  direction: rtl;
}

html[dir="rtl"] .cta-section__primary,
html[dir="rtl"] .cta-section__newsletter {
  text-align: right;
}

/* Newsletter form */
html[dir="rtl"] .newsletter-form {
  flex-direction: row-reverse;
}

html[dir="rtl"] .newsletter-form input[type="email"] {
  text-align: right;
}

/* Footer */
html[dir="rtl"] .footer__inner {
  direction: rtl;
}

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

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

/* Nav link underline animation */
html[dir="rtl"] .nav__link::after {
  left: auto;
  right: 0;
}

/* Credibility grid */
html[dir="rtl"] .credibility__grid {
  direction: rtl;
}

/* Mobile adjustments */
@media (max-width: 1024px) {
  html[dir="rtl"] .cta-section__primary,
  html[dir="rtl"] .cta-section__newsletter {
    text-align: center;
  }
}

@media (max-width: 768px) {
  html[dir="rtl"] .nav {
    flex-direction: column;
  }

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

  html[dir="rtl"] .newsletter-form {
    flex-direction: column;
  }

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