/* ==========================================================================
   SmartBag — Design System (bilingual: EN ltr / AR rtl)
   Modern minimal corporate theme — built with CSS logical properties
   so the same stylesheet adapts automatically to dir="ltr" / dir="rtl".
   ========================================================================== */

:root{
  --navy-900:#0b1f2e;
  --navy-800:#123349;
  --navy-700:#17435d;
  --teal-600:#2f7a94;
  --teal-500:#3b93ad;
  --teal-100:#e7f2f5;
  --orange-500:#e8792b;
  --orange-100:#fdece0;
  --ink:#1c2b33;
  --muted:#5f7078;
  --muted-2:#87979d;
  --line:#e7edf0;
  --bg:#ffffff;
  --bg-alt:#f6f9fa;
  --white:#ffffff;
  --radius:14px;
  --radius-sm:8px;
  --shadow-sm:0 1px 2px rgba(11,31,46,.06), 0 1px 1px rgba(11,31,46,.04);
  --shadow-md:0 12px 32px -12px rgba(11,31,46,.18);
  --shadow-lg:0 24px 60px -20px rgba(11,31,46,.28);
  --container:1160px;
  --glow-x:85%;
  --font-heading:'Poppins','Inter',sans-serif;
  --font-body:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
}
html[dir="rtl"]{
  --glow-x:15%;
  --font-heading:'Cairo','Tajawal',sans-serif;
  --font-body:'Tajawal','Cairo',sans-serif;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--bg);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4,h5{
  font-family:var(--font-heading);
  color:var(--navy-900);
  line-height:1.3;
  margin:0 0 .6em;
  font-weight:600;
  letter-spacing:-.01em;
}
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3{letter-spacing:0; font-weight:700;}
h1{font-size:clamp(2.1rem,4vw,3.2rem); font-weight:700;}
h2{font-size:clamp(1.6rem,3vw,2.3rem);}
h3{font-size:1.25rem;}
p{margin:0 0 1em; color:var(--muted);}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
ul{margin:0; padding:0;}
li{list-style:none;}
.container{max-width:var(--container); margin:0 auto; padding:0 24px;}
section{padding:88px 0;}
@media (max-width:768px){ section{padding:56px 0;} }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:.78rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color:var(--teal-600); margin-bottom:14px;
}
html[dir="rtl"] .eyebrow{letter-spacing:0;}
.eyebrow::before{content:""; width:22px; height:2px; background:var(--orange-500); display:inline-block; border-radius:2px; flex-shrink:0;}

.section-head{max-width:680px; margin:0 auto 52px;}
.section-head.center{text-align:center;}
.section-head p{font-size:1.05rem;}
.service-intro{font-size:1.05rem; color:var(--ink);}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 28px; border-radius:999px; font-weight:600; font-size:.95rem;
  border:1.5px solid transparent; cursor:pointer; transition:.2s ease;
  white-space:nowrap;
}
.btn-primary{background:var(--orange-500); color:#fff;}
.btn-primary:hover{background:#d5691f; transform:translateY(-1px);}
.btn-outline{border-color:rgba(255,255,255,.55); color:#fff;}
.btn-outline:hover{background:rgba(255,255,255,.12);}
.btn-navy{background:var(--navy-800); color:#fff;}
.btn-navy:hover{background:var(--navy-900);}
.btn-ghost{border-color:var(--line); color:var(--navy-800);}
.btn-ghost:hover{border-color:var(--teal-500); color:var(--teal-600);}
.btn-sm{padding:10px 20px; font-size:.85rem;}

/* ---------- Header / Nav ---------- */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,.92); backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-wrap{display:flex; align-items:center; justify-content:space-between; padding:16px 24px; max-width:var(--container); margin:0 auto; gap:16px;}
.brand{display:flex; align-items:center; gap:10px; font-family:var(--font-heading); font-weight:700; font-size:1.3rem; color:var(--navy-900);}
.brand .mark{
  width:38px; height:38px; border-radius:10px;
  background:linear-gradient(145deg,var(--teal-500),var(--navy-800));
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.brand .mark svg{width:20px; height:20px;}
.brand small{display:block; font-family:var(--font-body); font-weight:500; font-size:.68rem; color:var(--muted-2); letter-spacing:.02em;}

.main-nav{display:flex; align-items:center; gap:4px; flex:1;}
.main-nav a{
  padding:10px 16px; border-radius:999px; font-weight:500; font-size:.95rem; color:var(--navy-800);
  position:relative; transition:.2s;
}
.main-nav a:hover, .main-nav a.active{background:var(--teal-100); color:var(--teal-600);}

.nav-cta{display:flex; align-items:center; gap:10px;}
.lang-switch{
  display:inline-flex; align-items:center; gap:6px;
  padding:9px 14px; border-radius:999px; border:1.5px solid var(--line);
  font-weight:600; font-size:.85rem; color:var(--navy-800); transition:.2s;
}
.lang-switch:hover{border-color:var(--teal-500); color:var(--teal-600);}
.lang-switch svg{width:15px; height:15px;}
.nav-toggle{display:none; background:none; border:0; cursor:pointer; padding:6px;}
.nav-toggle span{display:block; width:24px; height:2px; background:var(--navy-900); margin:5px 0; border-radius:2px; transition:.2s;}

/* Two lang-switch links exist in markup (one for the desktop bar, one that
   lives inside the collapsible mobile menu) so exactly one is ever visible
   at a given width -- never both at once. */
.main-nav .lang-switch-mobile{display:none;}

@media (max-width:960px){
  .main-nav{
    position:absolute; top:100%; inset-inline:0; background:#fff;
    flex-direction:column; align-items:stretch; padding:12px; gap:2px;
    border-bottom:1px solid var(--line); box-shadow:var(--shadow-md);
    display:none;
  }
  .main-nav.open{display:flex;}
  .main-nav a{padding:12px 16px;}
  .main-nav .lang-switch-mobile{display:inline-flex; margin-top:8px;}
  .nav-cta .lang-switch-desktop{display:none;}
  .nav-toggle{display:block;}
  .nav-cta .btn span.long{display:none;}
}

/* ---------- Hero ---------- */
.hero{
  position:relative; overflow:hidden;
  background:radial-gradient(1100px 520px at var(--glow-x) -10%, rgba(59,147,173,.35), transparent 60%), var(--navy-900);
  color:#fff; padding:120px 0 100px;
}
.hero::after{
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(11,31,46,0) 0%, var(--navy-900) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0 1px, transparent 1px 64px);
  pointer-events:none;
}
.hero .container{position:relative; z-index:1;}
.hero-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center;}
@media (max-width:900px){ .hero-grid{grid-template-columns:1fr;} }
.hero h1{color:#fff;}
.hero .lead{color:rgba(255,255,255,.78); font-size:1.1rem; max-width:520px;}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap; margin-top:30px;}
.hero-badges{display:flex; gap:28px; margin-top:52px; flex-wrap:wrap;}
.hero-badges div{border-inline-start:2px solid var(--orange-500); padding-inline-start:14px;}
.hero-badges strong{display:block; font-family:var(--font-heading); font-size:1.5rem; color:#fff;}
.hero-badges span{font-size:.82rem; color:rgba(255,255,255,.6);}

.hero-card{
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius); padding:28px; backdrop-filter:blur(6px);
}
.hero-card ul li{display:flex; gap:12px; align-items:flex-start; padding:12px 0; border-bottom:1px solid rgba(255,255,255,.1); color:rgba(255,255,255,.88); font-size:.95rem;}
.hero-card ul li:last-child{border-bottom:0;}
.hero-card .ic{width:22px; height:22px; flex-shrink:0; color:var(--orange-500);}

/* Small page hero (inner pages) */
.page-hero{
  background:linear-gradient(160deg,var(--navy-900),var(--navy-700));
  color:#fff; padding:70px 0 64px;
}
.page-hero h1{color:#fff; margin-bottom:12px;}
.breadcrumbs{font-size:.85rem; color:rgba(255,255,255,.6); margin-bottom:16px;}
.breadcrumbs a{color:rgba(255,255,255,.85);}
.breadcrumbs a:hover{color:#fff;}
.page-hero .lead{color:rgba(255,255,255,.75); max-width:640px;}

/* ---------- Cards / grids ---------- */
.grid{display:grid; gap:28px;}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-2{grid-template-columns:repeat(2,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);}
@media (max-width:920px){ .grid-3,.grid-4{grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px){ .grid-2,.grid-3,.grid-4{grid-template-columns:1fr;} }

.card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:32px; transition:.25s ease;
}
.card:hover{box-shadow:var(--shadow-md); transform:translateY(-4px); border-color:transparent;}
.card .icon{
  width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background:var(--teal-100); color:var(--teal-600); margin-bottom:20px;
}
.card .icon svg{width:26px; height:26px;}
.card h3{margin-bottom:10px;}
.card ul{margin-top:14px;}
.card ul li{position:relative; padding:5px 0 5px 20px; color:var(--muted); font-size:.92rem;}
html[dir="rtl"] .card ul li{padding:5px 20px 5px 0;}
.card ul li::before{content:""; position:absolute; inset-inline-start:0; top:14px; width:6px; height:6px; border-radius:50%; background:var(--orange-500);}
.card .more{display:inline-flex; align-items:center; gap:6px; margin-top:18px; font-weight:600; color:var(--teal-600); font-size:.9rem; transition:gap .2s;}
.card .more svg{width:14px; height:14px;}
html[dir="rtl"] .card .more svg, html[dir="rtl"] .icon-arrow svg{transform:scaleX(-1);}
.card:hover .more{gap:10px;}

.card-alt{background:var(--bg-alt); border-color:var(--bg-alt);}

/* Product / feature cards (RestoPlatform, Resto+) */
.product-card{
  background:linear-gradient(160deg,var(--navy-900),var(--navy-700)); color:#fff;
  border-radius:var(--radius); padding:32px; position:relative; overflow:hidden;
}
.product-card .icon{background:rgba(255,255,255,.12); color:var(--orange-500);}
.product-card h3{color:#fff;}
.product-card p{color:rgba(255,255,255,.78);}
.product-card .tag-name{
  display:inline-block; font-family:var(--font-heading); font-weight:700; font-size:1.05rem;
  color:#fff; background:rgba(255,255,255,.1); padding:4px 12px; border-radius:8px; margin-bottom:14px; letter-spacing:.02em;
}

/* Values grid */
.value-item{display:flex; gap:14px; padding:18px 0; border-bottom:1px solid var(--line);}
.value-item .icon{
  width:38px; height:38px; border-radius:10px; background:var(--teal-100); color:var(--teal-600);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.value-item .icon svg{width:18px; height:18px;}
.value-item h4{margin:0 0 4px; font-size:.98rem; color:var(--navy-900);}
.value-item p{margin:0; font-size:.88rem;}

/* Stat strip */
.stat-strip{background:var(--navy-900); color:#fff;}
.stat-strip .grid{grid-template-columns:repeat(4,1fr); gap:0;}
.stat-strip .stat{text-align:center; padding:40px 20px; border-inline-end:1px solid rgba(255,255,255,.1);}
.stat-strip .stat:last-child{border-inline-end:0;}
.stat-strip strong{display:block; font-family:var(--font-heading); font-size:2.1rem; color:var(--orange-500);}
.stat-strip span{font-size:.85rem; color:rgba(255,255,255,.7);}
@media (max-width:768px){ .stat-strip .grid{grid-template-columns:repeat(2,1fr);} .stat-strip .stat{border-bottom:1px solid rgba(255,255,255,.1); border-inline-end:0;} }

.band-alt{background:var(--bg-alt);}

/* Process / steps */
.steps{counter-reset:step; display:grid; grid-template-columns:repeat(4,1fr); gap:28px;}
@media (max-width:900px){ .steps{grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .steps{grid-template-columns:1fr;} }
.step{position:relative; padding-top:8px;}
.step::before{
  counter-increment:step; content:counter(step,decimal-leading-zero);
  font-family:var(--font-heading); font-weight:700; font-size:1.6rem; color:var(--teal-500);
  display:block; margin-bottom:12px;
}

/* CTA band */
.cta-band{
  background:linear-gradient(120deg,var(--teal-600),var(--teal-500));
  color:#fff; border-radius:var(--radius); padding:56px; text-align:center;
  margin:0 24px;
}
.cta-band h2{color:#fff; margin-bottom:12px;}
.cta-band p{color:rgba(255,255,255,.85); max-width:600px; margin:0 auto 28px;}
.cta-actions{display:flex; gap:14px; justify-content:center; flex-wrap:wrap;}

/* Contact */
.contact-grid{display:grid; grid-template-columns:.9fr 1.1fr; gap:48px;}
@media (max-width:860px){ .contact-grid{grid-template-columns:1fr;} }
.info-list li{display:flex; gap:16px; padding:18px 0; border-bottom:1px solid var(--line);}
.info-list li:first-child{padding-top:0;}
.info-list .icon{
  width:44px; height:44px; border-radius:12px; background:var(--teal-100); color:var(--teal-600);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.info-list .icon svg{width:20px; height:20px;}
.info-list h4{margin:0 0 4px; font-size:.95rem; color:var(--navy-900);}
.info-list p{margin:0; font-size:.92rem;}

.form-card{background:var(--bg-alt); border-radius:var(--radius); padding:36px;}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
@media (max-width:560px){ .form-row{grid-template-columns:1fr;} }
.field{margin-bottom:18px;}
.field label{display:block; font-size:.85rem; font-weight:600; color:var(--navy-800); margin-bottom:7px;}
.field input, .field textarea, .field select{
  width:100%; padding:13px 14px; border-radius:var(--radius-sm); border:1.5px solid var(--line);
  font-family:inherit; font-size:.95rem; background:#fff; color:var(--ink); transition:.2s;
}
.field input:focus, .field textarea:focus, .field select:focus{outline:none; border-color:var(--teal-500);}
.field textarea{min-height:130px; resize:vertical;}
.form-note{font-size:.8rem; color:var(--muted-2); margin-top:14px;}

/* Honeypot spam trap — hidden from sighted users, still present/focusable
   in the DOM so simple bots that skip display:none fields still fall for it. */
.hp-field{
  position:absolute; width:1px; height:1px; overflow:hidden;
  clip:rect(0 0 0 0); clip-path:inset(50%); white-space:nowrap; margin:-1px; padding:0; border:0;
}

/* Field-level validation error state */
.field.has-error input, .field.has-error textarea, .field.has-error select{
  border-color:#c0392b;
}
.field-err{
  display:block; font-size:.8rem; color:#c0392b; margin-top:6px; min-height:0;
}
.field-err:empty{margin-top:0;}

/* Form submit status banner (success / error) */
.form-status{
  margin-top:18px; padding:13px 16px; border-radius:var(--radius-sm); font-size:.9rem; font-weight:600;
}
.form-status.is-success{background:#e6f6ee; color:#1e7e4d; border:1px solid #bfe8d3;}
.form-status.is-error{background:#fdecea; color:#c0392b; border:1px solid #f5c6c0;}

/* Submit button loading state */
.btn.is-loading{opacity:.75; cursor:progress; pointer-events:none;}

.map-frame{border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); height:340px;}
.map-frame iframe{width:100%; height:100%; border:0;}

/* Footer */
.site-footer{background:var(--navy-900); color:rgba(255,255,255,.75); padding-top:72px;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.1);}
@media (max-width:860px){ .footer-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:560px){ .footer-grid{grid-template-columns:1fr;} }
.site-footer .brand{color:#fff;}
.site-footer .brand small{color:rgba(255,255,255,.5);}
.footer-about p{font-size:.92rem; margin:16px 0 20px;}
.footer-socials{display:flex; gap:10px;}
.footer-socials a{width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; transition:.2s;}
.footer-socials a:hover{background:var(--teal-500);}
.footer-socials svg{width:16px; height:16px; color:#fff;}
.site-footer h4{color:#fff; font-size:.95rem; margin-bottom:18px; font-family:var(--font-heading);}
.footer-links li{margin-bottom:10px;}
.footer-links a{font-size:.92rem; color:rgba(255,255,255,.68); transition:.2s;}
.footer-links a:hover{color:#fff;}
.footer-contact li{display:flex; gap:10px; margin-bottom:14px; font-size:.9rem; align-items:flex-start;}
.footer-contact svg{width:16px; height:16px; color:var(--orange-500); flex-shrink:0; margin-top:2px;}
.footer-bottom{display:flex; justify-content:space-between; align-items:flex-start; padding:22px 0; font-size:.82rem; color:rgba(255,255,255,.5); flex-wrap:wrap; gap:10px;}
.footer-bottom a{color:rgba(255,255,255,.7);}
.footer-bottom .legal{max-width:520px;}

/* Utilities */
.text-center{text-align:center;}
.mt-0{margin-top:0;}
.tag{display:inline-block; background:var(--orange-100); color:var(--orange-500); font-size:.72rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; padding:5px 12px; border-radius:999px; margin-bottom:14px;}
html[dir="rtl"] .tag{letter-spacing:0;}
.divider{height:1px; background:var(--line); margin:64px 0;}
.notice{
  display:flex; gap:14px; background:var(--orange-100); border:1px solid #f4d2b0; color:#8a4e14;
  padding:16px 18px; border-radius:var(--radius-sm); font-size:.88rem; margin-bottom:32px;
}
.notice svg{width:20px; height:20px; flex-shrink:0; margin-top:1px;}

/* ==========================================================================
   Arabic typography system (html[dir="rtl"] only — English/ltr pages are
   untouched). Centralizes size, weight, line-height and spacing for Cairo
   (headings) / Tajawal (body, nav, buttons, lists, labels) instead of
   one-off inline styles. Desktop values apply from 769px up; a single
   @media block below adjusts the few values that need to shrink further
   on phones while staying at or above the required minimums.
   ========================================================================== */
html[dir="rtl"]{
  --teal-300:#72c0d4; /* lighter brand teal, used only where teal text sits
                          on the dark navy hero/gradient backgrounds so it
                          keeps WCAG AA contrast (see .hero .eyebrow below) */
  --font-heading:'Cairo','Tajawal','Segoe UI',Tahoma,Arial,sans-serif;
  --font-body:'Tajawal','Cairo','Segoe UI',Tahoma,Arial,sans-serif;
}

/* Base body copy: 17px / 1.75 on desktop, comfortable reading measure for
   Arabic script (larger + looser than the Latin defaults). */
html[dir="rtl"] body{font-size:17px; line-height:1.75;}
html[dir="rtl"] p{font-size:17px; line-height:1.75; margin-bottom:1.15em;}

/* Headings: Cairo, no artificial letter-spacing, generous spacing beneath. */
html[dir="rtl"] h1{font-size:50px; line-height:1.3; margin-bottom:.55em;}
html[dir="rtl"] h2{font-size:36px; line-height:1.32; margin-bottom:.55em;}
html[dir="rtl"] h3{font-size:22px; line-height:1.4; margin-bottom:.5em;}

/* Hero / lead paragraphs */
html[dir="rtl"] .hero .lead,
html[dir="rtl"] .page-hero .lead{font-size:18px; line-height:1.75; font-weight:500;}

/* Navigation, buttons, lang switch: minimum 16px at every width */
html[dir="rtl"] .main-nav a,
html[dir="rtl"] .lang-switch,
html[dir="rtl"] .btn,
html[dir="rtl"] .card .more{font-size:16px;}

/* Service-card / list-item copy: 16-17px, roomier line spacing */
html[dir="rtl"] .card ul li,
html[dir="rtl"] .info-list p,
html[dir="rtl"] .hero-card ul li,
html[dir="rtl"] .value-item p,
html[dir="rtl"] .footer-about p,
html[dir="rtl"] .footer-links a,
html[dir="rtl"] .footer-contact li,
html[dir="rtl"] .service-intro{font-size:17px; line-height:1.75;}
html[dir="rtl"] .card ul li{padding-block:8px;}
html[dir="rtl"] .hero-card ul li{padding-block:14px;}

/* Eyebrows, breadcrumbs, tags and other small labels: 14px minimum, no
   uppercase transform and no artificial tracking on Arabic glyphs. */
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .breadcrumbs,
html[dir="rtl"] .tag,
html[dir="rtl"] .form-note,
html[dir="rtl"] .field-err,
html[dir="rtl"] .field label,
html[dir="rtl"] .stat-strip span,
html[dir="rtl"] .hero-badges span{font-size:14px;}
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .tag{text-transform:none; letter-spacing:0;}
html[dir="rtl"] .brand small,
html[dir="rtl"] .product-card .tag-name{letter-spacing:0;}

/* Weight 500 keeps Tajawal from reading too thin over dark backgrounds */
html[dir="rtl"] .hero-badges span,
html[dir="rtl"] .stat-strip span,
html[dir="rtl"] .breadcrumbs,
html[dir="rtl"] .footer-about p,
html[dir="rtl"] .footer-links a,
html[dir="rtl"] .footer-contact li,
html[dir="rtl"] .footer-bottom{font-weight:500;}

/* Extra breathing room between stacked buttons/actions in Arabic */
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .cta-actions{gap:16px;}

@media (max-width:768px){
  html[dir="rtl"] body{font-size:16px;}
  html[dir="rtl"] p{font-size:16px;}
  html[dir="rtl"] h1{font-size:36px;}
  html[dir="rtl"] h2{font-size:28px;}
  html[dir="rtl"] .card ul li,
  html[dir="rtl"] .info-list p,
  html[dir="rtl"] .hero-card ul li,
  html[dir="rtl"] .value-item p,
  html[dir="rtl"] .footer-about p,
  html[dir="rtl"] .footer-links a,
  html[dir="rtl"] .footer-contact li,
  html[dir="rtl"] .service-intro{font-size:16px;}
  html[dir="rtl"] .hero .lead,
  html[dir="rtl"] .page-hero .lead{font-size:17px;}
}

/* --------------------------------------------------------------------------
   Contrast: the hero eyebrow used the standard brand teal (--teal-600) on
   the dark navy hero background, which measures ~3.5:1 — below WCAG AA's
   4.5:1 for normal text. Swapped to a lighter teal tint that keeps the same
   brand hue at ~8:1 on the hero and ~5:1 even at the darker edge of the
   page-hero gradient. Secondary/label text on dark backgrounds already
   cleared AA but is nudged up for a safer margin rather than the bare
   minimum.
   -------------------------------------------------------------------------- */
html[dir="rtl"] .hero .eyebrow{color:var(--teal-300);}
html[dir="rtl"] .hero-badges span{color:rgba(255,255,255,.74);}
html[dir="rtl"] .stat-strip span{color:rgba(255,255,255,.78);}
html[dir="rtl"] .breadcrumbs{color:rgba(255,255,255,.72);}
html[dir="rtl"] .breadcrumbs a{color:rgba(255,255,255,.92);}

/* --------------------------------------------------------------------------
   Keyboard focus: interactive elements had no explicit focus style beyond
   the browser default (or, for form fields, only a border-color change).
   Adds a clearly visible, on-brand focus ring for keyboard users, scoped to
   the Arabic pages per this task's brief.
   -------------------------------------------------------------------------- */
html[dir="rtl"] a:focus-visible,
html[dir="rtl"] button:focus-visible,
html[dir="rtl"] .btn:focus-visible,
html[dir="rtl"] .lang-switch:focus-visible,
html[dir="rtl"] .nav-toggle:focus-visible{
  outline:2.5px solid var(--teal-500); outline-offset:2px; border-radius:6px;
}
html[dir="rtl"] .field input:focus-visible,
html[dir="rtl"] .field textarea:focus-visible,
html[dir="rtl"] .field select:focus-visible{
  outline:none; border-color:var(--teal-500);
  box-shadow:0 0 0 3px rgba(59,147,173,.25);
}
