/* ============================================================
   VORA — Global Design System v2
   vorakw.studio
   Palette: Midnight Navy / Electric Blue / Slate Gray / Warm White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=Noto+Kufi+Arabic:wght@300;400;500;600&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* ---- Brand Palette ---- */
  --navy:          #0B1E3F;   /* Midnight Navy — primary brand */
  --navy-mid:      #142B57;   /* slightly lighter navy */
  --navy-light:    #1E3A6B;   /* hover/active navy */
  --navy-muted:    #2D4A7A;   /* borders on dark bg */
  --blue:          #3B82F6;   /* Electric Blue — accent */
  --blue-hover:    #2563EB;   /* darker blue on hover */
  --blue-light:    #EFF6FF;   /* very light blue tint */
  --blue-soft:     #DBEAFE;   /* soft blue bg */
  --slate:         #64748B;   /* Slate Gray — body text on light */
  --slate-light:   #94A3B8;   /* Light Slate — muted on dark */
  --slate-dark:    #475569;   /* darker slate */
  --warm-white:    #F8FAFC;   /* Warm White — main bg */
  --off-white:     #F1F5F9;   /* slightly darker */
  --paper:         #E2E8F0;   /* card borders / dividers */
  --white:         #FFFFFF;

  /* ---- Semantic Tokens ---- */
  --surface:         var(--warm-white);
  --surface-2:       var(--off-white);
  --surface-3:       var(--paper);
  --text-primary:    var(--navy);
  --text-body:       var(--slate);
  --text-muted:      var(--slate-light);
  --border-color:    var(--paper);
  --accent:          var(--blue);
  --accent-hover:    var(--blue-hover);

  /* ---- Typography ---- */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-arabic:  'Noto Kufi Arabic', 'Segoe UI', system-ui, sans-serif;

  /* ---- Type Scale ---- */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  3.75rem;
  --text-6xl:  5rem;

  /* ---- Spacing ---- */
  --space-1:  0.25rem;  --space-2:  0.5rem;   --space-3:  0.75rem;
  --space-4:  1rem;     --space-5:  1.25rem;  --space-6:  1.5rem;
  --space-8:  2rem;     --space-10: 2.5rem;   --space-12: 3rem;
  --space-16: 4rem;     --space-20: 5rem;     --space-24: 6rem;
  --space-32: 8rem;     --space-40: 10rem;

  /* ---- Layout ---- */
  --container:        1200px;
  --container-narrow: 760px;

  /* ---- Radii ---- */
  --radius-sm:   4px;   --radius:    8px;
  --radius-lg:   16px;  --radius-xl: 24px;
  --radius-full: 9999px;

  /* ---- Shadows ---- */
  --shadow-xs: 0 1px 2px rgba(11,30,63,0.04);
  --shadow-sm: 0 2px 8px rgba(11,30,63,0.06);
  --shadow:    0 4px 20px rgba(11,30,63,0.08);
  --shadow-lg: 0 8px 40px rgba(11,30,63,0.12);
  --shadow-xl: 0 20px 60px rgba(11,30,63,0.18);
  --shadow-blue: 0 4px 24px rgba(59,130,246,0.25);

  /* ---- Motion ---- */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --dur-fast:   150ms;
  --dur-base:   300ms;
  --dur-slow:   500ms;
  --dur-slower: 800ms;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--surface);
  overflow-x: hidden;
}

/* Arabic language override */
[lang="ar"] body,
body.lang-ar {
  font-family: var(--font-arabic);
  direction: rtl;
  text-align: right;
}

body.lang-ar h1,
body.lang-ar h2,
body.lang-ar h3,
body.lang-ar h4 {
  font-family: var(--font-arabic);
  letter-spacing: 0;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, var(--text-6xl)); }
h2 { font-size: clamp(1.75rem, 4vw, var(--text-4xl)); }
h3 { font-size: clamp(1.25rem, 2.5vw, var(--text-2xl)); }
h4 { font-size: var(--text-xl); }

p { color: var(--text-body); line-height: 1.7; }

.label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

body.lang-ar .label {
  font-family: var(--font-arabic);
  letter-spacing: 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-8);
}
.container--narrow { max-width: var(--container-narrow); }

.section       { padding-block: var(--space-32); }
.section--lg   { padding-block: var(--space-40); }

@media (max-width: 768px) {
  .container { padding-inline: var(--space-5); }
  .section   { padding-block: var(--space-20); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius-full);
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}

body.lang-ar .btn { font-family: var(--font-arabic); }

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border: 1.5px solid var(--blue);
}
.btn--primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-blue);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid var(--navy);
}
.btn--navy:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--paper);
}
.btn--outline:hover {
  border-color: var(--navy);
  background: var(--off-white);
  transform: translateY(-1px);
}

.btn svg {
  width: 16px; height: 16px;
  transition: transform var(--dur-base) var(--ease-out);
}
.btn:hover svg { transform: translateX(3px); }
body.lang-ar .btn:hover svg { transform: translateX(-3px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: var(--space-5);
  transition: all var(--dur-base) var(--ease-out);
}

.nav.scrolled {
  background: rgba(248,250,252,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--paper);
  padding-block: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.nav__logo .logo-vora  { color: var(--navy); }
.nav__logo .logo-dot   { color: var(--blue); font-size: 1.5rem; line-height: 1; }

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--slate);
  transition: color var(--dur-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: width var(--dur-base) var(--ease-out);
}

.nav__link:hover           { color: var(--navy); }
.nav__link:hover::after    { width: 100%; }
.nav__link.active          { color: var(--navy); }
.nav__link.active::after   { width: 100%; }

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--off-white);
  border: 1px solid var(--paper);
  border-radius: var(--radius-full);
  padding: 3px;
  margin-left: var(--space-4);
}

body.lang-ar .lang-switcher { margin-left: 0; margin-right: var(--space-4); }

.lang-btn {
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: var(--radius-full);
  color: var(--slate);
  transition: all var(--dur-fast);
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: var(--font-body);
}

.lang-btn.active {
  background: var(--navy);
  color: var(--white);
}

.lang-btn:not(.active):hover {
  color: var(--navy);
}

/* Nav right cluster */
.nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}
.nav__hamburger span {
  width: 22px; height: 1.5px;
  background: var(--navy);
  transition: all var(--dur-base) var(--ease-out);
  transform-origin: center;
  display: block;
}

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out);
}
.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
  display: flex;
}
.nav__mobile .nav__link {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
}
body.lang-ar .nav__mobile .nav__link {
  font-family: var(--font-arabic);
}

@media (max-width: 768px) {
  .nav__links, .nav__right { display: none; }
  .nav__hamburger { display: flex; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(248,250,252,0.55);
  padding-block: var(--space-16);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-12);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--white);
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  margin-bottom: var(--space-4);
  text-decoration: none;
}
.footer__logo .logo-dot { color: var(--blue); font-size: 1.5rem; }

.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(248,250,252,0.45);
  max-width: 220px;
  line-height: 1.6;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,250,252,0.3);
  margin-bottom: var(--space-5);
}
body.lang-ar .footer__col h4 { font-family: var(--font-arabic); letter-spacing: 0; }

.footer__col a {
  display: block;
  font-size: var(--text-sm);
  color: rgba(248,250,252,0.5);
  margin-bottom: var(--space-3);
  transition: color var(--dur-fast);
}
.footer__col a:hover { color: var(--white); }

.footer__contact-label {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248,250,252,0.28);
  margin-bottom: 2px;
}
.footer__contact-value {
  display: block;
  font-size: var(--text-sm);
  color: rgba(248,250,252,0.6);
  margin-bottom: var(--space-4);
}

.footer__bottom {
  border-top: 1px solid rgba(248,250,252,0.08);
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy { font-size: var(--text-xs); color: rgba(248,250,252,0.22); }

@media (max-width: 1024px) { .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--space-10); } }
@media (max-width: 640px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--space-3); text-align: center; }
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { margin-bottom: var(--space-16); }
.section-header--center {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-16);
}
body.lang-ar .section-header--center { text-align: center; }

.section-header .label,
.section-header--center .label { display: block; margin-bottom: var(--space-4); }
.section-header h2,
.section-header--center h2 { margin-bottom: var(--space-4); }
.section-header p,
.section-header--center p { font-size: var(--text-lg); color: var(--text-body); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--dur-base) var(--ease-out);
}
.card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* ============================================================
   PILL / BADGE
   ============================================================ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.3rem 0.85rem;
  font-size: var(--text-xs);
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 1px solid var(--paper);
  color: var(--slate);
  background: var(--surface);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slower) var(--ease-out),
              transform var(--dur-slower) var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }
.reveal--delay-4 { transition-delay: 400ms; }
.reveal--delay-5 { transition-delay: 500ms; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--off-white);
  border-bottom: 1px solid var(--border-color);
  padding: var(--space-3) 0;
}
.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--slate-light);
}
.breadcrumb__inner a {
  color: var(--slate);
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-out);
}
.breadcrumb__inner a:hover { color: var(--navy); }
.breadcrumb__sep { color: var(--slate-light); user-select: none; }
.breadcrumb__current { color: var(--navy); font-weight: 500; }

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

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out);
}

.faq-item.is-open {
  border-color: rgba(59,130,246,0.3);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-7);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  transition: color var(--dur-base) var(--ease-out);
}

.faq-q:hover { color: var(--blue); }

.faq-q__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--slate-light);
  transition: all var(--dur-base) var(--ease-out);
}

.faq-item.is-open .faq-q__icon {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 var(--space-7) var(--space-6);
  font-size: var(--text-sm);
  color: var(--slate);
  line-height: 1.75;
}

.faq-item.is-open .faq-a { display: block; }

[dir="rtl"] .faq-q { text-align: right; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--space-32) + 80px);
  padding-bottom: var(--space-20);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .label  { color: var(--blue); display: block; margin-bottom: var(--space-4); }
.page-hero h1      { color: var(--white); margin-bottom: var(--space-6); max-width: 700px; }
.page-hero p       { color: rgba(248,250,252,0.65); font-size: var(--text-lg); max-width: 580px; }
.page-hero .btn    { margin-top: var(--space-8); }

/* ============================================================
   FEATURE LIST
   ============================================================ */
.feature-list { display: flex; flex-direction: column; gap: var(--space-4); }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--slate);
}
.feature-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 8px;
  flex-shrink: 0;
}

/* ============================================================
   USE CASE GRID
   ============================================================ */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.use-case-item {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: var(--space-5) var(--space-6);
  border: 1px solid var(--paper);
}
.use-case-item strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--navy);
  margin-bottom: var(--space-2);
}
.use-case-item p { font-size: var(--text-sm); color: var(--slate); }

@media (max-width: 768px) { .use-case-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding-block: var(--space-24);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2   { color: var(--white); margin-bottom: var(--space-4); position: relative; }
.cta-band p    {
  color: rgba(248,250,252,0.6);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  max-width: 480px;
  margin-inline: auto;
  position: relative;
}
.cta-band > .container { position: relative; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--paper);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
}
.timeline__step {
  padding: var(--space-10) var(--space-8);
  border-right: 1px solid var(--paper);
}
.timeline__step:last-child { border-right: none; }
.timeline__step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--blue-soft);
  line-height: 1;
  margin-bottom: var(--space-5);
}
.timeline__step-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--navy);
  margin-bottom: var(--space-3);
}
.timeline__step-body { font-size: var(--text-sm); color: var(--slate); line-height: 1.65; }

body.lang-ar .timeline__step-num  { font-family: var(--font-arabic); }
body.lang-ar .timeline__step-title { font-family: var(--font-arabic); }

@media (max-width: 1024px) {
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline__step:nth-child(2) { border-right: none; }
  .timeline__step:nth-child(1),
  .timeline__step:nth-child(2) { border-bottom: 1px solid var(--paper); }
}
@media (max-width: 640px) {
  .timeline { grid-template-columns: 1fr; }
  .timeline__step { border-right: none; border-bottom: 1px solid var(--paper); }
  .timeline__step:last-child { border-bottom: none; }
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }

.form-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--navy);
}
.form-label span { color: var(--slate-light); font-weight: 400; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--paper);
  border-radius: var(--radius);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
  appearance: none;
}
body.lang-ar .form-input,
body.lang-ar .form-select,
body.lang-ar .form-textarea { font-family: var(--font-arabic); }

.form-input::placeholder,
.form-textarea::placeholder { color: var(--slate-light); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.form-textarea { resize: vertical; min-height: 140px; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
  cursor: pointer;
}
body.lang-ar .form-select {
  background-position: left 14px center;
  padding-right: 1rem;
  padding-left: 44px;
}

/* ============================================================
   DIVIDER
   ============================================================ */
.divider { width: 100%; height: 1px; background: var(--paper); }

/* ============================================================
   UTILS
   ============================================================ */
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.inline-flex { display: inline-flex; }
.mt-4  { margin-top: var(--space-4); }
.mt-6  { margin-top: var(--space-6); }
.mt-8  { margin-top: var(--space-8); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-8  { margin-bottom: var(--space-8); }
.gap-4 { gap: var(--space-4); }

/* ============================================================
   ACTIVE PAGE NAV INDICATORS
   ============================================================ */
[data-page="home"]     .nav__link[href="index.html"]::after,
[data-page="services"] .nav__link[href="services.html"]::after,
[data-page="about"]    .nav__link[href="about.html"]::after,
[data-page="contact"]  .nav__link[href="contact.html"]::after { width: 100%; }

[data-page="home"]     .nav__link[href="index.html"],
[data-page="services"] .nav__link[href="services.html"],
[data-page="about"]    .nav__link[href="about.html"],
[data-page="contact"]  .nav__link[href="contact.html"] { color: var(--navy); }
