/**
 * SiteHub RTL Stylesheet
 * Loaded only when is_rtl() returns true
 */

/* Direction overrides handled by logical properties in main style.css */
/* This file adds any RTL-specific visual corrections */

.rtl .service-link svg,
.rtl .btn svg {
  transform: scaleX(-1);
}

.rtl .hero__content {
  text-align: right;
}

.rtl .hero__actions {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.rtl .hero__scroll {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}

.rtl .footer-social {
  flex-direction: row-reverse;
}

.rtl .stat-item:not(:last-child)::after {
  right: auto;
  left: 0;
}

.rtl .back-to-top {
  right: auto;
  left: var(--space-8);
}

@media (max-width: 768px) {
  .rtl .back-to-top {
    right: auto;
    left: var(--space-4);
  }
}
