/* ==========================================================================
   Sahari Al Araf Trading — Corporate Design System
   Palette sampled from the company logo:
     Deep Green  #17594B  (crescent, wordmark)
     Clay Brown  #96604A  (pump jack disc)
     Warm off-white and light warm grays.

   NOTE: the brown variables are still named --bronze* so that the hundreds of
   existing var(--bronze) references keep working. The values are the logo's
   clay brown, not the original bronze.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Noto+Sans+Arabic:wght@300;400;500;600;700;800&family=Sora:wght@400;500;600;700&display=swap');

:root {
  /* Brand */
  --green-950: #07261f;
  --green-900: #0b382e;
  --green-800: #114736;
  --green: #17594b;
  --green-600: #217562;
  --green-400: #4c9c89;
  --bronze: #96604a;        /* logo clay brown */
  --bronze-600: #7d4e3a;    /* darker, for text on light */
  --bronze-400: #ac7359;    /* hover */
  --bronze-300: #c08a6f;    /* lightened clay, for accents on dark green */
  --bronze-200: #ddc6b9;
  --bronze-50: #f7efe9;

  /* Neutrals — warmed to sit with the clay brown */
  --white: #ffffff;
  --gray-50: #f8faf9;
  --gray-100: #efedea;
  --gray-200: #e1ded9;
  --gray-300: #c8c3bb;
  --ink: #14120f;
  --muted: #5e6462;

  /* Type */
  --font-display: "Sora", "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-arabic: "Noto Sans Arabic", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Layout — Enterprise 120px Spacing System */
  --container: 1360px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 16px;
  --radius-lg: 24px;
  --header-h: 84px;

  /* Depth */
  --shadow-sm: 0 2px 4px rgba(11, 56, 46, .05), 0 4px 12px rgba(11, 56, 46, .04);
  --shadow-md: 0 6px 16px rgba(11, 56, 46, .07), 0 20px 45px rgba(11, 56, 46, .07);
  --shadow-lg: 0 12px 32px rgba(11, 56, 46, .09), 0 40px 80px rgba(11, 56, 46, .12);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* On dark green the logo's clay brown is too low-contrast for text, so every
   dark region re-points --bronze at the lightened tint. This automatically
   fixes inline `color:var(--bronze)` usages inside these blocks too. */
.hero,
.page-hero,
.section--dark,
.cta-band,
.partner-band,
.mega-feature,
.site-footer,
.topbar {
  --bronze: var(--bronze-300);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: -.02em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--bronze); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(4rem, 8vw, 7.5rem) 0; }
.section--tight { padding: clamp(3rem, 5vw, 4.5rem) 0; }
.section--gray { background: var(--gray-50); }
.section--dark { background: var(--green-900); color: #e8f0ed; }
.section--dark h2, .section--dark h3 { color: #fff; }
.grid { display: grid; gap: clamp(1.25rem, 2.4vw, 2rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

/* ---------- Section headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--bronze-600);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--bronze); }
.section--dark .eyebrow { color: var(--bronze); }
.section-head { max-width: 720px; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.lede { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--muted); }
.section--dark .lede { color: #b9cbc5; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: 100px; border: 1.5px solid transparent;
  font-family: var(--font-display); font-size: .95rem; font-weight: 600; letter-spacing: .01em;
  cursor: pointer; transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 17px; height: 17px; flex: none; }
.btn--primary { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-600); box-shadow: var(--shadow-md); }
/* Fixed clay tone rather than var(--bronze), so the button reads identically —
   and accessibly — on white and on dark green. */
.btn--bronze { background: #b0765c; color: #1c130e; }
.btn--bronze:hover { background: #c08a6f; }
.btn--ghost { border-color: rgba(255, 255, 255, .45); color: #fff; backdrop-filter: blur(8px); background: rgba(255, 255, 255, .08); }
.btn--ghost:hover { background: rgba(255, 255, 255, .18); border-color: #fff; }
.btn--outline { border-color: var(--gray-300); color: var(--green); background: #fff; }
.btn--outline:hover { border-color: var(--green); background: var(--green); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--green);
}
.link-arrow::after { content: "→"; transition: transform .3s var(--ease); }
.link-arrow:hover::after { transform: translateX(5px); }
[dir="rtl"] .link-arrow::after { content: "←"; }
[dir="rtl"] .link-arrow:hover::after { transform: translateX(-5px); }

/* ---------- Media placeholders (swap --img for real photography) ---------- */
.media {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background-color: var(--green-800);
  background-image:
    linear-gradient(135deg, rgba(23, 89, 75, .82), rgba(11, 56, 46, .92)),
    var(--img, none);
  background-size: cover; background-position: center;
}
.media::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 9px),
    radial-gradient(120% 90% at 15% 0%, rgba(192, 138, 111, .30), transparent 62%);
  pointer-events: none;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.topbar {
  background: var(--green-900); color: #a8c0b9;
  font-size: .82rem; letter-spacing: .01em;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.topbar a { color: #cfdedb; transition: color .25s; }
.topbar a:hover { color: var(--bronze); }
.topbar-list { display: flex; align-items: center; gap: 1.4rem; }
.topbar-list li { display: flex; align-items: center; gap: .45rem; }
.topbar svg { width: 14px; height: 14px; opacity: .75; }
.lang-toggle {
  border: 1px solid rgba(255, 255, 255, .22); border-radius: 100px;
  padding: .2rem .75rem; font-size: .75rem; font-weight: 600; letter-spacing: .08em;
}

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-md); background: rgba(255, 255, 255, .95); }
/* Eleven top-level items plus a CTA need more room than the content column. */
.topbar .container, .site-header .container { max-width: 1400px; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }

/* Logo */
.logo { display: flex; align-items: center; gap: .8rem; flex: none; }
.logo-mark { width: 54px; height: 54px; flex: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-ar { font-family: "Noto Kufi Arabic", "Segoe UI", system-ui, sans-serif; font-size: .78rem; font-weight: 600; color: var(--green); line-height: 1.5; }
.logo-name { font-family: var(--font-display); font-weight: 700; font-size: .96rem; color: var(--green-900); letter-spacing: -.01em; }
.logo-tag { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-top: .1rem; }

/* Primary menu */
.menu { display: flex; align-items: center; gap: .35rem; flex-shrink: 1; min-width: 0; }
.menu > li { position: relative; flex-shrink: 0; }
.menu > li > a {
  display: flex; align-items: center; gap: .25rem; white-space: nowrap;
  padding: .55rem .65rem; border-radius: 8px;
  font-family: var(--font-display); font-size: .88rem; font-weight: 500; color: #26332f;
  transition: color .25s, background .25s;
}
.menu > li > a:hover { color: var(--green); background: var(--gray-50); }
.menu > li > a .caret { width: 9px; height: 9px; transition: transform .3s var(--ease); }
.menu > li:hover > a .caret, .menu > li:focus-within > a .caret { transform: rotate(180deg); }
.menu > li > a::before {
  content: ""; position: absolute; left: .65rem; right: .65rem; bottom: 10px; height: 2px;
  background: var(--bronze); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.menu > li.is-active > a { color: var(--green); }
.menu > li.is-active > a::before { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: .8rem; flex-shrink: 0; }
.nav-actions .btn { padding: .7rem 1.25rem; font-size: .88rem; font-weight: 600; white-space: nowrap; flex-shrink: 0; }

/* Mega menu */
.mega {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 12px);
  width: min(920px, 88vw); padding: 1.75rem;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.menu > li:hover > .mega, .menu > li:focus-within > .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.mega-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 1.75rem; }
.mega-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .35rem 1.5rem; }
.mega-title {
  grid-column: 1 / -1; font-family: var(--font-display); font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--bronze-600); margin-bottom: .35rem;
}
.mega a.mega-link {
  display: block; padding: .5rem .65rem; border-radius: 9px; font-size: .9rem; color: #2b3835;
  transition: background .22s, color .22s, transform .22s var(--ease);
}
.mega a.mega-link:hover { background: var(--bronze-50); color: var(--green); transform: translateX(4px); }
.mega-feature {
  border-radius: var(--radius); padding: 1.4rem; color: #fff; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 210px;
  background:
    linear-gradient(160deg, rgba(23, 89, 75, .90), rgba(11, 56, 46, .96)),
    repeating-linear-gradient(125deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 10px);
}
.mega-feature h4 { font-size: 1.05rem; margin-bottom: .35rem; color: #fff; }
.mega-feature p { font-size: .85rem; color: #b9cbc5; margin-bottom: .9rem; }
.mega-feature .link-arrow { color: var(--bronze); }

/* Mobile nav */
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--gray-200); border-radius: 12px;
  background: #fff; cursor: pointer; place-items: center;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--green-900); position: relative; transition: background .2s; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--green-900);
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: clamp(600px, 85vh, 780px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--green-950);
  background-image:
    radial-gradient(80% 70% at 85% 15%, rgba(192, 138, 111, .28), transparent 65%),
    linear-gradient(135deg, #07261f 0%, #0b382e 50%, #114736 100%);
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: repeating-linear-gradient(120deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 16px);
}
.hero-inner { padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4rem); max-width: 960px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .65rem; margin-bottom: 1.5rem;
  padding: .5rem 1.15rem; border-radius: 100px;
  background: rgba(255, 255, 255, .10); border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #fff;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--bronze-300);
  box-shadow: 0 0 0 4px rgba(192, 138, 111, .30);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: .7; }
}
.hero h1 { color: #fff; max-width: 18ch; font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 700; line-height: 1.15; letter-spacing: -.03em; }
.hero h1 em { font-style: normal; color: var(--bronze-300); }
.hero-sub {
  font-family: var(--font-body); font-size: clamp(1.05rem, 1.6vw, 1.25rem); font-weight: 400; line-height: 1.65;
  color: #d1e4de; margin: 1.25rem 0 2.25rem; max-width: 62ch;
}
.hero-sub .sep { color: var(--bronze-300); margin: 0 .5rem; }

.hero-strip {
  position: relative; z-index: 2; margin-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(255, 255, 255, .16);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem; padding-top: 1.75rem;
}
.hero-strip div {
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius); padding: 1.25rem 1.4rem;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.hero-strip div:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .12); }
.hero-strip strong { display: block; font-family: var(--font-display); font-size: clamp(1.7rem, 2.5vw, 2.2rem); color: #fff; line-height: 1; margin-bottom: .25rem; }
.hero-strip span { font-size: .83rem; color: #b9cbc5; letter-spacing: .02em; font-weight: 500; }

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
  position: relative; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 1.9rem; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--bronze));
  transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--bronze-200); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 1.1rem;
  background: linear-gradient(145deg, var(--bronze-50), #fff);
  border: 1px solid var(--bronze-200); color: var(--green);
}
.card-icon svg { width: 25px; height: 25px; stroke-width: 1.6; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .95rem; margin-bottom: 1.1rem; }
.card-list { font-size: .88rem; color: var(--muted); }
.card-list li { position: relative; padding-left: 1.1rem; margin-bottom: .3rem; }
.card-list li::before { content: ""; position: absolute; left: 0; top: .62em; width: 5px; height: 5px; border-radius: 50%; background: var(--bronze); }

.media {
  background-color: var(--green-800);
  background-image: var(--img, none);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
  overflow: hidden;
}
.card .media, .p-card .p-thumb {
  width: 100%;
  height: 220px;
  background-color: #ffffff;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow: hidden;
  position: relative;
}
.card .media img, .p-thumb img {
  max-width: 100%;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform .35s var(--ease);
}
.card:hover .media img, .p-card:hover .p-thumb img {
  transform: scale(1.06);
}

/* Product cards */
.product-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 330px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.6rem; color: #fff;
  background-color: var(--green-800);
  background-image: linear-gradient(to top, rgba(11, 56, 46, .96) 12%, rgba(11, 56, 46, .45) 55%, rgba(11, 56, 46, .25) 100%), var(--img, none);
  background-size: cover; background-position: center;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.product-card::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(120deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 11px);
  transition: opacity .45s;
}
.product-card::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(23, 89, 75, .55), transparent 60%);
  opacity: 0; transition: opacity .45s var(--ease);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card:hover::after { opacity: 1; }
.product-card > * { position: relative; z-index: 2; }
.product-card .tag {
  align-self: flex-start; margin-bottom: auto;
  padding: .35rem .8rem; border-radius: 100px; font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  background: rgba(255, 255, 255, .13); border: 1px solid rgba(255, 255, 255, .25); backdrop-filter: blur(8px);
}
.product-card h3 { color: #fff; font-size: 1.28rem; margin-bottom: .4rem; }
.product-card p { font-size: .9rem; color: #c3d6d1; margin-bottom: 1rem; }
.product-card .reveal {
  max-height: 500px; opacity: 1; overflow: visible;
  transition: max-height .45s var(--ease), opacity .35s var(--ease), margin .45s var(--ease);
}
.product-card:hover .reveal, .product-card:focus-within .reveal { max-height: 220px; opacity: 1; }
.product-card .reveal ul { font-size: .84rem; color: #b9cbc5; margin-bottom: 1rem; }
.product-card .reveal li { padding-left: 1rem; position: relative; }
.product-card .reveal li::before { content: "▸"; position: absolute; left: 0; color: var(--bronze); }
.product-card .btn { padding: .7rem 1.25rem; font-size: .85rem; align-self: flex-start; }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: rgba(255, 255, 255, .12); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--green-900); padding: 2.2rem 1.6rem; text-align: center; }
.section--gray .stats { background: var(--gray-200); }
.section--gray .stat { background: #fff; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; line-height: 1; color: var(--bronze); letter-spacing: -.03em; }
.section--gray .stat .num { color: var(--green); }
.stat .label { display: block; margin-top: .6rem; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color: #a9c2bb; }
.section--gray .stat .label { color: var(--muted); }

/* ==========================================================================
   Feature / split blocks
   ========================================================================== */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split .media { min-height: clamp(320px, 40vw, 480px); }
.checklist li { position: relative; padding-left: 2rem; margin-bottom: .85rem; color: var(--muted); }
.checklist li strong { color: var(--ink); display: block; font-family: var(--font-display); font-size: .98rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .28em; width: 20px; height: 20px; border-radius: 50%;
  background: var(--bronze-50); border: 1px solid var(--bronze-200);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317594b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* Partnership band */
.partner-band {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; color: #fff;
  padding: clamp(2.5rem, 5vw, 4rem);
  background:
    linear-gradient(120deg, rgba(11, 56, 46, .97), rgba(23, 89, 75, .90)),
    repeating-linear-gradient(122deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 12px);
  border: 1px solid rgba(192, 138, 111, .3);
}
.partner-band h2 { color: #fff; }
.partner-logos { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.partner-chip {
  display: flex; align-items: center; gap: .75rem; padding: .85rem 1.35rem; border-radius: 12px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .18); backdrop-filter: blur(10px);
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
}
.partner-chip small { display: block; font-family: var(--font-body); font-weight: 400; font-size: .74rem; color: #a9c2bb; letter-spacing: .03em; }
.partner-x { color: var(--bronze); font-size: 1.3rem; }

/* Brand marquee */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 1rem; width: max-content; animation: slide 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.brand-tile {
  flex: none; min-width: 190px; height: 92px; display: grid; place-items: center; padding: 0 1.5rem;
  border: 1px solid var(--gray-200); border-radius: var(--radius); background: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: #56635f; letter-spacing: .02em;
  transition: color .3s, border-color .3s, box-shadow .3s;
}
.brand-tile:hover { color: var(--green); border-color: var(--bronze-200); box-shadow: var(--shadow-sm); }

/* Client logo grid */
.client-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1px; background: var(--gray-200); border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.client-cell { background: #fff; min-height: 118px; display: grid; place-items: center; padding: 1.25rem; text-align: center; transition: background .3s; }
.client-cell:hover { background: var(--gray-50); }
.client-cell span { font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: #4a5754; }
.client-cell small { display: block; font-family: var(--font-body); font-weight: 400; font-size: .72rem; color: var(--muted); margin-top: .2rem; }

/* Industries */
.industry {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 240px; padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: flex-end; color: #fff;
  background-color: var(--green-800);
  background-image: linear-gradient(to top, rgba(11, 56, 46, .94), rgba(11, 56, 46, .35)), var(--img, none);
  background-size: cover; background-position: center;
  transition: transform .4s var(--ease);
}
.industry:hover { transform: translateY(-5px); }
.industry h3 { font-size: 1.1rem; margin-bottom: .25rem; color: #fff; }
.industry p { font-size: .85rem; color: #b9cbc5; margin: 0; }

/* Projects */
.project { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; background: #fff; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.project:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project .media { border-radius: 0; height: 220px; }
.project-body { padding: 1.6rem; }
.project-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .9rem; }
.pill { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .75rem; border-radius: 100px; background: var(--bronze-50); color: var(--bronze-600); border: 1px solid var(--bronze-200); }
.pill--green { background: rgba(23, 89, 75, .08); color: var(--green); border-color: rgba(23, 89, 75, .18); }

/* Timeline */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--bronze), var(--gray-200)); }
.timeline li { position: relative; margin-bottom: 2rem; }
.timeline li::before { content: ""; position: absolute; left: -2.5rem; top: .35em; width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 3px solid var(--bronze); }
.timeline .year { font-family: var(--font-display); font-weight: 700; color: var(--green); font-size: 1.1rem; }

/* Accordion */
.accordion { border-top: 1px solid var(--gray-200); }
.acc-item { border-bottom: 1px solid var(--gray-200); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.35rem 0; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--ink);
  transition: color .25s;
}
.acc-trigger:hover { color: var(--green); }
.acc-trigger .plus { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--gray-300); display: grid; place-items: center; position: relative; transition: background .3s, border-color .3s, transform .3s var(--ease); }
.acc-trigger .plus::before, .acc-trigger .plus::after { content: ""; position: absolute; background: var(--green); border-radius: 2px; transition: transform .3s var(--ease), background .3s; }
.acc-trigger .plus::before { width: 12px; height: 2px; }
.acc-trigger .plus::after { width: 2px; height: 12px; }
.acc-trigger[aria-expanded="true"] .plus { background: var(--green); border-color: var(--green); }
.acc-trigger[aria-expanded="true"] .plus::before, .acc-trigger[aria-expanded="true"] .plus::after { background: #fff; }
.acc-trigger[aria-expanded="true"] .plus::after { transform: rotate(90deg) scaleX(0); }
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.acc-panel > div { overflow: hidden; }
.acc-trigger[aria-expanded="true"] + .acc-panel { grid-template-rows: 1fr; }
.acc-panel p, .acc-panel ul { color: var(--muted); font-size: .95rem; padding-bottom: 1.35rem; }

/* News */
.news-card { display: flex; flex-direction: column; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; background: #fff; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.news-card .media { border-radius: 0; height: 180px; }
.news-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.news-date { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--bronze-600); margin-bottom: .6rem; }
.news-card h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.news-card p { font-size: .9rem; color: var(--muted); flex: 1; }

/* Downloads */
.download {
  display: flex; align-items: center; gap: 1.15rem; padding: 1.35rem 1.5rem;
  border: 1px solid var(--gray-200); border-radius: var(--radius); background: #fff;
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease);
}
.download:hover { border-color: var(--bronze); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.download .ico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--bronze-50); border: 1px solid var(--bronze-200); display: grid; place-items: center; color: var(--green); }
.download .ico svg { width: 22px; height: 22px; }
.download strong { display: block; font-family: var(--font-display); font-size: .98rem; }
.download small { color: var(--muted); font-size: .82rem; }

/* Certifications */
.cert { text-align: center; padding: 2rem 1.25rem; border: 1px solid var(--gray-200); border-radius: var(--radius); background: #fff; transition: border-color .3s, transform .3s var(--ease); }
.cert:hover { border-color: var(--bronze); transform: translateY(-4px); }
.cert .seal {
  width: 74px; height: 74px; margin: 0 auto 1rem; border-radius: 50%;
  background: linear-gradient(145deg, var(--bronze-50), #fff); border: 2px solid var(--bronze-200);
  display: grid; place-items: center; color: var(--green);
}
.cert .seal svg { width: 32px; height: 32px; }
.cert h3 { font-size: 1rem; margin-bottom: .3rem; }
.cert p { font-size: .85rem; color: var(--muted); margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: clamp(1.75rem, 3.5vw, 2.75rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-display); font-size: .84rem; font-weight: 600; margin-bottom: .45rem; color: #2b3835; }
.field label .req { color: var(--bronze-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; font: inherit; font-size: .95rem; color: var(--ink);
  background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: 10px;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff; border-color: var(--green); box-shadow: 0 0 0 4px rgba(23, 89, 75, .10);
}
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.1rem; }
.consent { display: flex; gap: .65rem; align-items: flex-start; font-size: .85rem; color: var(--muted); margin-bottom: 1.25rem; }
.consent input { width: 18px; height: 18px; flex: none; margin-top: .2rem; accent-color: var(--green); }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 1rem; }
.form-status { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: 10px; font-size: .9rem; display: none; }
.form-status.is-visible { display: block; }
.form-status.ok { background: rgba(23, 89, 75, .08); color: var(--green); border: 1px solid rgba(23, 89, 75, .2); }
.form-status.err { background: #fdf1ec; color: #9a4a28; border: 1px solid #f0d3c6; }

/* Contact info tiles */
.info-tile { display: flex; gap: 1rem; padding: 1.4rem; border: 1px solid var(--gray-200); border-radius: var(--radius); background: #fff; }
.info-tile .ico { flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--green); color: #fff; display: grid; place-items: center; }
.info-tile .ico svg { width: 19px; height: 19px; }
.info-tile strong { display: block; font-family: var(--font-display); font-size: .9rem; margin-bottom: .2rem; }
.info-tile a, .info-tile p { color: var(--muted); font-size: .92rem; margin: 0; }
.info-tile a:hover { color: var(--green); }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero {
  position: relative; color: #fff; padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
  background-color: var(--green-900);
  background-image:
    linear-gradient(100deg, rgba(11, 56, 46, .95), rgba(17, 71, 54, .72)),
    var(--img, none);
  background-size: cover; background-position: center;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(60% 70% at 85% 15%, rgba(192, 138, 111, .28), transparent 60%),
    repeating-linear-gradient(118deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 13px);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.2vw, 3.3rem); max-width: 20ch; }
.page-hero p { color: #c3d6d1; max-width: 62ch; font-size: 1.05rem; margin: 0; }
.crumbs { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .82rem; color: #9fbab3; margin-bottom: 1.25rem; }
.crumbs a:hover { color: var(--bronze); }
.crumbs span { color: var(--bronze); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background:
    linear-gradient(115deg, var(--green-900), var(--green) 65%, var(--green-800)),
    repeating-linear-gradient(118deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 12px);
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 50% 0%, rgba(192, 138, 111, .28), transparent 65%); }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.cta-band p { color: #c3d6d1; max-width: 58ch; margin: 0 auto 2rem; }
.cta-band .btn-row { justify-content: center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--green-900); color: #a9c2bb; padding-top: clamp(3.5rem, 6vw, 5rem); font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: clamp(1.75rem, 3vw, 3rem); padding-bottom: 3rem; }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.15rem; }
.site-footer a { transition: color .25s, padding .25s; }
.site-footer a:hover { color: var(--bronze); }
.footer-links li { margin-bottom: .55rem; }
.footer-brand .logo-name { color: #fff; }
.footer-brand .logo-ar { color: var(--bronze-300); }
.footer-brand .logo-tag { color: #8aa8a1; }
.footer-brand p { margin: 1.25rem 0 1.5rem; max-width: 40ch; color: #a9c2bb; }
.social { display: flex; gap: .6rem; }
.social a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid rgba(255, 255, 255, .16); display: grid; place-items: center; transition: background .3s, border-color .3s, transform .3s var(--ease); }
.social a:hover { background: var(--bronze); border-color: var(--bronze); color: #21170f; transform: translateY(-3px); }
.social svg { width: 17px; height: 17px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12); padding: 1.5rem 0;
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  font-size: .84rem; color: #8aa8a1;
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 1.35rem; }

/* ==========================================================================
   Floating actions
   ========================================================================== */
.whatsapp-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: flex; align-items: center; gap: .65rem; padding: .85rem 1.15rem;
  border-radius: 100px; background: #25d366; color: #04301a;
  font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .38);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.whatsapp-fab svg { width: 22px; height: 22px; }
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 34px rgba(37, 211, 102, .45); }
.whatsapp-fab .fab-label { display: inline; }

.to-top {
  position: fixed; right: 22px; bottom: 88px; z-index: 89;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--gray-200);
  background: rgba(255, 255, 255, .9); backdrop-filter: blur(10px); color: var(--green);
  display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow-sm);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s, visibility .3s, transform .3s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 18px; height: 18px; }

/* ==========================================================================
   Scroll animations
   ========================================================================== */
[data-anim] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-anim].is-in { opacity: 1; transform: none; }
[data-anim="fade"] { transform: none; }
[data-anim="left"] { transform: translateX(-28px); }
[data-anim="right"] { transform: translateX(28px); }

/* ==========================================================================
   RTL groundwork (Arabic-ready) & Typography — Noto Sans Arabic
   ========================================================================== */
html[dir="rtl"],
html[lang="ar"],
[dir="rtl"] {
  --font-display: "Noto Sans Arabic", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Noto Sans Arabic", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-arabic: "Noto Sans Arabic", "Segoe UI", system-ui, -apple-system, sans-serif;
  direction: rtl;
  text-align: right;
}

html[dir="rtl"],
html[lang="ar"],
html[dir="rtl"] body,
html[dir="rtl"] p,
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4, html[dir="rtl"] h5, html[dir="rtl"] h6,
html[dir="rtl"] a,
html[dir="rtl"] span,
html[dir="rtl"] div,
html[dir="rtl"] li,
html[dir="rtl"] label,
html[dir="rtl"] input,
html[dir="rtl"] button,
html[dir="rtl"] select,
html[dir="rtl"] textarea,
html[dir="rtl"] table,
html[dir="rtl"] th,
html[dir="rtl"] td,
html[dir="rtl"] .btn,
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .menu,
html[dir="rtl"] .menu > li > a,
html[dir="rtl"] .dropdown,
html[dir="rtl"] .dropdown a,
html[dir="rtl"] .mega,
html[dir="rtl"] .mega a,
html[dir="rtl"] .mega-title,
html[dir="rtl"] .mobile-nav,
html[dir="rtl"] .topbar,
html[dir="rtl"] .site-header,
html[dir="rtl"] .site-footer,
html[dir="rtl"] .footer-brand,
html[dir="rtl"] .footer-col,
html[dir="rtl"] .footer-bottom,
html[dir="rtl"] .card,
html[dir="rtl"] .card-body,
html[dir="rtl"] .card h3,
html[dir="rtl"] .prod-card,
html[dir="rtl"] .prod-title,
html[dir="rtl"] .prod-desc,
html[dir="rtl"] .tag,
html[dir="rtl"] .hero h1,
html[dir="rtl"] .hero-sub,
html[dir="rtl"] .hero-badge,
html[dir="rtl"] .page-hero,
html[dir="rtl"] .modal,
html[dir="rtl"] .modal-content,
html[dir="rtl"] .modal-header,
html[dir="rtl"] .modal-body,
html[dir="rtl"] .modal-footer,
html[dir="rtl"] .stat .num,
html[dir="rtl"] .stat .label,
html[dir="rtl"] .chairman-quote,
html[dir="rtl"] .chairman-signature .name,
html[dir="rtl"] .chairman-signature .title,
html[dir="rtl"] .timeline .year,
html[dir="rtl"] .download strong,
html[dir="rtl"] .info-tile strong,
html[dir="rtl"] .partner-chip,
html[dir="rtl"] .client-cell span,
html[dir="rtl"] .logo-ar,
html[dir="rtl"] .logo-name,
html[dir="rtl"] .logo-tag {
  font-family: "Noto Sans Arabic", "Segoe UI", system-ui, -apple-system, sans-serif !important;
}

html[dir="rtl"] body {
  line-height: 1.75;
  letter-spacing: normal !important;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6 {
  line-height: 1.35;
  letter-spacing: normal !important;
  font-weight: 700;
}

html[dir="rtl"] p,
html[dir="rtl"] li,
html[dir="rtl"] span,
html[dir="rtl"] a,
html[dir="rtl"] label,
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select,
html[dir="rtl"] button,
html[dir="rtl"] .btn,
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .stat .num,
html[dir="rtl"] .logo-name {
  letter-spacing: normal !important;
}

html[dir="rtl"] .eyebrow::before { order: 2; }
html[dir="rtl"] .checklist li { padding-left: 0; padding-right: 2rem; text-align: right; }
html[dir="rtl"] .checklist li::before { left: auto; right: 0; }
html[dir="rtl"] .card-list li { padding-left: 0; padding-right: 1.1rem; text-align: right; }
html[dir="rtl"] .card-list li::before { left: auto; right: 0; }
html[dir="rtl"] .timeline { padding-left: 0; padding-right: 2.5rem; }
html[dir="rtl"] .timeline::before { left: auto; right: 9px; }
html[dir="rtl"] .timeline li::before { left: auto; right: -2.5rem; }
html[dir="rtl"] .whatsapp-fab, [dir="rtl"] .to-top { right: auto; left: 22px; }
html[dir="rtl"] .logo-text { text-align: right; }
html[dir="rtl"] .nav-actions { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .crumbs span { transform: scaleX(-1); display: inline-block; }

/* ---------- Chairman's Message Section ---------- */
.chairman-section {
  background: #fbfaf8;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.chairman-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.chairman-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.chairman-image-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.chairman-content {
  display: flex;
  flex-direction: column;
}
.chairman-quote {
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
  line-height: 1.8;
  color: var(--ink);
  position: relative;
}
.chairman-quote p {
  margin-bottom: 1.2rem;
}
.chairman-signature {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 2px solid var(--bronze-200);
}
.chairman-signature .name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-900);
}
.chairman-signature .title {
  font-size: .95rem;
  color: var(--bronze-600);
  font-weight: 600;
}

/* ---------- Heavy Equipment Tankers ---------- */
.eq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}
.eq-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.eq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.eq-card .media {
  height: 220px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.eq-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.eq-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .85rem;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 1rem;
}
.eq-badge--blue {
  background: #e6f0fa;
  color: #1e6091;
  border: 1px solid #b8d8f0;
}
.eq-badge--green {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}
.eq-badge--yellow {
  background: #fffde7;
  color: #d97706;
  border: 1px solid #fef08a;
}
.eq-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.eq-badge--blue .dot { background: #1e6091; }
.eq-badge--green .dot { background: #2e7d32; }
.eq-badge--yellow .dot { background: #d97706; }

/* ---------- Language Switcher Button ---------- */
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .9rem;
  border-radius: 100px;
  border: 1px solid var(--bronze-200);
  background: rgba(255, 255, 255, .15);
  color: inherit;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.topbar .lang-btn {
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.topbar .lang-btn:hover {
  background: rgba(255, 255, 255, .25);
  border-color: #fff;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 991px) {
  :root { --header-h: 74px; }
  .nav-toggle { display: grid; }
  .nav-actions .btn--quote { display: inline-flex; padding: .5rem .95rem; font-size: .81rem; flex-shrink: 0; }
  .menu {
    position: fixed; inset: calc(var(--header-h) + var(--topbar-h, 40px)) 0 0 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 1.25rem var(--gutter) 3rem;
    overflow-y: auto;
    transform: translateX(100%); transition: transform .38s var(--ease);
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
  }
  [dir="rtl"] .menu {
    transform: translateX(-100%);
  }
  .menu.is-open { transform: none !important; }
  .menu > li > a { padding: 1rem .25rem; font-size: 1.02rem; border-bottom: 1px solid var(--gray-100); border-radius: 0; }
  .menu > li > a::before { display: none; }
  .menu > li.is-active > a { color: var(--green); }
  .mega {
    position: static; transform: none; width: auto; opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; border: 0; background: var(--gray-50); border-radius: var(--radius);
    padding: 1rem; margin: 0 0 .5rem; display: none;
  }
  .menu > li.is-expanded > .mega { display: block; }
  .menu > li:hover > .mega { opacity: 1; }
  .mega-grid { grid-template-columns: 1fr; gap: 1rem; }
  .mega-feature { min-height: 150px; }
  .topbar-list li.hide-sm { display: none; }
  .chairman-split { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero-strip div { padding: 1.1rem 1rem 1.1rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .whatsapp-fab .fab-label { display: none; }
  .whatsapp-fab { padding: .9rem; }
  .mega-cols { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .nav-actions .btn { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [data-anim] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .topbar, .whatsapp-fab, .to-top, .cta-band, .site-footer { display: none; }
  body { font-size: 12pt; }
}

/* ---------- Product Catalogue & Modal ---------- */
.cat-section {
  margin-bottom: 4rem;
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.cat-header {
  margin-bottom: 2rem;
  padding-bottom: .8rem;
  border-bottom: 2px solid var(--gray-200);
}
.cat-title {
  font-size: 1.8rem;
  color: var(--green-900);
  margin-bottom: .3rem;
}
.cat-sub {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: .92rem;
}
.specs-table th, .specs-table td {
  padding: .65rem .85rem;
  border: 1px solid var(--gray-200);
}
.specs-table th {
  background: var(--gray-50);
  text-align: left;
  font-weight: 600;
  width: 40%;
}
[dir="rtl"] .specs-table th {
  text-align: right;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(14, 25, 22, .75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.modal-dialog {
  background: #fff;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform .3s var(--ease);
}
.modal-backdrop.is-open .modal-dialog {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: var(--gray-100);
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: background .2s;
}
[dir="rtl"] .modal-close {
  right: auto;
  left: 1.25rem;
}
.modal-close:hover {
  background: var(--gray-200);
}
.modal-body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

/* ==========================================================================
   Global Arabic Typography & RTL Enforcement
   ========================================================================== */
[dir="rtl"], html[lang="ar"], html[lang="ar"] body {
  font-family: var(--font-arabic), "Noto Sans Arabic", "Segoe UI", system-ui, sans-serif !important;
}

[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6,
[dir="rtl"] .eyebrow, [dir="rtl"] .cat-title, [dir="rtl"] .menu > li > a {
  font-family: "Noto Sans Arabic", var(--font-arabic), system-ui, sans-serif !important;
  letter-spacing: normal !important;
}

[dir="rtl"] .btn svg {
  transform: scaleX(-1);
}





/* ========================================================================== 
   Product Category Cards — Readability Fix
   Applies globally to all English and Arabic product category pages.
   ========================================================================== */
.product-card,
.product-card h1,
.product-card h2,
.product-card h3,
.product-card h4,
.product-card h5,
.product-card p,
.product-card .reveal,
.product-card .reveal ul,
.product-card .reveal li {
  color: #ffffff !important;
}

.product-card .tag {
  color: #ffffff !important;
}


/* Product-card readability override: applies to all English + Arabic product category pages */
.product-card h3 {
  color: #ffffff !important;
}

.product-card p,
.product-card .reveal ul,
.product-card .reveal li {
  color: #eef6f3 !important;
}

.product-card .tag {
  background: #f7f6f3 !important;
  color: #0b382e !important;
  border-color: rgba(255,255,255,.72) !important;
}
