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

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

[dir="rtl"] .nav-link {
  margin-right: 0;
  margin-left: 2rem;
}

/* Hero Section RTL */
[dir="rtl"] .hero-content {
  text-align: right;
}

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

/* Cards and Icons RTL */
[dir="rtl"] .card-icon {
  margin-right: 0;
  margin-left: 1rem;
}

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

/* Tables RTL */
[dir="rtl"] .table th,
[dir="rtl"] .table td {
  text-align: right;
}

/* Forms RTL */
[dir="rtl"] input,
[dir="rtl"] textarea {
  text-align: right;
}

[dir="rtl"] .input-group > *:first-child {
  border-radius: 0 0.5rem 0.5rem 0;
}

[dir="rtl"] .input-group > *:last-child {
  border-radius: 0.5rem 0 0 0.5rem;
}

/* Icons RTL */
[dir="rtl"] .fa-arrow-right:before {
  content: "\f060"; /* fa-arrow-left */
}

[dir="rtl"] .fa-chevron-right:before {
  content: "\f053"; /* fa-chevron-left */
}

/* Language specific font */
.lang-fa {
  font-family: "Vazirmatn", system-ui, -apple-system, sans-serif;
}

/* RTL specific margins and paddings */
[dir="rtl"] .ml-2 {
  margin-left: 0;
  margin-right: 0.5rem;
}

[dir="rtl"] .mr-2 {
  margin-right: 0;
  margin-left: 0.5rem;
}

[dir="rtl"] .pl-2 {
  padding-left: 0;
  padding-right: 0.5rem;
}

[dir="rtl"] .pr-2 {
  padding-right: 0;
  padding-left: 0.5rem;
}

/* RTL Grid and Flexbox */
[dir="rtl"] .grid {
  direction: rtl;
}

[dir="rtl"] .flex {
  direction: rtl;
}

/* RTL Animations */
[dir="rtl"] .animate-slide-right {
  animation-direction: reverse;
}

/* RTL Floating Elements */
[dir="rtl"] .floating-card {
  right: auto;
  left: -4px;
}

/* RTL Language Switcher */
[dir="rtl"] .language-switcher {
  right: auto;
  left: 1rem;
}

/* RTL Scroll Dots */
[dir="rtl"] #scroll-indicator {
  right: auto;
  left: 1rem;
}

/* RTL Mobile Menu */
[dir="rtl"] #mobile-menu-button {
  right: auto;
  left: 1rem;
}

/* RTL Tooltips */
[dir="rtl"] .tooltip::before {
  right: auto;
  left: 100%;
}

/* RTL Modals */
[dir="rtl"] .modal-box {
  text-align: right;
}

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

/* RTL Badges */
[dir="rtl"] .badge {
  direction: ltr; /* Keep numbers LTR */
}

/* RTL Stats */
[dir="rtl"] .stats {
  direction: rtl;
}

/* RTL Footer */
[dir="rtl"] .footer {
  text-align: right;
}

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

/* Font Loading for Persian */
@font-face {
  font-family: 'Vazirmatn';
  src: url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/fonts/webfonts/Vazirmatn[wght].woff2') format('woff2 supports variations'),
       url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/fonts/webfonts/Vazirmatn[wght].woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
} 