/* ═══════════════════════════════════════════════════════════
   FORTITUDE — Arabic / RTL overrides
   Loaded only by index-ar.html
   ═══════════════════════════════════════════════════════════ */

:root {
  --serif: 'Noto Naskh Arabic', Georgia, serif;
  --sans:  'Noto Naskh Arabic', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Remove letter-spacing — looks bad in Arabic */
* { letter-spacing: 0 !important; }

/* Nav: keep logo left, links right — matches English layout */
.nav-logo  { order: 1; }
.nav-right { order: 2; }

/* Hero watermark: mirror to left side to match RTL text position */
.hero-watermark {
  right: auto !important;
  left: 0 !important;
  transform: translate(0, -50%) !important;
}

/* Buttons: larger font, no uppercase (has no effect on Arabic) */
.btn { font-size: 0.92rem; text-transform: none; }

/* Service index numbers keep their Latin font */
.service-index { font-family: 'Cormorant Garamond', Georgia, serif; }

/* Arabic headings at weight 400 — 300 is too thin */
h1, h2, h3, h4 { font-weight: 400; }
h1 { font-size: clamp(2.6rem, 4.5vw, 4.4rem); }

/* Philosophy quote — italic is not standard in Arabic */
.philosophy-quote { font-style: normal; font-size: clamp(1.4rem, 2.2vw, 1.9rem); }

/* ── Flip physical (left/right) properties for RTL ── */

/* Service bullet markers — use flex so dash sits at RTL start (right) */
.service-points li {
  padding-left: 0 !important;
  padding-right: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.5rem;
}
.service-points li::before {
  position: static !important;
  left: auto !important;
  flex-shrink: 0;
  margin-top: 0.08em;
}

/* Hero credentials bar */
.credential     { padding: 0 0 0 3rem; }
.credential-sep { margin-right: 0; margin-left: 3rem; }

/* Footer cert badges */
.footer-certs {
  padding-left: 0;
  border-left: none;
  padding-right: 1.5rem;
  border-right: 1px solid var(--gold-border);
}
.footer-copy { text-align: left; }

@media (max-width: 960px) {
  .footer-tagline { text-align: right; }
  .footer-copy    { text-align: right; }
}

@media (max-width: 768px) {
  .footer-inner { align-items: flex-end; }
  .footer-certs {
    padding-right: 0;
    border-right: none;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gold-border);
    width: 100%;
  }
}
