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

:root {
  --red: #C8102E;
  --red-dark: #A00D25;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-400: #9CA3AF;
  --gray-500: #6A7282;
  --gray-600: #4A5565;
  --gray-700: #364153; 
  --green: #00A63E;
  --nav-h: 72px;
  --font-en: 'Montserrat', sans-serif;
  --font-ar: 'Cairo', sans-serif;
  --font: var(--font-en);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --t: .3s cubic-bezier(.4,0,.2,1);
}

/* Arabic font override */
html[lang="ar"] { --font: var(--font-ar); }
html[lang="ar"] body { font-size: 17px; }
html[lang="ar"] .section-eyebrow { letter-spacing: 0; }
html[lang="ar"] .fin-label { letter-spacing: 0; text-transform: none; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: var(--font); color: var(--black); background: var(--white); overflow-x: hidden; width: 100%; max-width: 100vw; }

/* ═══════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════ */
.container { width: 100%; max-width: 1416px; margin: 0 auto; padding: 0 40px; box-sizing: border-box; }
@media (max-width:1200px){ .container { padding: 0 32px; } }
@media (max-width:768px) { .container { padding: 0 20px; } }
@media (max-width:480px) { .container { padding: 0 16px; } }

.section { padding: 60px 0; width: 100%; box-sizing: border-box; }
@media (max-width:768px){ .section { padding: 48px 0; } }
@media (max-width:480px){ .section { padding: 32px 0; } }

.section-header { margin-bottom: 16px; }
@media (max-width:768px){ .section-header { margin-bottom: 12px; } }
.section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.section-title { font-size: clamp(22px, 3.8vw, 31px); font-weight: 700; color: var(--black); line-height: 1.2; }
.section-title.main-title { font-size: clamp(28px, 4.5vw, 40px); }
.section-rule { width: 48px; height: 3px; background: var(--red); margin-top: 12px; }
.section-rule.hidden { display: none; }
html[lang="ar"] .section-rule { margin-right: 0; }
.section-body { font-size: 16px; line-height: 1.85; color: var(--gray-700); margin-top: 16px; max-width: 640px; }

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); background: var(--black);
  display: flex; align-items: center;
  transition: box-shadow var(--t);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.5); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { height: 36px; width: auto; object-fit: contain; }
.nav-logo-badge { background: var(--red); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px; letter-spacing: .5px; }
.nav-logo-text { color: #fff; font-size: 14px; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255,255,255,.6); font-size: 13px; font-weight: 600; text-decoration: none; transition: color var(--t); white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

/* Download btn nav */
.nav-dl { background: var(--red); color: #fff; font-size: 12px; font-weight: 700; padding: 8px 16px; border-radius: 6px; border: none; cursor: pointer; font-family: var(--font); transition: background var(--t); white-space: nowrap; }
.nav-dl:hover { background: var(--red-dark); }

/* Language switch badge */
.lang-badge { display: inline-flex; transition: opacity var(--t), transform var(--t); }
.lang-badge:hover { opacity: .85; transform: translateY(-1px); }
.lang-badge svg { height: 32px; width: auto; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; margin-left: 8px; }
html[lang="ar"] .nav-hamburger { margin-left: 0; margin-right: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--t); }

.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--black); padding: 20px; z-index: 999;
  flex-direction: column; gap: 4px;
  border-top: 1px solid rgba(255,255,255,.1);
  max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  width: 100%; box-sizing: border-box;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { color: rgba(255,255,255,.7); font-size: 15px; font-weight: 600; text-decoration: none; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.nav-mobile a.active { color: var(--red); }


@media (max-width:1100px){ .nav-links { display: none; } .nav-hamburger { display: flex; } }
@media (max-width:768px) { .nav-dl { display: none; } }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--black); overflow: hidden; padding-top: var(--nav-h);
  width: 100%;
}
.hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(to bottom, rgba(26,26,26,.7) 0%, rgba(26,26,26,.55) 40%, rgba(26,26,26,.85) 100%),
    radial-gradient(ellipse 70% 70% at 80% 50%, rgba(200,16,46,.18) 0%, transparent 70%),
    url('assets/header.jpg') center/cover no-repeat;
}
html[lang="ar"] .hero-bg {
  background: 
    linear-gradient(to bottom, rgba(26,26,26,.7) 0%, rgba(26,26,26,.55) 40%, rgba(26,26,26,.85) 100%),
    radial-gradient(ellipse 70% 70% at 20% 50%, rgba(200,16,46,.18) 0%, transparent 70%),
    url('assets/header.jpg') center/cover no-repeat;
}
.hero-grid {
  position: absolute; inset: 0; opacity: .035;
  background-image: linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; padding: 80px 0 120px; width: 100%; box-sizing: border-box; }
@media (max-width:480px){ .hero-content { padding: 48px 0 64px; } }
.hero-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; width: 100%; box-sizing: border-box; }
@media (max-width:900px){ .hero-inner { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width:768px){ .hero-inner { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width:600px){ .hero-inner { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width:480px){ .hero-inner { gap: 20px; } }

.hero-eyebrow { display: none; }

.hero-title { font-size: clamp(42px, 7vw, 80px); font-weight: 800; color: #fff; line-height: 1.05; margin-bottom: 28px; opacity: 0; animation: fadeUp .8s .3s forwards; word-wrap: break-word; overflow-wrap: break-word; }
html[lang="ar"] .hero-title { line-height: 1.2; font-size: clamp(38px, 6vw, 72px); }
@media (max-width:900px){ .hero-title { margin-bottom: 24px; font-size: clamp(32px, 6vw, 56px); } }
@media (max-width:768px){ .hero-title { margin-bottom: 20px; font-size: clamp(28px, 5.5vw, 48px); } }
@media (max-width:600px){ .hero-title { margin-bottom: 16px; font-size: clamp(24px, 5vw, 40px); } }
@media (max-width:480px){ .hero-title { margin-bottom: 14px; font-size: clamp(20px, 5vw, 32px); } }
@media (max-width:375px){ .hero-title { margin-bottom: 12px; font-size: clamp(18px, 4.5vw, 28px); } }
.hero-title span { color: var(--red); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 36px; opacity: 0; animation: fadeUp .8s .45s forwards; }
html[lang="ar"] .hero-sub { max-width: 520px; }
@media (max-width:900px){ .hero-sub { font-size: 15px; margin-bottom: 28px; } }
@media (max-width:768px){ .hero-sub { font-size: 14px; margin-bottom: 24px; } }
@media (max-width:600px){ .hero-sub { font-size: 13px; margin-bottom: 20px; } }
@media (max-width:480px){ .hero-sub { font-size: 13px; margin-bottom: 18px; } }
@media (max-width:375px){ .hero-sub { font-size: 12px; margin-bottom: 16px; } }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; opacity: 0; animation: fadeUp .8s .6s forwards; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; font-size: 14px; font-weight: 700; padding: 14px 28px; border-radius: var(--radius-sm); border: none; cursor: pointer; font-family: var(--font); transition: background var(--t), transform var(--t); white-space: nowrap; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
@media (max-width:768px){ .btn-primary { font-size: 13px; padding: 12px 24px; gap: 6px; } }
@media (max-width:600px){ .btn-primary { font-size: 12px; padding: 10px 20px; } }
@media (max-width:480px){ .btn-primary { font-size: 12px; padding: 10px 18px; } }
.btn-secondary { display: none; }

.hero-badge { border: 4px solid #fff; padding: 12px; opacity: 0; animation: fadeUp .8s .75s forwards; flex-shrink: 0; width: 150px; height: 150px; display: flex; align-items: center; justify-content: center; box-sizing: border-box; }
.hero-badge-text { font-size: 26px; font-weight: 700; color: #fff; line-height: 1.1; text-align: right; word-wrap: break-word; overflow-wrap: break-word; }
html[lang="ar"] .hero-badge-text { text-align: left; }
.hero-badge-text span { display: block; }
@media (max-width:900px){ .hero-badge { width: 130px; height: 130px; border-width: 3px; padding: 10px; } .hero-badge-text { font-size: 24px; } }
@media (max-width:768px){ .hero-badge { width: 120px; height: 120px; border-width: 3px; padding: 10px; } .hero-badge-text { font-size: 20px; line-height: 1.1; } }
@media (max-width:600px){ .hero-badge { width: 110px; height: 110px; border-width: 2px; padding: 8px; } .hero-badge-text { font-size: 18px; line-height: 1.05; } }
@media (max-width:480px){ .hero-badge { width: 100px; height: 100px; border-width: 2px; padding: 8px; } .hero-badge-text { font-size: 16px; line-height: 1.05; } }
@media (max-width:375px){ .hero-badge { width: 90px; height: 90px; border-width: 2px; padding: 6px; } .hero-badge-text { font-size: 14px; line-height: 1; } }

.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0; opacity: 0; animation: fadeIn 1s 1.1s forwards; }
.hero-scroll-line { display: none; }
.hero-scroll-text { display: none; }
.hero-scroll-arrow { width: 32px; height: 32px; animation: scrollBounce 2.5s ease-in-out infinite; }

/* ═══════════════════════════════════════════════
   BRAND PORTFOLIO
═══════════════════════════════════════════════ */
.brand-section { padding: 48px 0; }
@media (max-width:768px){ .brand-section { padding: 32px 0; } }
.brand-card {
  background: var(--white); box-shadow: var(--shadow-lg); border-radius: var(--radius-lg);
  display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; min-height: 420px;
  width: 100%; box-sizing: border-box;
}
@media (max-width:900px){ .brand-card { grid-template-columns: 1fr; min-height: auto; } }
@media (max-width:480px){ .brand-card { min-height: auto; } }
.brand-content { padding: 36px 48px; display: flex; flex-direction: column; justify-content: center; }
@media (max-width:900px){ .brand-content { padding: 32px 24px; } }
@media (max-width:480px){ .brand-content { padding: 20px 16px; } }
.brand-title { font-size: clamp(32px, 4vw, 48px); font-weight: 700; line-height: 1; margin-bottom: 24px; }
@media (max-width:480px){ .brand-title { font-size: clamp(24px, 5vw, 32px); margin-bottom: 16px; } }
.brand-title span { color: var(--red); }
.brand-desc { font-size: 16px; line-height: 1.625; color: var(--gray-700); margin-bottom: 24px; }
@media (max-width:480px){ .brand-desc { font-size: 14px; margin-bottom: 16px; } }
.brand-list { list-style: none; padding: 0; margin: 0 0 24px; }
.brand-row { display: flex; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--gray-200); }
.brand-row:first-child { border-top: 1px solid var(--gray-200); }
.brand-logo { width: 100px; flex-shrink: 0; display: flex; align-items: center; }
.brand-logo img { height: 28px; width: auto; object-fit: contain; }
.brand-cat { flex: 1; font-size: 14px; color: var(--gray-600); }
.brand-arrow { width: 24px; height: 24px; color: var(--gray-400); flex-shrink: 0; }
html[lang="ar"] .brand-arrow { transform: scaleX(-1); }
.brand-arrow-btn { background: none; border: none; cursor: pointer; padding: 0; display: flex; align-items: center; justify-content: center; }
.brand-more { display: inline-flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 500; color: var(--red); text-decoration: none; transition: gap var(--t); }
.brand-more:hover { gap: 12px; }
.brand-more svg { flex-shrink: 0; }
html[lang="ar"] .brand-more svg { transform: scaleX(-1); }

/* Brand Modal — Figma design */
.brand-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 2000;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.brand-modal-overlay.open { opacity: 1; pointer-events: all; }

.brand-modal {
  background: #FFFFFF;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1), 0px 4px 6px -4px rgba(0,0,0,0.1);
  border-radius: 16px;
  max-width: 896px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  padding: 42px 33px 48px;
  position: relative;
  transform: translateY(20px) scale(.97);
  transition: transform .3s ease;
  box-sizing: border-box;
}
.brand-modal-overlay.open .brand-modal { transform: translateY(0) scale(1); }
@media (max-width:600px){ .brand-modal { padding: 28px 16px; max-width: calc(100% - 32px); } }

.brand-modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 21px; margin-bottom: 0;
}

.brand-modal-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 30px; line-height: 48px;
  color: var(--black); margin: 0;
}
.brand-modal-title span { color: #C8102E; }

.brand-modal-close {
  width: 30px; height: 30px; background: none; border: none;
  cursor: pointer; color: var(--black); transition: color var(--t);
  display: flex; align-items: center; justify-content: center;
}
.brand-modal-close:hover { color: var(--red); }
.brand-modal-close svg { width: 22px; height: 22px; }

.brand-modal-divider {
  height: 1px; background: var(--gray-200);
  margin: 12px 0 22px;
}

.brand-modal-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
@media (max-width:560px){ .brand-modal-grid { grid-template-columns: 1fr; } }

.brand-modal-item {
  background: #FAFAFA; border-radius: 10px;
  padding: 20px 28px; min-height: 148px;
  display: flex; flex-direction: column; gap: 12px;
  justify-content: flex-end;
}

.brand-modal-item--tall { min-height: 148px; }

.brand-modal-logo {
  flex: 1; display: flex; align-items: center;
}
.brand-modal-logo img {
  max-height: 80px; max-width: 100%; width: auto; object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-modal-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 24px; line-height: 30px;
  color: #4A5565; display: flex; align-items: center;
  flex: 1;
}
@media (max-width:560px){ .brand-modal-name { font-size: 20px; } }

.brand-modal-cat {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400; font-size: 14px; line-height: 20px;
  color: #4A5565; display: flex; align-items: center;
}
.brand-img { position: relative; overflow: hidden; }
.brand-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width:900px){ .brand-img { aspect-ratio: 4/3; } }

/* ═══════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 584fr 532fr; gap: 40px; align-items: start; width: 100%; box-sizing: border-box; }
@media (max-width:900px){ .about-grid { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width:480px){ .about-grid { grid-template-columns: 1fr; gap: 16px; } }
.about-img-wrap { border-radius: var(--radius-sm); overflow: hidden; background: var(--gray-100); aspect-ratio: 584/346; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-text { display: flex; flex-direction: column; gap: 16px; }
.about-text p { font-size: 16px; line-height: 1.625; color: var(--gray-700); }
.about-dl { display: inline-flex; align-items: center; gap: 10px; background: var(--red); color: #fff; font-size: 16px; font-weight: 500; padding: 12px 24px; border-radius: var(--radius-sm); border: none; cursor: pointer; font-family: var(--font); transition: background var(--t), transform var(--t); white-space: nowrap; margin-top: 8px; width: fit-content; text-decoration: none; }
.about-dl:hover { background: var(--red-dark); transform: translateY(-2px); }
.about-dl svg { flex-shrink: 0; }

/* Business Model */
.bm-title { font-size: 25px; font-weight: 700; color: var(--black); line-height: 1.2; margin-bottom: 24px; }
@media (max-width:480px){ .bm-title { font-size: 20px; margin-bottom: 16px; } }
.bm-list { display: flex; flex-direction: column; gap: 16px; }
.bm-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); overflow: hidden; transition: var(--t); }
.bm-item:hover { box-shadow: var(--shadow-md); border-color: var(--red); }
.bm-item-header { display: flex; align-items: center; justify-content: space-between; padding: 24px; cursor: pointer; }
.bm-item-text { font-size: 16px; font-weight: 700; color: var(--black); }
.bm-item-icon { width: 20px; height: 20px; color: var(--black); flex-shrink: 0; transition: transform var(--t); }
.bm-item.open .bm-item-icon { transform: rotate(45deg); }
.bm-item-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.bm-item-body p { padding: 0 24px 24px; font-size: 14px; line-height: 1.7; color: var(--gray-600); margin: 0; }
.bm-item.open .bm-item-body { max-height: 200px; }

/* ═══════════════════════════════════════════════
   2025 HIGHLIGHTS (redesigned)
═══════════════════════════════════════════════ */
.hl-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
@media (max-width:480px){ .hl-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 24px; } }
.hl-title { font-size: 25px; font-weight: 700; color: var(--black); line-height: 1.2; }
@media (max-width:480px){ .hl-title { font-size: 20px; } }
.hl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; width: 100%; box-sizing: border-box; }
@media (max-width:1024px){ .hl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:480px) { .hl-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

.hl-card {
  background: linear-gradient(135deg, #FAFAFA 0%, #FFFFFF 100%);
  border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  padding: 25px; min-height: 110px;
}
@media (max-width:480px){ .hl-card { padding: 16px; min-height: 90px; } }
.hl-val { font-size: 30px; font-weight: 700; color: var(--red); line-height: 1.2; margin-bottom: 8px; font-family: var(--font-en) !important; }
@media (max-width:480px){ .hl-val { font-size: 22px; margin-bottom: 6px; } }
.hl-val span { font-size: 18px; font-weight: 700; }
.hl-label { font-size: 14px; color: var(--gray-600); }

/* ═══════════════════════════════════════════════
   GEO REVENUE BREAKDOWN
═══════════════════════════════════════════════ */
.grb-card { background: #000; border-radius: var(--radius-md); display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; width: 100%; box-sizing: border-box; }
@media (max-width:900px){ .grb-card { grid-template-columns: 1fr; } }
@media (max-width:480px){ .grb-card { border-radius: var(--radius-sm); } }
.grb-left { padding: 32px; }
@media (max-width:480px){ .grb-left { padding: 20px; } }
.grb-title { font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 16px; }
@media (max-width:480px){ .grb-title { font-size: 22px; margin-bottom: 12px; } }
.grb-total { font-size: 30px; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 8px; font-family: var(--font-en) !important; }
@media (max-width:480px){ .grb-total { font-size: 24px; margin-bottom: 6px; } }
.grb-total span { color: var(--red); }
.grb-subtitle { font-size: 16px; color: #D1D5DC; margin-bottom: 24px; }
.grb-bar-row { margin-bottom: 16px; }
.grb-bar-meta { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 16px; color: #fff; }
.grb-bar-pct { font-weight: 700; }
.grb-bar-track { height: 8px; background: rgba(255,255,255,.2); border-radius: 99px; overflow: hidden; }
.grb-bar-fill { height: 8px; border-radius: 99px; }
.grb-bar-fill.red { background: var(--red); }
.grb-bar-fill.white { background: #fff; }
.grb-right { padding: 32px; display: flex; align-items: center; }
@media (max-width:900px){ .grb-right { padding: 0 32px 32px; } }
@media (max-width:480px){ .grb-right { padding: 0 20px 20px; } }
.grb-table-wrap { background: rgba(255,255,255,.1); border-radius: var(--radius-sm); padding: 24px; width: 100%; }
.grb-table { width: 100%; border-collapse: collapse; }
.grb-table th { font-size: 16px; font-weight: 700; color: #fff; padding: 0 0 16px; text-align: left; }
html[lang="ar"] .grb-table th { text-align: right; }
.grb-table th:not(:first-child) { text-align: right; }
html[lang="ar"] .grb-table th:not(:first-child) { text-align: left; }
.grb-table td { font-size: 16px; color: #fff; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.1); }
.grb-table td:not(:first-child) { text-align: right; font-weight: 700; font-family: var(--font-en) !important; }
html[lang="ar"] .grb-table td:not(:first-child) { text-align: left; }
.grb-hi { color: var(--red) !important; }
.grb-total-row td { font-weight: 700 !important; }

/* ═══════════════════════════════════════════════
   LEADERSHIP
═══════════════════════════════════════════════ */
.leadership { background: var(--gray-50); }
.leadership .section-title { font-size: clamp(28px, 4.5vw, 40px); }
.leadership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; width: 100%; box-sizing: border-box; }
@media (max-width:768px){ .leadership-grid { grid-template-columns: 1fr; } }
.leader-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow var(--t); }
.leader-card:hover { box-shadow: var(--shadow-lg); }
.leader-img { width: 100%; aspect-ratio: 16/10; background: var(--gray-200); overflow: hidden; }
.leader-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.leader-info { padding: 24px; }
.leader-role { font-size: 13px; color: var(--red); font-weight: 600; margin-bottom: 6px; }
.leader-name { font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 12px; }
.leader-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--red); text-decoration: none; transition: gap var(--t); }
.leader-link:hover { gap: 10px; }
html[lang="ar"] .leader-link svg { transform: scaleX(-1); }

/* Message Modal (Chairman / CEO) */
.msg-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 2000;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.msg-modal-overlay.open { opacity: 1; pointer-events: all; }
.msg-modal {
  background: #fff; border-radius: var(--radius-md); max-width: 896px; width: 100%;
  max-height: 90vh; overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(.97); transition: transform .3s ease;
  box-sizing: border-box;
}
.msg-modal-overlay.open .msg-modal { transform: translateY(0) scale(1); }
.msg-modal-header {
  background: linear-gradient(90deg, #C8102E 0%, #A00D25 100%);
  padding: 24px 43px; display: flex; justify-content: space-between; align-items: center;
  border-radius: var(--radius-md) var(--radius-md) 0 0; flex-shrink: 0;
}
html[lang="ar"] .msg-modal-header { background: linear-gradient(270deg, #C8102E 0%, #A00D25 100%); }
.msg-modal-eyebrow { font-size: 14px; font-weight: 400; color: #fff; opacity: .85; margin-bottom: 4px; }
.msg-modal-name { font-size: 30px; font-weight: 700; color: #fff; line-height: 1.3; }
.msg-modal-role { font-size: 18px; font-weight: 400; color: #fff; opacity: .85; margin-top: 4px; }
.msg-modal-close { background: none; border: none; color: #fff; cursor: pointer; padding: 4px; transition: opacity var(--t); flex-shrink: 0; }
.msg-modal-close:hover { opacity: .7; }
.msg-modal-body {
  padding: 34px 58px 48px; overflow-y: auto; flex: 1;
  font-size: 16px; line-height: 1.7; color: var(--black);
}
.msg-modal-body h4 { font-size: 18px; font-weight: 700; margin: 28px 0 12px; color: var(--black); }
.msg-modal-body p { margin-bottom: 16px; }
.msg-modal-body ul { margin: 0 0 16px 20px; }
html[lang="ar"] .msg-modal-body ul { margin: 0 20px 16px 0; }
.msg-modal-body li { margin-bottom: 6px; }
@media (max-width:600px){
  .msg-modal-header { padding: 20px 24px; }
  .msg-modal-name { font-size: 22px; }
  .msg-modal-role { font-size: 14px; }
  .msg-modal-body { padding: 24px; }
}

/* Quarter cards inside CEO message modal */
.msg-quarters-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 16px 0 24px; }
@media (max-width:600px){ .msg-quarters-grid { grid-template-columns: 1fr; } }
.msg-quarter-card {
  background: #FAFAFA; border-radius: 10px; padding: 21px;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 14px; line-height: 1.45; color: var(--black);
}
.msg-quarter-card strong { font-weight: 700; margin-bottom: 4px; display: block; color: var(--red); }
.msg-quarter-card span { display: block; font-weight: 400; color: var(--black); }
.msg-quarter-card span::before { content: '· '; }

/* ═══════════════════════════════════════════════
   STAKEHOLDER ENGAGEMENT
═══════════════════════════════════════════════ */
.stake-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; width: 100%; box-sizing: border-box; }
@media (max-width:1024px){ .stake-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:480px) { .stake-grid { grid-template-columns: 1fr; } }
.stake-card { background: linear-gradient(135deg, #FAFAFA 0%, #FFFFFF 100%); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 25px; min-height: 178px; }
@media (max-width:480px){ .stake-card { padding: 16px; min-height: auto; } }
.stake-icon { height: 40px; margin-bottom: 16px; }
.stake-icon img { height: 40px; width: auto; }
.stake-name { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.stake-desc { font-size: 14px; line-height: 1.4; color: var(--gray-600); }

/* ═══════════════════════════════════════════════
   OPERATING PERFORMANCE
═══════════════════════════════════════════════ */
.op-section { background: var(--gray-50); }
.op-card { border-radius: var(--radius-md); padding: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-bottom: 24px; width: 100%; box-sizing: border-box; }
@media (max-width:768px){ .op-card { grid-template-columns: 1fr; gap: 24px; padding: 24px; } }
@media (max-width:480px){ .op-card { padding: 16px; gap: 16px; margin-bottom: 16px; } }
.op-card.light { background: var(--white); border: 1px solid var(--gray-200); }
.op-card.dark { background: #000; color: #fff; }
.op-card.dark .op-subtitle, .op-card.dark .op-desc { color: rgba(255,255,255,.7); }
.op-card.dark .op-num { color: #fff; }
.op-subtitle { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 12px; }
.op-num { font-size: 64px; font-weight: 700; color: var(--red); line-height: 1; margin-bottom: 8px; font-family: var(--font-en) !important; }
.op-showrooms { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.op-card.dark .op-showrooms { color: #fff; }
.op-desc { font-size: 14px; line-height: 1.5; color: var(--gray-600); }
.op-table-title { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.op-table { width: 100%; border-collapse: collapse; }
.op-table td { padding: 10px 0; font-size: 14px; border-bottom: 1px solid var(--gray-200); }
.op-card.dark .op-table td { border-bottom-color: rgba(255,255,255,.15); color: #fff; }
.op-table td:last-child { text-align: right; font-weight: 700; color: var(--red); font-family: var(--font-en) !important; }
.op-card.dark .op-table td:last-child { color: var(--red); }
html[lang="ar"] .op-table td:last-child { text-align: left; }

/* ═══════════════════════════════════════════════
   GEOGRAPHIC FOOTPRINT (redesigned)
═══════════════════════════════════════════════ */
.geo-desc {
  background: transparent; border-radius: 0; padding: 0;
  font-size: 16px; line-height: 1.625; color: var(--gray-700); margin-bottom: 0;
}
#history .geo-desc { margin-bottom: 0; }
.geo-map { 
  background: transparent; border-radius: 0;
  box-shadow: none; margin-bottom: 0; margin-top: 0; overflow: hidden;
}
.geo-map img { width: 100%; height: auto; display: block; border-radius: 0; }
.geo-countries { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; width: 100%; box-sizing: border-box; }
@media (max-width:1024px){ .geo-countries { grid-template-columns: repeat(3, 1fr); } }
@media (max-width:600px) { .geo-countries { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:480px) { .geo-countries { grid-template-columns: 1fr; } }

.geo-country-card {
  background: var(--white); border-radius: var(--radius-md); padding: 24px 16px;
  text-align: center; box-shadow: var(--shadow-lg); transition: transform var(--t), box-shadow var(--t);
  width: 100%; box-sizing: border-box;
}
.geo-country-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -8px rgba(0,0,0,.15); }
.geo-country-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.geo-country-icon.red { background: var(--red); }
.geo-country-icon.dark { background: var(--black); }
.geo-country-icon img { width: 32px; height: 32px; object-fit: contain; }
.geo-country-num { font-size: 36px; font-weight: 700; color: var(--black); line-height: 1.1; margin-bottom: 8px; font-family: var(--font-en) !important; }
.geo-country-name { font-size: 14px; font-weight: 400; color: var(--gray-600); letter-spacing: .35px; text-transform: uppercase; margin-bottom: 16px; }
html[lang="ar"] .geo-country-name { letter-spacing: 0; text-transform: none; }
.geo-country-divider { height: 1px; background: #E5E7EB; margin: 0 0 12px; }
.geo-country-pct { font-size: 12px; color: var(--gray-500); }

/* Geo Banner */
.geo-banner {
  background: linear-gradient(90deg, #C8102E 0%, #A00D25 100%);
  border-radius: var(--radius-md); padding: 24px 32px;
  display: flex; justify-content: center; align-items: center; gap: 32px;
  margin-top: 24px;
}
html[lang="ar"] .geo-banner { background: linear-gradient(270deg, #C8102E 0%, #A00D25 100%); }
.geo-banner-stat { text-align: center; }
.geo-banner-divider { width: 1px; height: 60px; background: rgba(255,255,255,.3); }
.geo-banner-label { font-size: 12px; font-weight: 400; color: #fff; opacity: .85; letter-spacing: .35px; text-transform: uppercase; margin-top: 8px; }
html[lang="ar"] .geo-banner-label { letter-spacing: 0; text-transform: none; }
.geo-banner-val { font-size: 56px; font-weight: 700; color: #fff; line-height: 1; font-family: var(--font-en) !important; }

/* ═══════════════════════════════════════════════
   TIMELINE
═══════════════════════════════════════════════ */
.timeline { padding: 20px 0 40px; overflow-x: auto; }
.timeline-wrap { background: transparent; border-radius: 0; padding: 0; margin-top: 16px; }
.geo-desc { margin-bottom: 24px; }
.timeline::-webkit-scrollbar { height: 12px; }
.timeline::-webkit-scrollbar-track { background: var(--gray-100); border-radius: 6px; }
.timeline::-webkit-scrollbar-thumb { background: var(--red); border-radius: 6px; }
.timeline-track { position: relative; padding: 0; min-width: fit-content; }
.timeline-line { position: absolute; height: 4px; left: 0; right: 0; top: 50%; background: var(--red); transform: translateY(-50%); }
.timeline-items { display: flex; gap: 32px; position: relative; z-index: 2; }
.timeline-item { width: 200px; padding: 0 12px; position: relative; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.timeline-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--red); border: 4px solid var(--white); box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1); position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3; }
.timeline-dot.below-dot { top: 20%; }
.timeline-dot.above-dot { top: 80px; }

/* Individual dot classes for positioning */
.timeline-dot.dot-1 { top: 30%; }
.timeline-dot.dot-2 { top: 70%; }  /* تحت الخط */
.timeline-dot.dot-3 { top: 30%; }
.timeline-dot.dot-4 {   top: 70%; }
.timeline-dot.dot-5 {  top: 30%; }
.timeline-dot.dot-6 { top: 70%;}
.timeline-dot.dot-7 {  top: 30%; }
.timeline-dot.dot-8 { top: 100%;}
.timeline-dot.dot-9 {top:5%; }
.timeline-dot.dot-10 { top: 90%; }
.timeline-dot.dot-11 {top: 70%;}
.timeline-box { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); padding: 14px 12px; box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1); width: 100%; }
.timeline-box.above { margin-bottom: 60px; margin-top: 0; }
.timeline-box.below { margin-top: 60px; margin-bottom: 0; }
.timeline-year { font-size: 12px; font-weight: 800; color: var(--red); margin-bottom: 5px; font-family: var(--font-en) !important; }
.timeline-desc { font-size: 11.5px; color: var(--gray-700); line-height: 1.55; }

/* ═══════════════════════════════════════════════
   STRATEGY
═══════════════════════════════════════════════ */
.strategy { background: var(--gray-50); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width:900px){ .two-col { grid-template-columns: 1fr; gap: 40px; } }
.strategy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (max-width:480px){ .strategy-grid { grid-template-columns: 1fr; } }
.strategy-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; transition: var(--t); }
.strategy-item:hover { box-shadow: var(--shadow-md); border-color: var(--red); }
.strategy-item-text { font-size: 14px; font-weight: 700; color: var(--black); }
.strategy-chevron { width: 18px; height: 18px; color: var(--gray-400); flex-shrink: 0; }
html[lang="ar"] .strategy-chevron { transform: scaleX(-1); }

/* ═══════════════════════════════════════════════
   VALUES
═══════════════════════════════════════════════ */
.values-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 40px; }
@media (max-width:768px){ .values-grid { gap: 10px; } }
@media (max-width:480px){ .values-grid { gap: 8px; } }
.values-grid .value-card { flex: 0 1 calc(33.333% - 8px); }
@media (max-width:768px){ .values-grid .value-card { flex: 0 1 calc(50% - 6px); } }
@media (max-width:480px){ .values-grid .value-card { flex: 0 1 100%; } }
.values-grid .value-card:nth-child(4),
.values-grid .value-card:nth-child(5) { flex: 0 1 calc(33.333% - 8px); }
@media (max-width:768px){ 
  .values-grid .value-card:nth-child(4),
  .values-grid .value-card:nth-child(5) { flex: 0 1 calc(50% - 6px); }
}
@media (max-width:480px){ 
  .values-grid .value-card:nth-child(4),
  .values-grid .value-card:nth-child(5) { flex: 0 1 100%; }
}
.value-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 40px 24px 28px; text-align: center; transition: background var(--t), border-color var(--t), transform .35s cubic-bezier(.2,1,.2,1), box-shadow .35s cubic-bezier(.2,1,.2,1); cursor: pointer; min-height: 174px; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; }
@media (max-width:480px){ .value-card { padding: 20px 12px 16px; min-height: auto; } }
.value-card:hover { background: var(--red); border-color: var(--red); box-shadow: 0 8px 24px -4px rgba(200,16,46,.3); transform: scale(1.05); z-index: 2; }
.value-card:hover .value-name { color: #fff; }
.value-card:hover .value-icon img { filter: brightness(0) invert(1); }
.value-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
@media (max-width:480px){ .value-icon { width: 40px; height: 40px; margin: 0 auto 12px; } }
.value-icon img { width: 48px; height: 48px; transition: filter var(--t); }
@media (max-width:480px){ .value-icon img { width: 40px; height: 40px; } }
.value-name { font-size: 18px; font-weight: 700; color: #101828; transition: color var(--t); }
@media (max-width:480px){ .value-name { font-size: 16px; } }
.value-desc { font-size: 14px; color: var(--gray-700); line-height: 1.6; margin-top: 12px; transition: opacity var(--t), color var(--t); opacity: 0; visibility: hidden; }
@media (max-width:480px){ .value-desc { font-size: 13px; margin-top: 8px; } }
.value-card:hover .value-desc { opacity: 1; visibility: visible; color: #fff; }

.vision-banner { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); border-radius: var(--radius-md); padding: 36px 40px; margin-top: 40px; }
html[lang="ar"] .vision-banner { background: linear-gradient(225deg, var(--red) 0%, var(--red-dark) 100%); }
@media (max-width:600px){ .vision-banner { padding: 24px; } }
.vision-title { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.vision-text { font-size: 15px; color: rgba(255,255,255,.88); line-height: 1.85; }

/* ═══════════════════════════════════════════════
   GOVERNANCE
═══════════════════════════════════════════════ */
.gov-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.gov-title { font-size: 36px; font-weight: 700; color: var(--black); line-height: 40px; }

.gov-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--gray-200); margin-bottom: 32px; }
.gov-tab { background: none; border: none; border-bottom: 3px solid transparent; padding: 14px 24px; font-family: var(--font); font-size: 16px; font-weight: 500; color: var(--black); cursor: pointer; transition: color var(--t), border-color var(--t); margin-bottom: -2px; white-space: nowrap; }
.gov-tab:hover { color: var(--red); }
.gov-tab.active { color: var(--red); border-bottom-color: var(--red); }
@media (max-width:600px){ .gov-tab { padding: 12px 16px; font-size: 14px; } }

.gov-tabpanel { }
.gov-tabpanel.hidden { display: none; }

.board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width:900px){ .board-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:500px){ .board-grid { grid-template-columns: 1fr; } }
.board-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); padding: 24px; transition: var(--t); }
.board-card:hover { box-shadow: var(--shadow-md); }
.board-avatar-img { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin-bottom: 16px; background: var(--gray-100); }
.board-avatar-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.board-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: var(--gray-500); margin-bottom: 16px; font-family: var(--font-en) !important; }
.board-name { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 4px; line-height: 1.5; }
.board-role { font-size: 14px; color: var(--red); font-weight: 400; margin-bottom: 18px; line-height: 1.4; }
.board-link { font-size: 14px; color: var(--gray-600); cursor: pointer; font-weight: 500; transition: color var(--t); }
.board-link:hover { color: var(--red); }
.board-card[data-bod] { cursor: pointer; }

/* ═══════════════════════════════════════════════
   BOARD COMMITTEES LIST
═══════════════════════════════════════════════ */
.committee-list { display: flex; flex-direction: column; gap: 24px; }

.committee-block {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); overflow: hidden;
}

.committee-title {
  font-size: 16px; font-weight: 700; color: var(--black);
  padding: 20px 24px 16px;
}

.committee-members { display: flex; flex-direction: column; }

.committee-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; border-top: 1px solid var(--gray-200);
  gap: 16px;
}

.committee-name {
  font-size: 15px; color: var(--black); font-weight: 400;
}

.committee-role {
  font-size: 14px; color: var(--red); font-weight: 500;
  white-space: nowrap; text-align: right;
}
html[lang="ar"] .committee-role { text-align: left; }

/* ═══════════════════════════════════════════════
   BOD PROFILE MODAL
═══════════════════════════════════════════════ */
.bod-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 2000;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.bod-modal-overlay.open { opacity: 1; pointer-events: all; }

.bod-modal {
  background: #FFF8F7;
  border-radius: 0 0 12px 12px;
  box-shadow: 0px 25px 50px -12px rgba(0,0,0,.25);
  width: 100%; max-width: 971px;
  max-height: 90vh;
  display: flex; flex-direction: column;
  transform: translateY(24px) scale(.97);
  transition: transform .3s ease;
  overflow: hidden;
}
.bod-modal-overlay.open .bod-modal { transform: translateY(0) scale(1); }

/* Header */
.bod-modal-header {
  background: #C00D2D;
  border-radius: 12px 12px 0 0;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
  box-shadow: 0px 1px 2px rgba(0,0,0,.05);
}
.bod-modal-header-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 20px; line-height: 28px;
  color: #fff; letter-spacing: -0.5px;
}
.bod-modal-close {
  width: 30px; height: 30px; background: rgba(255,255,255,.15);
  border: none; border-radius: 12px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t); flex-shrink: 0;
}
.bod-modal-close:hover { background: rgba(255,255,255,.3); }

/* Body */
.bod-modal-body {
  flex: 1; overflow-y: auto; background: #fff;
  padding: 32px;
}
.bod-modal-body::-webkit-scrollbar { width: 4px; }
.bod-modal-body::-webkit-scrollbar-track { background: #f1f5f9; }
.bod-modal-body::-webkit-scrollbar-thumb { background: #C00D2D; border-radius: 2px; }

/* Footer accent */
.bod-modal-footer {
  height: 4px; background: #C00D2D; opacity: .1; flex-shrink: 0;
}

/* Profile header card */
.bod-profile-header {
  border: 1px solid #E2E8F0; border-radius: 4px;
  padding: 24px; background: #fff; margin-bottom: 24px;
}
.bod-profile-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 24px; line-height: 32px;
  color: #281717; margin-bottom: 12px;
}
.bod-profile-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.bod-tag {
  display: inline-flex; align-items: center;
  padding: 4px 12px; border-radius: 12px;
  font-weight: 600; font-size: 12px; line-height: 16px;
}
.bod-tag--primary { background: #FFDAD6; color: #95001F; }
.bod-tag--secondary { background: #E0E3E5; color: #5C5F61; }

.bod-info-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  border-top: 1px solid #F1F5F9; padding-top: 20px; margin-top: 4px;
}
.bod-info-label {
  font-size: 13px; line-height: 18px; color: #5C403F;
  font-weight: 400; margin-bottom: 4px;
}
.bod-info-value {
  font-size: 15px; line-height: 20px; color: #281717;
  font-weight: 600;
}

/* Section titles */
.bod-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 18px; line-height: 24px;
  color: #281717; margin-bottom: 12px;
}

/* Qualifications */
.bod-qual-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 8px;
}
.bod-qual-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #95001F; flex-shrink: 0; margin-top: 9px;
}
.bod-qual-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; line-height: 24px; color: #281717;
}

/* Positions list */
.bod-positions-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }

.bod-position-card {
  background: #F8FAFC; border: 1px solid #F1F5F9;
  border-radius: 4px; padding: 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
@media (max-width:600px){ .bod-position-card { grid-template-columns: 1fr; gap: 16px; } }

.bod-pos-group { display: flex; flex-direction: column; gap: 16px; }
.bod-pos-field { display: flex; flex-direction: column; gap: 4px; }
.bod-pos-label {
  font-size: 13px; line-height: 18px; color: #5C403F; font-weight: 400;
}
.bod-pos-value {
  font-size: 15px; line-height: 20px; color: #281717; font-weight: 600;
}

/* Previous experience cards */
.bod-exp-card {
  background: #F8FAFC; border: 1px solid #F1F5F9;
  border-radius: 4px; padding: 24px;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
}
@media (max-width:600px){ .bod-exp-card { flex-direction: column; gap: 8px; } }
.bod-exp-info {
  font-size: 15px; line-height: 24px; color: #281717; font-weight: 600;
}
.bod-exp-info strong { display: block; }
.bod-exp-dates {
  font-size: 13px; line-height: 18px; color: #5C403F;
  font-weight: 400; white-space: nowrap; text-align: right; flex-shrink: 0;
}
html[lang="ar"] .bod-exp-dates { text-align: left; }

@media (max-width:600px){
  .bod-modal-body { padding: 20px 16px; }
  .bod-modal-header { padding: 14px 20px; }
  .bod-profile-name { font-size: 20px; }
  .bod-info-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   BOARD COMMITTEES LIST
═══════════════════════════════════════════════ */
.committee-list { display: flex; flex-direction: column; gap: 32px; }

.committee-block {
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.committee-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
}

.committee-members { display: flex; flex-direction: column; }

.committee-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-200);
  gap: 16px;
}
.committee-row:last-child { border-bottom: none; }

.committee-name {
  font-size: 15px;
  color: var(--black);
  font-weight: 400;
}

.committee-role {
  font-size: 14px;
  color: var(--red);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.committee-role--board { color: var(--red); }
.committee-role--external { color: var(--red); }

@media (max-width: 600px) {
  .committee-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .committee-role { white-space: normal; }
}


═══════════════════════════════════════════════ */
.bod-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 2000;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.bod-modal-overlay.open { opacity: 1; pointer-events: all; }

.bod-modal {
  background: #FFF8F7;
  max-width: 971px; width: 100%;
  max-height: 90vh;
  box-shadow: 0px 25px 50px -12px rgba(0,0,0,0.25);
  border-radius: 12px;
  display: flex; flex-direction: column;
  transform: translateY(20px) scale(.97);
  transition: transform .3s ease;
  overflow: hidden;
}
.bod-modal-overlay.open .bod-modal { transform: translateY(0) scale(1); }

/* Header */
.bod-modal-header {
  background: #C00D2D;
  padding: 16px 32px;
  display: flex; justify-content: space-between; align-items: center;
  border-radius: 12px 12px 0 0;
  flex-shrink: 0;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.05);
}
.bod-modal-header-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 20px; line-height: 28px;
  letter-spacing: -0.5px; color: #FFFFFF;
}
html[lang="ar"] .bod-modal-header-title { font-family: 'Cairo', sans-serif; }
.bod-modal-close {
  width: 30px; height: 30px; background: none; border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  border-radius: 12px; transition: opacity var(--t); flex-shrink: 0;
}
.bod-modal-close:hover { opacity: .7; }
.bod-modal-close svg { width: 14px; height: 14px; color: #FFFFFF; }

/* Content area */
.bod-modal-content {
  background: #FFFFFF;
  padding: 32px;
  overflow-y: auto; flex: 1;
  border-radius: 0 0 12px 12px;
  display: flex; flex-direction: column; gap: 24px;
}

/* Profile header card */
.bod-profile-header {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  padding: 24px;
}
.bod-profile-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 24px; line-height: 32px;
  color: #281717; margin-bottom: 12px;
}
html[lang="ar"] .bod-profile-name { font-family: 'Cairo', sans-serif; }
.bod-profile-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px;
}
.bod-tag {
  padding: 4px 12px; border-radius: 12px;
  font-weight: 600; font-size: 12px; line-height: 16px;
  display: inline-flex; align-items: center;
}
.bod-tag--primary {
  background: #FFDAD6; color: #95001F;
  font-family: 'Montserrat', sans-serif;
}
html[lang="ar"] .bod-tag--primary { font-family: 'Cairo', sans-serif; }
.bod-tag--secondary {
  background: #E0E3E5; color: #5C5F61;
  font-family: 'Inter', sans-serif;
}
html[lang="ar"] .bod-tag--secondary { font-family: 'Cairo', sans-serif; }

/* Info row (Nationality / Date) */
.bod-info-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding-top: 16px; border-top: 1px solid #F1F5F9;
}
@media (max-width:600px){ .bod-info-row { grid-template-columns: 1fr; gap: 12px; } }
.bod-info-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400; font-size: 13px; line-height: 18px;
  color: #5C403F; margin-bottom: 4px;
}
html[lang="ar"] .bod-info-label { font-family: 'Cairo', sans-serif; }
.bod-info-value {
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 15px; line-height: 20px;
  color: #281717;
}
html[lang="ar"] .bod-info-value { font-family: 'Cairo', sans-serif; }

/* Section headings */
.bod-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 18px; line-height: 24px;
  color: #281717; margin-bottom: 12px;
}
html[lang="ar"] .bod-section-title { font-family: 'Cairo', sans-serif; }

/* Qualification bullet */
.bod-qual-item {
  display: flex; align-items: flex-start; gap: 12px;
}
.bod-qual-dot {
  width: 6px; height: 6px; background: #95001F; border-radius: 50%;
  flex-shrink: 0; margin-top: 9px;
}
.bod-qual-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400; font-size: 15px; line-height: 24px;
  color: #281717;
}
html[lang="ar"] .bod-qual-text { font-family: 'Cairo', sans-serif; }

/* Position cards (Current Positions) */
.bod-positions-list {
  display: flex; flex-direction: column; gap: 16px;
}
.bod-position-card {
  background: #F8FAFC;
  border: 1px solid #F1F5F9;
  border-radius: 4px;
  padding: 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
@media (max-width:600px){ .bod-position-card { grid-template-columns: 1fr; gap: 16px; } }
.bod-pos-group {
  display: flex; flex-direction: column; gap: 16px;
}
.bod-pos-field { display: flex; flex-direction: column; gap: 4px; }
.bod-pos-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400; font-size: 13px; line-height: 18px;
  color: #5C403F;
}
html[lang="ar"] .bod-pos-label { font-family: 'Cairo', sans-serif; }
.bod-pos-value {
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 15px; line-height: 20px;
  color: #281717;
}
html[lang="ar"] .bod-pos-value { font-family: 'Cairo', sans-serif; }

/* Previous experience cards */
.bod-exp-card {
  background: #F8FAFC;
  border: 1px solid #F1F5F9;
  border-radius: 4px;
  padding: 24px;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 32px;
}
@media (max-width:600px){ .bod-exp-card { flex-direction: column; gap: 12px; } }
.bod-exp-info {
  font-family: 'Inter', sans-serif;
  font-weight: 400; font-size: 15px; line-height: 24px;
  color: #281717;
}
.bod-exp-info strong {
  font-weight: 600;
}
html[lang="ar"] .bod-exp-info { font-family: 'Cairo', sans-serif; }
.bod-exp-dates {
  font-family: 'Inter', sans-serif;
  font-weight: 400; font-size: 13px; line-height: 18px;
  color: #5C403F; white-space: nowrap; text-align: right;
  flex-shrink: 0;
}
html[lang="ar"] .bod-exp-dates { text-align: left; font-family: 'Cairo', sans-serif; }

/* Footer decorative */
.bod-modal-footer {
  height: 4px; background: #C00D2D; opacity: 0.1;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width:600px){
  .bod-modal-header { padding: 12px 20px; }
  .bod-modal-header-title { font-size: 16px; }
  .bod-modal-content { padding: 20px; gap: 20px; }
  .bod-profile-name { font-size: 20px; line-height: 28px; }
}

/* ═══════════════════════════════════════════════
   FINANCIAL
═══════════════════════════════════════════════ */
.fin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width:1024px){ .fin-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:480px) { .fin-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }
.margin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 16px; }
@media (max-width:1024px){ .margin-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:480px) { .margin-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

.fin-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 24px 20px; transition: var(--t); }
.fin-card:hover { box-shadow: var(--shadow-md); }
.fin-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-500); margin-bottom: 8px; font-weight: 700; }
html[lang="ar"] .fin-label { letter-spacing: 0; text-transform: none; font-size: 12px; }
.fin-val-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
html[lang="ar"] .fin-val-row { flex-direction: row-reverse; justify-content: flex-end; }
.fin-val { font-size: 26px; font-weight: 800; color: var(--red); font-family: var(--font-en) !important; }
.fin-unit { font-size: 13px; font-weight: 700; color: var(--red); }
.fin-change { font-size: 12px; font-weight: 700; color: var(--green); font-family: var(--font-en) !important; }

/* Financial Review Header & Image */
.fr-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.fr-header-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.fr-btn-outline { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--red); color: var(--red); font-size: 16px; font-weight: 500; padding: 12px 24px; border-radius: var(--radius-sm); font-family: var(--font); transition: background var(--t), color var(--t), transform var(--t); white-space: nowrap; text-decoration: none; background: transparent; cursor: pointer; }
.fr-btn-outline:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.fr-btn-outline:hover svg { stroke: #fff; }
.fr-btn-outline svg { flex-shrink: 0; }
.fr-image-wrap { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 24px; }
.fr-image-wrap img { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); }

/* Financial Charts */
.fr-charts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
@media (max-width:900px){ .fr-charts-grid { grid-template-columns: 1fr; } }
.fr-chart-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 25px; }
.fr-chart-title { font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 20px; }
.fr-chart-area { width: 100%; }
.fr-line-chart { width: 100%; height: auto; display: block; }
.fr-pie-area { display: flex; justify-content: center; align-items: center; padding: 20px 0; }
.fr-pie-chart { width: 200px; height: 200px; }
.fr-chart-legend { display: flex; justify-content: center; gap: 24px; margin-top: 16px; padding-top: 12px; font-size: 14px; color: var(--black); }
.fr-legend-item { display: flex; align-items: center; gap: 8px; }
.fr-legend-line { width: 14px; height: 3px; border-radius: 2px; flex-shrink: 0; }

/* Chart animations */
.fr-line-chart polyline { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: drawLine 2s ease-out forwards; }
.fr-line-chart circle { opacity: 0; animation: fadeInCircle 0.6s ease-out forwards; }
.fr-line-chart circle:nth-child(n+17) { animation-delay: 0.3s; }
.fr-line-chart circle:nth-child(n+18) { animation-delay: 0.6s; }
.fr-line-chart circle:nth-child(n+19) { animation-delay: 0.9s; }
.fr-line-chart circle:nth-child(n+20) { animation-delay: 1.2s; }
.fr-line-chart circle:nth-child(n+21) { animation-delay: 1.5s; }

.fr-pie-chart path { opacity: 0; animation: fadeInPie 1.2s ease-out forwards; animation-delay: 0.4s; }
.fr-pie-chart circle { opacity: 0; animation: fadeInPie 0.8s ease-out forwards; animation-delay: 0.2s; }

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeInCircle {
  to { opacity: 1; }
}

@keyframes fadeInPie {
  to { opacity: 1; }
}
.fr-legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
@media (max-width:480px){
  .fr-header { flex-direction: column; align-items: flex-start; }
  .fr-header-actions { width: 100%; }
  .fr-header-actions a { flex: 1; justify-content: center; font-size: 13px; padding: 10px 16px; }
  .fr-chart-legend { flex-direction: column; align-items: center; gap: 8px; }
  .fr-pie-chart { width: 160px; height: 160px; }
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer { background: var(--black); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
@media (max-width:768px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width:480px){ .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
.footer-brand { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.footer-tagline { font-size: 13px; color: var(--gray-400); line-height: 1.7; max-width: 260px; margin-bottom: 16px; }
.footer-ticker { font-size: 12px; color: var(--gray-500); line-height: 2; font-family: var(--font-en) !important; }
.footer-heading { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: #fff; margin-bottom: 16px; }
html[lang="ar"] .footer-heading { letter-spacing: 0; text-transform: none; font-size: 13px; }
.footer-link { display: block; font-size: 13px; color: var(--gray-400); text-decoration: none; margin-bottom: 10px; transition: color var(--t); }
.footer-link:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; text-align: center; }
.footer-copy { font-size: 12px; color: var(--gray-500); }

/* ═══════════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ═══════════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════════ */
@keyframes fadeUp  { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }
@keyframes scrollPulse { 0%,100%{ opacity:.35; transform:scaleY(1); } 50%{ opacity:1; transform:scaleY(1.15); } }
@keyframes scrollBounce { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(8px); opacity: 0.8; } }


/* ═══════════════════════════════════════════════
   EXTRA SMALL DEVICES (320px - 375px)
═══════════════════════════════════════════════ */
@media (max-width:375px) {
  :root { --nav-h: 64px; }
  
  html { font-size: 14px; }
  
  .container { padding: 0 12px; }
  
  .hero-title { font-size: clamp(24px, 5vw, 36px); margin-bottom: 12px; }
  html[lang="ar"] .hero-title { font-size: clamp(22px, 5vw, 32px); }
  
  .hero-sub { font-size: 13px; margin-bottom: 20px; }
  
  .hero-badge { width: 90px; height: 90px; border-width: 2px; padding: 8px; }
  .hero-badge-text { font-size: 16px; }
  
  .section-title { font-size: clamp(18px, 4vw, 24px); }
  .section-title.main-title { font-size: clamp(20px, 4vw, 28px); }
  
  .bm-title { font-size: 18px; margin-bottom: 12px; }
  
  .hl-title { font-size: 18px; }
  
  .hl-card { padding: 12px; min-height: 80px; }
  .hl-val { font-size: 18px; margin-bottom: 4px; }
  .hl-val span { font-size: 14px; }
  .hl-label { font-size: 12px; }
  
  .grb-title { font-size: 18px; margin-bottom: 12px; }
  .grb-total { font-size: 20px; margin-bottom: 4px; }
  .grb-subtitle { font-size: 13px; margin-bottom: 16px; }
  
  .brand-title { font-size: clamp(20px, 4vw, 28px); margin-bottom: 12px; }
  .brand-desc { font-size: 13px; margin-bottom: 12px; }
  
  .about-text p { font-size: 14px; }
  
  .nav-links a { font-size: 12px; gap: 16px; }
  
  .msg-modal-body { padding: 16px; font-size: 14px; }
  .msg-modal-name { font-size: 18px; }
  .msg-modal-role { font-size: 13px; }
  
  .geo-country-num { font-size: 28px; }
  .geo-country-name { font-size: 12px; }
  
  .stake-card { padding: 12px; min-height: auto; }
  .stake-name { font-size: 14px; margin-bottom: 6px; }
  .stake-desc { font-size: 12px; }
  
  .op-card { padding: 12px; gap: 12px; }
  .op-subtitle { font-size: 16px; margin-bottom: 8px; }
  .op-num { font-size: 48px; margin-bottom: 4px; }
  
  .leader-name { font-size: 16px; margin-bottom: 8px; }
  .leader-role { font-size: 11px; margin-bottom: 4px; }
  .leader-link { font-size: 12px; }
  
  .brand-modal { padding: 20px 12px; }
  .brand-modal-title { font-size: 22px; }
  
  .msg-modal-header { padding: 16px 20px; }
  
  .footer-grid { gap: 16px; padding-bottom: 24px; }
  .footer-heading { font-size: 10px; margin-bottom: 12px; }
  .footer-link { font-size: 12px; margin-bottom: 8px; }
}

/* ═══════════════════════════════════════════════
   PREVENT HORIZONTAL SCROLL - UNIVERSAL FIX
═══════════════════════════════════════════════ */
* {
  max-width: 100%;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  width: 100%;
  overflow-x: auto;
}
