/* maarb.css - Modern Akkwa Arabic Version (RTL) */

/* 1) Pull in all base English styling */
@import url("/css/ma.css");

/* 2) Global RTL + Arabic font */
html[lang="ar"] {
  direction: rtl;
}

body {
  font-family: 'Noto Sans Arabic', system-ui, -apple-system, sans-serif;
  text-align: right;
}

/* 3) Header & language switcher tweaks for RTL */
.language-switcher {
  margin-left: 0;
  padding-left: 0;
  border-left: none;

  margin-right: 1rem;
  padding-right: 1rem;
  border-right: 1px solid var(--border-light);
}

.mobile-language-switcher-header {
  display: none;
}

@media (max-width: 768px) {
  .mobile-language-switcher-header {
    display: block;
    margin-right: 10px;
  }

  .mobile-language-switcher-header .language-switcher {
    margin: 0;
    padding: 0;
    border: none;
    gap: 5px;
  }

  /* Hide desktop language switcher on mobile */
  .main-nav .language-switcher {
    display: none;
  }
}

/* 4) RTL text alignment for main content blocks */
.hero-content,
.section-head,
.about-content,
.contact-content {
  text-align: right;
}

/* Hero eyebrow & description a tiny bit nicer in Arabic */
.hero-eyebrow {
  letter-spacing: 0.12em;
}

/* 5) Card headings in red (matching old design) */
.service-card h3,
.highlight-card h3,
.approach-step h3 {
  color: var(--accent-primary) !important;
}

/* 6) ABOUT section – red headings & big red stats */
.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.9;
  text-align: right;
}

.about-pillars {
  display: grid;
  gap: 2rem;
}

/* Pillar titles in red */
.pillar h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--accent-primary);
  font-weight: 700;
  text-align: right;
}

.pillar p {
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: right;
}

/* About image & stats – mirror the layout slightly for RTL */
.about-visual .image-container {
  margin-right: 2rem;
  margin-left: 0;
}

.about-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* Stats row */
.experience-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  justify-content: center;
  flex-direction: row-reverse; /* RTL feel */
}

.stat {
  text-align: center;
}

/* Big bold red numbers (like old design) */
.stat-number {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: none;
}

/* 7) Help list bullets on the RIGHT side for RTL */
.help-list li {
  padding-left: 0;
  padding-right: 1.5rem;
}

.help-list li::before {
  left: auto;
  right: 0;
}

/* 8) Approach / methodology – keep headings red & text RTL */
.approach-step p {
  text-align: right;
}

.ma-step-title {
  color: var(--accent-primary);
}

/* 9) Clients intro paragraphs RTL-friendly */
#clients .section-head,
.clients-intro {
  text-align: right;
}
