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

body {
  direction: rtl;
  text-align: right;
}

.header-content {
  flex-direction: row-reverse;
}

.logo-section {
  flex-direction: row-reverse;
}

nav ul {
  flex-direction: row-reverse;
}

.contact-info {
  flex-direction: row-reverse;
}

.service-card {
  border-right: 4px solid var(--primary-gold);
  border-left: none;
}

.contact-info-box {
  border-right: 4px solid var(--primary-gold);
  border-left: none;
}

.contact-form {
  direction: rtl;
}

.footer-content {
  direction: rtl;
}

.footer-section {
  text-align: right;
}

.footer-bottom {
  text-align: center;
}

/* Ensure proper alignment for form elements */
.form-group input,
.form-group textarea {
  direction: rtl;
  text-align: right;
}

/* Adjust margins for RTL */
.service-card {
  margin-right: 0;
  margin-left: 0;
}

/* Responsive adjustments for RTL */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
  }

  .contact-info {
    flex-direction: column;
  }

  nav ul {
    flex-direction: column-reverse;
  }
}
