﻿/* =====================
   OVERVIEW PAGE
===================== */

/* ── White Navbar ── */
.navbar-white {
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.navbar-white .nav-links a        { color: #333; opacity: 1; }
.navbar-white .nav-links a:hover,
.navbar-white .nav-links a.active { color: #009189; opacity: 1; }
.navbar-white .cta-download {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.15);
  color: #333;
}
.navbar-white .cta-download:hover { background: rgba(0,0,0,0.1); }
.navbar-white .cta-lang           { border-color: rgba(0,0,0,0.2); color: #333; }
.navbar-white .cta-lang:hover     { background: rgba(0,0,0,0.05); }
.navbar-white .burger span        { background: #333; }
.navbar-white.scrolled            { box-shadow: 0 2px 16px rgba(0,0,0,0.1); }

/* Page bg */
.page-overview { background: #fff; color: #1a1a1a; overflow-x: clip; }

/* ── Banner ── */
.ov-banner {
  position: relative;
  padding: calc(var(--nav-h) + 28px) 100px 80px;
  background: linear-gradient(90deg, #343741 0%, #009189 100%);
  overflow: visible;
  min-height: 200px;
  z-index: 1;
}

.ov-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.ov-section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.ov-title {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
}
.ov-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.ov-tags span,
.ov-tags a {
  display: inline-block;
  padding: 4px 13px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  font-size: clamp(9px, 0.72vw, 11.5px);
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.ov-tags span:hover,
.ov-tags a:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.65);
}
.ov-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
  margin-top: 4px;
}
.ov-more-btn:hover { background: rgba(255,255,255,0.15); }

/* ── Sub-nav tabs ── */
.ov-subnav {
  background: #fff;
  border-bottom: 1.5px solid #e8e8e8;
  position: sticky;
  top: var(--nav-h);
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  /* Ensure sticky works — no overflow:hidden on ancestors */
  will-change: transform;
}
.ov-subnav-inner {
  display: flex;
  align-items: center;
  padding: 0 100px;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.ov-subnav-inner::-webkit-scrollbar { display: none; }
.ov-tab {
  display: block;
  padding: 13px 16px;
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 500;
  color: #666;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.ov-tab:hover  { color: #009189; }
.ov-tab.active {
  color: #009189;
  border-bottom-color: #009189;
  font-weight: 600;
}

/* ── Hero image + helmet ── */
.ov-hero-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
}
.ov-frame {
  width: 100%;
  height: auto;
  display: block;
}
.ov-helmet {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 123%;
  height: 123%;
  object-fit: contain;
  transform: translate(-50%, -41%);
  pointer-events: none;
  display: block;
}

/* ── About section ── */
.ov-section {
  padding: 40px 100px;
  background: #fff;
}
.ov-section-inner { max-width: 100%; }

.ov-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.ov-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #009189;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 5px;
  flex-shrink: 0;
}
.ov-section-title h2 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: #1a1a1a;
}
.ov-divider {
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  margin-bottom: 20px;
}

/* Beige card — full width */
.ov-card-beige {
  background: #F1D3B5;
  border-radius: 8px;
  padding: 28px 32px;
  width: 100%;
}
.ov-card-beige h3 {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
}
.ov-card-beige p {
  font-size: clamp(12px, 0.85vw, 13.5px);
  line-height: 1.8;
  color: #444;
  margin-bottom: 14px;
}
.ov-card-beige p:last-child { margin-bottom: 0; }

/* ── Sub sections ── */
.ov-sub-section { margin-top: 28px; }
.ov-sub-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.ov-sub-bar {
  width: 3px;
  height: 18px;
  background: #009189;
  border-radius: 2px;
  flex-shrink: 0;
}
.ov-sub-title h4 {
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ov-body-text {
  font-size: clamp(11.5px, 0.85vw, 13px);
  line-height: 1.8;
  color: #444;
  margin-bottom: 14px;
  width: 100%;
}
.ov-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

/* Value created list — used inside beige card */
.ov-value-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ov-value-list li {
  font-size: clamp(12px, 0.88vw, 13.5px);
  line-height: 1.7;
  color: #444;
  padding-left: 18px;
  position: relative;
}
.ov-value-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #009189;
  flex-shrink: 0;
}
[dir="rtl"] .ov-value-list li {
  padding-left: 0;
  padding-right: 18px;
}
[dir="rtl"] .ov-value-list li::before {
  left: auto;
  right: 0;
}
.ov-list li {
  font-size: clamp(12.5px, 0.9vw, 14px);
  line-height: 1.8;
  color: #444;
  padding-left: 22px;
  position: relative;
}
.ov-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #009189;
}

/* Products block */
.ov-products-block {
  width: 100%;
  background: #fff;
  border: 1px solid #F0F0F0;
  border-radius: 8px;
  padding: 28px 32px;
  margin-top: 8px;
}

/* ── Lines of Business wrapper ── */
.ov-lob-wrap {
  border: 1.5px solid #F0F0F0;
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 8px;
}

.ov-lob-wrap .ov-two-cards {
  margin-top: 16px;
}

.ov-lob-wrap .ov-body-text {
  margin-bottom: 0;
}
.ov-two-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.ov-biz-card {
  border-radius: 8px;
  padding: 24px 28px;
  border: 1.5px solid #F1D3B5;
  transition: border-color 0.2s, background 0.2s;
}
.ov-biz-card h5 {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  transition: color 0.2s;
}
.grey-card h5 { color: #343741; }
.white-card h5 { color: #343741; }
.grey-card { border-color: #F1D3B5; }

/* Hover */
.ov-biz-card:hover { border-color: #009189; }
.ov-biz-card:hover h5 { color: #009189; }
.ov-biz-num {
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 14px 0 6px;
}
.ov-biz-card p {
  font-size: clamp(12.5px, 0.9vw, 14px);
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}
.ov-biz-card p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #009189;
  flex-shrink: 0;
}
.ov-biz-card p:last-child { margin-bottom: 0; }

/* ── Cement bags image ── */
.ov-bags-img {
  width: 100%;
  background: #fff;
  overflow: hidden;
}
.ov-bags-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── KPI highlights ── */
.ov-highlights-group { margin-bottom: 20px; }
.ov-highlights-title {
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.ov-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ov-kpi-card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 18px 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ov-kpi-val {
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 800;
  color: #009189;
  line-height: 1.1;
}
.ov-kpi-label {
  font-size: clamp(11px, 0.78vw, 12.5px);
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
}
.ov-kpi-sub       { font-size: clamp(10px, 0.7vw, 11.5px); color: #888; line-height: 1.4; }
.ov-kpi-sub.red   { color: #e03e3e; }
.ov-kpi-sub.green { color: #009189; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ov-kpi-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .ov-banner       { padding: calc(var(--nav-h) + 20px) 24px 60px; }
  .ov-subnav-inner { padding: 0 24px; }
  .ov-section      { padding: 36px 24px; }
  .ov-kpi-grid     { grid-template-columns: repeat(2, 1fr); }
  .ov-two-cards    { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .ov-title        { font-size: 30px; }
  .ov-banner-inner { flex-direction: column; }
  .ov-kpi-grid     { grid-template-columns: 1fr; }
}

/* ── Sustainability Highlights ── */
.ov-sustain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.ov-sustain-tag {
  background: #F1D3B5;
  border-radius: 6px;
  padding: 12px 16px 20px;
  font-size: clamp(10px, 0.78vw, 12px);
  color: #444;
  font-weight: 500;
  line-height: 1.5;
}

/* Awards card */
.ov-awards-card {
  background: #F1D3B5;
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 4px;
}
.ov-awards-card h5 {
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.ov-awards-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ov-awards-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(11px, 0.82vw, 13px);
  color: #333;
  font-weight: 500;
}
.ov-award-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #009189;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ov-award-dot img {
  width: 14px;
  height: 14px;
  display: block;
}

/* ── 2025 Timeline ── */
.ov-timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.ov-month-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}
.ov-month-header {
  background: #009189;
  color: #fff;
  font-size: clamp(10px, 0.78vw, 12px);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 9px 16px;
}
.ov-month-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #FAFAFA;
}
.ov-event {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.ov-event > span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #343741;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ov-event p {
  font-size: clamp(10px, 0.75vw, 12px);
  line-height: 1.6;
  color: #444;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .ov-sustain-grid  { grid-template-columns: repeat(2, 1fr); }
  .ov-timeline-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ov-sustain-grid  { grid-template-columns: 1fr; }
  .ov-timeline-grid { grid-template-columns: 1fr; }
}

/* ── Where We Operate ── */
.ov-operate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
  align-items: start;
}

/* Left col */
.ov-map-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Map card */
.ov-map-card {
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}
.ov-map-img {
  width: 100%;
  height: auto;
  display: block;
}
.ov-map-label {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ov-map-city {
  font-size: clamp(10px, 0.82vw, 12px);
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0.08em;
}
.ov-map-region {
  font-size: clamp(9px, 0.72vw, 11px);
  font-weight: 600;
  color: #009189;
  letter-spacing: 0.06em;
}
.ov-map-desc {
  font-size: clamp(9px, 0.72vw, 11px);
  color: #888;
}

/* Revenue card */
.ov-revenue-card {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.ov-revenue-title {
  font-size: clamp(10px, 0.82vw, 12.5px);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ov-rev-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ov-rev-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ov-rev-name {
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 500;
  color: #1a1a1a;
}
.ov-rev-pct {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
  color: #009189;
}
.ov-rev-pct.muted { color: #888; }
.ov-rev-bar-track {
  width: 100%;
  height: 10px;
  background: #eeeeee;
  border-radius: 6px;
  overflow: hidden;
}
.ov-rev-bar-fill {
  height: 100%;
  background: #009189;
  border-radius: 6px;
  min-width: 4px;
}
.ov-rev-bar-fill.export { background: #cccccc; }

@media (max-width: 860px) {
  .ov-operate-grid { grid-template-columns: 1fr; }
}

/* ── History ── */
.ov-history-wrap {
  position: relative;
}

.ov-history-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

/* vertical line through dots */
.ov-history-list::before {
  content: '';
  position: absolute;
  left: calc(72px + 20px + 9px); /* year + gap + half dot */
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: #EEEEEE;
  z-index: 0;
}

.ov-hist-row {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.ov-hist-year {
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 700;
  color: #555555;
  width: 72px;
  flex-shrink: 0;
  text-align: right;
  transition: color 0.2s;
}

.ov-hist-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #009189;
  background: #F1D3B5;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.2s;
}

.ov-hist-box {
  flex: 1;
  background: #FAFAFA;
  border-radius: 10px;
  padding: 12px 20px;
  transition: background 0.2s;
  cursor: default;
}

.ov-hist-text {
  font-size: clamp(11.5px, 0.85vw, 13px);
  color: #555555;
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.2s;
}

/* hover state */
.ov-hist-row:hover .ov-hist-box   { background: #F1D3B5; }
.ov-hist-row:hover .ov-hist-text  { color: #555555; }
.ov-hist-row:hover .ov-hist-year  { color: #009189; }
.ov-hist-row:hover .ov-hist-dot   { background: #009189; }

/* 2025 current row — same as others */
.ov-hist-current .ov-hist-year  { color: #555555; }
.ov-hist-current .ov-hist-dot   { background: #F1D3B5; border-color: #009189; }
.ov-hist-current .ov-hist-box   { background: #FAFAFA; }
.ov-hist-current .ov-hist-text  { font-weight: 700; color: #343741; }

/* History section background */
.ov-history-section {
  background-image: url('../assets/freepik__a-minimalist-highend-corporate-background-for-text__64990_upscayl_3x_upscayl-standard-4x 2 (1).png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ov-history-section .ov-divider {
  background: #009189;
}

/* ── Stakeholder Engagement ── */
.ov-stakeholder-section {
  background: #fff;
}

.ov-stake-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}

.ov-stake-card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 22px 24px;
  background: #fff;
}

.ov-stake-title {
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 3px solid #009189;
}

.ov-stake-card p {
  font-size: clamp(11px, 0.8vw, 12.5px);
  line-height: 1.75;
  color: #555;
  margin-bottom: 10px;
}
.ov-stake-card p:last-child { margin-bottom: 0; }

@media (max-width: 860px) {
  .ov-stake-grid { grid-template-columns: 1fr; }
}

/* ── Investment Case ── */
.ov-invest-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.ov-invest-bg-img {
  display: none;
}

.ov-invest-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/freepik__a-minimalist-highend-corporate-background-for-text__64990_upscayl_3x_upscayl-standard-4x 2 (6).png');
  background-size: 100% auto;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-color: #fff;
  pointer-events: none;
  z-index: 0;
}

.ov-invest-section .ov-section-inner {
  position: relative;
  z-index: 1;
}

.ov-invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.ov-invest-card {
  background: #FAFAFA;
  border: 1px solid #F0F0F0;
  border-radius: 12px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ov-invest-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #009189;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ov-invest-title {
  font-size: clamp(12px, 0.88vw, 13.5px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.45;
}

.ov-invest-card p {
  font-size: clamp(11px, 0.78vw, 12px);
  line-height: 1.75;
  color: #555;
  margin: 0;
}

@media (max-width: 1024px) {
  .ov-invest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ov-invest-grid { grid-template-columns: 1fr; }
}

/* ── Leadership Page ── */
.lead-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 8px;
}

.lead-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  position: sticky;
  top: calc(var(--nav-h) + 56px);
}

.lead-photo-wrap {
  width: 260px;
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
  background: #e8dcc8;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.lead-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.lead-name {
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 4px;
}

.lead-role {
  font-size: clamp(10px, 0.75vw, 12px);
  color: #009189;
  font-weight: 500;
  margin: 0;
}

.lead-info-box {
  background: #343741;
  border-radius: 12px;
  padding: 14px 16px;
  width: 100%;
  text-align: center;
}

.lead-text-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-topic-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px 24px;
}

.lead-topic-card h4 {
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  padding-left: 12px;
  border-left: 3px solid #009189;
}

.lead-topic-card p {
  font-size: clamp(11px, 0.8vw, 13px);
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.lead-highlight-card {
  background: #F1D3B5;
  border-color: #e8dcc8;
  width: calc(100% + 320px);
  margin-left: -320px;
  margin-right: 0;
  margin-top: 16px;
  border-radius: 12px;
  box-sizing: border-box;
  padding: 24px 24px 24px 24px;
}

.lead-highlight-card h4 {
  padding-left: 0;
  border-left: none;
}

.lead-transparent-card {
  background: transparent;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: #fff;
  color: #343741;
  border: 1.5px solid #343741;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-read-more:hover { background: #343741; color: #fff; }
.btn-read-more span { display: inline-block; }

/* CEO + Highlight — خلفية مشتركة */
.ceo-bg-wrapper {
  background: url('../assets/freepik__a-minimalist-highend-corporate-background-for-text__64990_upscayl_3x_upscayl-standard-4x 3.png') center/cover no-repeat;
}

#ceo {
  background: none;
}

/* Leadership highlight section — منفصل عن lead-body */
.lead-highlight-section {
  background: none;
  padding: 40px 0;
}

.lead-highlight-section .ov-section-inner {
  margin-left: 100px;
  margin-right: 100px;
}

@media (max-width: 1024px) {
  .lead-highlight-section .ov-section-inner {
    margin-left: 40px;
    margin-right: 40px;
  }
}

@media (max-width: 860px) {
  .lead-highlight-section .ov-section-inner {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.lead-highlight-section .lead-highlight-card {
  width: 100%;
  margin: 0;
}

/* Leadership background section before footer */
.lead-bg-section {
  background-image: url('../assets/freepik__a-minimalist-highend-corporate-background-for-text__64990_upscayl_3x_upscayl-standard-4x 3.png');
  background-size: cover;
  background-position: center;
  min-height: 120px;
}

@media (max-width: 860px) {
  .lead-body { grid-template-columns: 1fr; }
  .lead-photo-col { position: static; flex-direction: row; text-align: left; align-items: center; }
  .lead-photo-wrap {
    width: 100px;
    height: 200px;
    flex-shrink: 0;
  }
}

/* ── Strategic Review — Vision 2030 Pillars ── */
.sr-vision-pillar {
  margin-bottom: 24px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

.sr-pillar-header {
  background: #343741;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
}

.sr-pillar-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #009189;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sr-pillar-header h4 {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.sr-pillar-header p {
  font-size: clamp(10px, 0.75vw, 12px);
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.sr-pillar-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #fff;
}

.sr-pillar-body > div {
  padding: 20px 22px;
  border-right: 1px solid #f0f0f0;
}

.sr-pillar-body > div:last-child { border-right: none; }

.sr-pillar-topic {
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 700;
  color: #009189 !important;
  margin-bottom: 8px !important;
}

.sr-pillar-body p {
  font-size: clamp(10.5px, 0.78vw, 12px);
  line-height: 1.75;
  color: #555;
  margin: 0;
}

@media (max-width: 860px) {
  .sr-pillar-body { grid-template-columns: 1fr; }
  .sr-pillar-body > div { border-right: none; border-bottom: 1px solid #f0f0f0; }
  .sr-pillar-body > div:last-child { border-bottom: none; }
}

/* ── Strategy & KPIs Pillars ── */
.sr-kpi-pillar {
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

.sr-kpi-header {
  background: #F1D3B5;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 700;
}

.sr-kpi-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #009189;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sr-kpi-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  background: #fff;
}

.sr-kpi-body > div {
  padding: 18px 22px;
  font-size: clamp(11px, 0.82vw, 13px);
  line-height: 1.8;
  color: #555;
}

.sr-kpi-body > div p {
  font-size: clamp(11px, 0.82vw, 13px);
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.sr-kpi-body > div:last-child { border-right: none; }

@media (max-width: 860px) {
  .sr-kpi-body { grid-template-columns: 1fr; }
  .sr-kpi-body > div { border-right: none; border-bottom: 1px solid #f0f0f0; }
}

/* Strategy intro box */
.sr-intro-box {
  background: #F1D3B5;
  border-radius: 14px;
  padding: 18px 24px;
  margin-bottom: 24px;
  font-size: clamp(11.5px, 0.85vw, 13px);
  line-height: 1.8;
  color: #555555;
}

/* WHERE WE ARE label — dark not green */
.sr-where-label {
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 700;
  color: #343741 !important;
  margin-bottom: 8px !important;
}

/* ── Two business cards ── */

/* =====================
   OVERVIEW — FULL MOBILE RESPONSIVE
===================== */

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .ov-banner       { padding: calc(var(--nav-h) + 24px) 40px 60px; }
  .ov-subnav-inner { padding: 0 40px; }
  .ov-section      { padding: 36px 40px; }
  .ov-products-block { padding: 20px 24px; }
  .ov-lob-wrap     { padding: 20px 24px; }
  .ov-card-beige   { padding: 22px 24px; }
}

/* ── Mobile nav breakpoint (≤860px) ── */
@media (max-width: 860px) {
  /* Banner */
  .ov-banner       { padding: calc(var(--nav-h) + 20px) 20px 48px; }
  .ov-banner-inner { flex-direction: column; gap: 16px; }
  .ov-title        { font-size: clamp(26px, 7vw, 38px); margin-bottom: 14px; }
  .ov-tags         { gap: 6px; }
  .ov-tags a       { font-size: 10px; padding: 4px 10px; }
  .ov-more-btn     { font-size: 11px; padding: 6px 14px; }

  /* Sub-nav */
  .ov-subnav-inner { padding: 0 16px; gap: 0; }
  .ov-tab          { padding: 11px 12px; font-size: 11px; }

  /* Sections */
  .ov-section      { padding: 28px 20px; }
  .ov-card-beige   { padding: 18px 20px; }
  .ov-products-block { padding: 18px 20px; }
  .ov-lob-wrap     { padding: 16px 18px; }
  .ov-two-cards    { grid-template-columns: 1fr; gap: 14px; }
  .ov-biz-card     { padding: 18px 20px; }

  /* KPI grid */
  .ov-kpi-grid     { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ov-kpi-card     { padding: 14px 16px; }
  .ov-kpi-val      { font-size: clamp(14px, 4vw, 18px); }

  /* Sustainability */
  .ov-sustain-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ov-sustain-tag  { padding: 10px 12px 14px; }

  /* Timeline */
  .ov-timeline-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Where we operate */
  .ov-operate-grid { grid-template-columns: 1fr; gap: 20px; }

  /* History */
  .ov-history-list::before {
    left: calc(52px + 14px + 9px);
  }
  .ov-hist-year { width: 52px; font-size: 11px; }
  .ov-hist-box  { padding: 10px 14px; }
  .ov-hist-text { font-size: 11.5px; }

  /* Stakeholder */
  .ov-stake-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Investment */
  .ov-invest-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ov-invest-card { padding: 18px 16px; }
}

/* ── Small mobile (≤520px) ── */
@media (max-width: 520px) {
  /* Banner */
  .ov-banner       { padding: calc(var(--nav-h) + 16px) 16px 40px; }
  .ov-title        { font-size: 26px; }
  .ov-tags a       { font-size: 9.5px; padding: 3px 9px; }

  /* Sub-nav */
  .ov-subnav-inner { padding: 0 12px; }
  .ov-tab          { padding: 10px 10px; font-size: 10.5px; }

  /* Sections */
  .ov-section      { padding: 24px 16px; }
  .ov-card-beige   { padding: 16px; }
  .ov-products-block { padding: 16px; }
  .ov-lob-wrap     { padding: 14px 16px; }

  /* KPI */
  .ov-kpi-grid     { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ov-kpi-card     { padding: 12px 14px; }

  /* Sustainability */
  .ov-sustain-grid { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* Timeline */
  .ov-timeline-grid { grid-template-columns: 1fr; gap: 8px; }

  /* History — compact */
  .ov-hist-row     { gap: 12px; }
  .ov-history-list::before { left: calc(44px + 12px + 9px); }
  .ov-hist-year    { width: 44px; font-size: 10.5px; }
  .ov-hist-dot     { width: 14px; height: 14px; }
  .ov-hist-box     { padding: 8px 12px; border-radius: 8px; }

  /* Investment */
  .ov-invest-grid  { grid-template-columns: 1fr; gap: 10px; }

  /* Section title */
  .ov-section-title h2 { font-size: 18px; }
  .ov-section-num      { width: 24px; height: 24px; font-size: 11px; }
}

/* ── RTL (Arabic) specific fixes ── */
[dir="rtl"] .ov-list li {
  padding-left: 0;
  padding-right: 22px;
}
[dir="rtl"] .ov-list li::before {
  left: auto;
  right: 0;
}
[dir="rtl"] .ov-sub-title {
  flex-direction: row;
}
[dir="rtl"] .ov-history-list::before {
  left: auto;
  right: calc(72px + 20px + 9px);
}
[dir="rtl"] .ov-hist-row {
  flex-direction: row-reverse;
}
[dir="rtl"] .ov-hist-year {
  text-align: left;
}
[dir="rtl"] .ov-event {
  flex-direction: row-reverse;
}
[dir="rtl"] .ov-stake-title {
  border-left: none;
  border-right: 3px solid #009189;
  padding-left: 0;
  padding-right: 12px;
}
[dir="rtl"] .ov-awards-list li {
  flex-direction: row-reverse;
}

[dir="rtl"] .ov-banner-inner {
  flex-direction: row-reverse;
}
[dir="rtl"] .ov-rev-label-row {
  flex-direction: row-reverse;
}
[dir="rtl"] .ov-map-label {
  flex-direction: row-reverse;
}

/* RTL mobile */
@media (max-width: 860px) {
  [dir="rtl"] .ov-banner-inner { flex-direction: column; }
  [dir="rtl"] .ov-history-list::before {
    right: calc(52px + 14px + 9px);
    left: auto;
  }
}
@media (max-width: 520px) {
  [dir="rtl"] .ov-history-list::before {
    right: calc(44px + 12px + 9px);
    left: auto;
  }
}

/* ── viewport meta fix — prevent horizontal scroll ── */
.page-overview { overflow-x: clip; }

/* =====================
   LEADERSHIP — MOBILE RESPONSIVE
===================== */

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .lead-body {
    grid-template-columns: 220px 1fr;
    gap: 28px;
  }
  .lead-photo-wrap {
    width: 200px;
    height: 200px;
  }
  .lead-highlight-card {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/* ── Mobile (≤860px) ── */
@media (max-width: 860px) {
  .lead-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Photo col — horizontal layout on mobile */
  .lead-photo-col {
    position: static;
    flex-direction: row;
    align-items: center;
    text-align: right;
    gap: 16px;
    margin-bottom: 8px;
  }

  .lead-photo-wrap {
    width: 100px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 8px;
  }

  .lead-info-box {
    flex: 1;
    text-align: right;
    border-radius: 8px;
    padding: 12px 14px;
  }

  .lead-name { font-size: 13px; }
  .lead-role { font-size: 11px; }

  /* Text col */
  .lead-text-col { gap: 12px; }

  .lead-topic-card {
    padding: 16px 18px;
    border-radius: 6px;
  }

  .lead-topic-card h4 {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .lead-topic-card p {
    font-size: 12.5px;
    line-height: 1.75;
  }

  /* Highlight card — reset negative margin */
  .lead-highlight-card {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 12px;
    padding: 18px 18px;
  }

  /* Read more button */
  .btn-read-more {
    font-size: 12px;
    padding: 9px 18px;
  }
}

/* ── Small mobile (≤520px) ── */
@media (max-width: 520px) {
  .lead-photo-col {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 24px;
  }

  .lead-photo-wrap {
    width: 100%;
    height: 320px;
  }

  .lead-photo-wrap img {
    object-position: top center;
  }

  .lead-info-box {
    width: 100%;
    text-align: center;
  }

  .lead-topic-card { padding: 14px 16px; }
  .lead-topic-card h4 { font-size: 12.5px; }
  .lead-topic-card p  { font-size: 12px; }
}

/* ── RTL Leadership fixes ── */
[dir="rtl"] .lead-photo-col {
  text-align: left;
}

[dir="rtl"] .lead-info-box {
  text-align: right;
}

[dir="rtl"] .lead-topic-card h4 {
  border-left: none;
  border-right: 3px solid #009189;
  padding-left: 0;
  padding-right: 12px;
}

[dir="rtl"] .lead-highlight-card {
  margin-left: 0;
  margin-right: 0;
}

[dir="rtl"] .lead-highlight-card h4 {
  border-right: none;
  padding-right: 0;
}

/* RTL read more button — align left */
[dir="rtl"] .lead-text-col > div[style*="justify-content:flex-end"] {
  justify-content: flex-start !important;
}

@media (max-width: 860px) {
  [dir="rtl"] .lead-photo-col {
    flex-direction: row-reverse;
    text-align: right;
  }

  [dir="rtl"] .lead-info-box {
    text-align: right;
  }
}

@media (max-width: 520px) {
  [dir="rtl"] .lead-photo-col {
    flex-direction: column;
    align-items: flex-end;
  }

  [dir="rtl"] .lead-info-box {
    text-align: right;
  }
}

/* =====================
   STRATEGIC REVIEW — MOBILE RESPONSIVE
===================== */

/* Value created grid — inline style override */
.ov-card-beige [style*="grid-template-columns:repeat(4"],
.ov-card-beige [style*="grid-template-columns: repeat(4"] {
  display: grid;
}

/* Strategic link grid — inline style override */
.sr-intro-box [style*="grid-template-columns:repeat(5"],
.sr-intro-box [style*="grid-template-columns: repeat(5"] {
  display: grid;
}

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  /* Value created: 4→2 cols */
  .ov-card-beige [style*="grid-template-columns:repeat(4"],
  .ov-card-beige [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Strategic link: 5→3 cols */
  .sr-intro-box [style*="grid-template-columns:repeat(5"],
  .sr-intro-box [style*="grid-template-columns: repeat(5"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  /* Vision pillars: 3→2 cols */
  .sr-pillar-body {
    grid-template-columns: repeat(2, 1fr);
  }
  .sr-pillar-body > div:last-child {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: none;
  }
}

/* ── Mobile (≤860px) ── */
@media (max-width: 860px) {
  /* Value created: 4→1 col */
  .ov-card-beige [style*="grid-template-columns:repeat(4"],
  .ov-card-beige [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
  }

  /* Strategic link: 5→2 cols */
  .sr-intro-box [style*="grid-template-columns:repeat(5"],
  .sr-intro-box [style*="grid-template-columns: repeat(5"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  /* Vision pillars: 3→1 col */
  .sr-pillar-body {
    grid-template-columns: 1fr;
  }
  .sr-pillar-body > div {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }
  .sr-pillar-body > div:last-child {
    border-bottom: none;
    grid-column: auto;
  }

  /* Pillar header */
  .sr-pillar-header {
    padding: 14px 18px;
    gap: 12px;
  }
  .sr-pillar-header h4 { font-size: 13px; }
  .sr-pillar-header p  { font-size: 11px; }
  .sr-pillar-num {
    width: 30px;
    height: 30px;
    font-size: 12px;
    flex-shrink: 0;
  }

  /* KPI pillars: 1fr 2fr → 1 col */
  .sr-kpi-body {
    grid-template-columns: 1fr;
  }
  .sr-kpi-body > div {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 14px 18px;
  }
  .sr-kpi-body > div:last-child { border-bottom: none; }

  .sr-kpi-header {
    padding: 10px 18px;
    font-size: 12.5px;
  }
  .sr-kpi-num {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  /* Intro box */
  .sr-intro-box {
    padding: 14px 16px;
    font-size: 12px;
  }

  /* Biz cards h5 border — RTL */
  [dir="rtl"] .ov-biz-card h5 {
    border-left: none;
    border-right: 3px solid #009189;
    padding-left: 0;
    padding-right: 10px;
  }

  /* Biz cards p bullet — RTL */
  [dir="rtl"] .ov-biz-card p {
    padding-left: 0;
    padding-right: 18px;
  }
  [dir="rtl"] .ov-biz-card p::before {
    left: auto;
    right: 0;
  }
}

/* ── Small mobile (≤520px) ── */
@media (max-width: 520px) {
  /* Value created: 2→1 col */
  .ov-card-beige [style*="grid-template-columns:repeat(4"],
  .ov-card-beige [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Strategic link: 2→1 col */
  .sr-intro-box [style*="grid-template-columns:repeat(5"],
  .sr-intro-box [style*="grid-template-columns: repeat(5"] {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .sr-pillar-body > div { padding: 14px 16px; }
  .sr-kpi-body > div    { padding: 12px 16px; }
}

/* ── RTL Strategic Review fixes ── */
[dir="rtl"] .sr-pillar-body > div {
  border-right: none;
  border-left: 1px solid #f0f0f0;
}
[dir="rtl"] .sr-pillar-body > div:last-child {
  border-left: none;
}
[dir="rtl"] .sr-kpi-body > div {
  border-right: none;
  border-left: 1px solid #f0f0f0;
}
[dir="rtl"] .sr-kpi-body > div:last-child {
  border-left: none;
}
[dir="rtl"] .sr-pillar-header {
  flex-direction: row-reverse;
}
[dir="rtl"] .sr-kpi-header {
  flex-direction: row-reverse;
}


@media (max-width: 860px) {
  [dir="rtl"] .sr-pillar-body > div {
    border-left: none;
    border-bottom: 1px solid #f0f0f0;
  }
  [dir="rtl"] .sr-kpi-body > div {
    border-left: none;
    border-bottom: 1px solid #f0f0f0;
  }
}

/* =====================
   OPERATING REVIEW — MOBILE RESPONSIVE
===================== */

/* ─── Utility: override inline grid styles ─── */

/* 4-col KPI grids (Operating Highlights, Grey, White sections) */
.ov-section [style*="grid-template-columns:repeat(4"],
.ov-section [style*="grid-template-columns: repeat(4"] {
  display: grid;
}

/* 5-col KPI grids (White Cement) */
.ov-section [style*="grid-template-columns:repeat(5"],
.ov-section [style*="grid-template-columns: repeat(5"] {
  display: grid;
}

/* 3-col grids */
.ov-section [style*="grid-template-columns:repeat(3"],
.ov-section [style*="grid-template-columns: repeat(3"] {
  display: grid;
}

/* 2-col grids (charts, tables) */
.ov-section [style*="grid-template-columns:1fr 1fr"],
.ov-section [style*="grid-template-columns: 1fr 1fr"] {
  display: grid;
}

/* Chart wrap — prevent overflow */
.chart-wrap, .chart-wrap-ar {
  overflow: hidden;
  max-width: 100%;
}

/* Tables — horizontal scroll on mobile */
.ov-section table {
  min-width: 400px;
}
.ov-section .table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ─── Tablet (≤1024px) ─── */
@media (max-width: 1024px) {
  /* 5-col → 3-col */
  .ov-section [style*="grid-template-columns:repeat(5"],
  .ov-section [style*="grid-template-columns: repeat(5"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  /* 4-col → 2-col */
  .ov-section [style*="grid-template-columns:repeat(4"],
  .ov-section [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ─── Mobile (≤860px) ─── */
@media (max-width: 860px) {
  /* 5-col → 2-col */
  .ov-section [style*="grid-template-columns:repeat(5"],
  .ov-section [style*="grid-template-columns: repeat(5"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  /* 4-col → 2-col */
  .ov-section [style*="grid-template-columns:repeat(4"],
  .ov-section [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  /* 3-col → 1-col */
  .ov-section [style*="grid-template-columns:repeat(3"],
  .ov-section [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  /* 2-col charts/tables → 1-col */
  .ov-section [style*="grid-template-columns:1fr 1fr"],
  .ov-section [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Tables — wrap in scroll container */
  .ov-section table {
    font-size: 11px;
    min-width: 360px;
  }
  .ov-section div:has(> table) {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Beige performance cards */
  .ov-section [style*="background:#F1D3B5"][style*="border-radius:12px"],
  .ov-section [style*="background:#F1D3B5"][style*="border-radius: 12px"] {
    padding: 18px 16px !important;
  }

  /* Numbered cards (01, 02, 03) */
  .ov-section [style*="border-radius:10px"][style*="padding:22px 26px"],
  .ov-section [style*="border-radius:10px"][style*="padding: 22px 26px"] {
    padding: 16px 18px !important;
  }

  /* Section inner padding */
  .ov-section-inner { padding: 0; }

  /* Chart SVG — allow horizontal scroll if needed */
  .chart-wrap svg,
  .chart-wrap-ar svg {
    min-width: 280px;
  }
}

/* ─── Small mobile (≤520px) ─── */
@media (max-width: 520px) {
  /* 4-col → 1-col */
  .ov-section [style*="grid-template-columns:repeat(4"],
  .ov-section [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* 5-col → 1-col */
  .ov-section [style*="grid-template-columns:repeat(5"],
  .ov-section [style*="grid-template-columns: repeat(5"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Tables smaller font */
  .ov-section table {
    font-size: 10.5px;
  }
  .ov-section table th,
  .ov-section table td {
    padding: 6px 8px !important;
  }
}

/* ─── RTL Operating Review fixes ─── */
[dir="rtl"] .ov-section [style*="padding-left:14px"] {
  padding-left: 0 !important;
  padding-right: 14px;
}
[dir="rtl"] .ov-section li span[style*="position:absolute; left:0"] {
  left: auto !important;
  right: 0;
}

/* Chart tooltip RTL */
[dir="rtl"] #grey-tip-ar,
[dir="rtl"] #white-tip-ar {
  text-align: right;
}

/* ─── ov-section padding override for operating review ─── */
/* The ov-section already has padding:40px 100px from base CSS,
   which is handled by the existing responsive rules in overview.css.
   These rules target the inline-styled grids inside. */

/* ─── Operating Review — Table scroll wrappers ─── */
@media (max-width: 768px) {
  /* Tables fill full width, no forced scroll */
  .ov-section div > table {
    width: 100%;
    display: table;
    overflow-x: visible;
  }

  /* Keep cell text wrapping */
  .ov-section div > table td,
  .ov-section div > table th {
    white-space: normal;
    word-break: break-word;
  }

  /* Chart containers — allow scroll */
  .chart-wrap,
  .chart-wrap-ar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Legend flex wrap */
  .chart-wrap > div[style*="display:flex"],
  .chart-wrap-ar > div[style*="display:flex"] {
    flex-wrap: wrap;
    justify-content: center !important;
    gap: 10px !important;
  }

  /* Numbered performance cards — reduce padding */
  .ov-section [style*="padding:22px 26px"] {
    padding: 14px 16px !important;
  }
  .ov-section [style*="padding:28px 32px"] {
    padding: 18px 16px !important;
  }

  /* Fuel mix box */
  .ov-section [style*="background:#F1D3B5"][style*="border-radius:8px"] {
    padding: 12px 14px !important;
  }
}

/* =====================
   SUSTAINABILITY — MOBILE RESPONSIVE
===================== */

/* ─── Tablet (≤1024px) ─── */
@media (max-width: 1024px) {
  /* 5-col Human Capital → 3-col */
  .ov-section [style*="grid-template-columns:repeat(5,1fr)"],
  .ov-section [style*="grid-template-columns: repeat(5, 1fr)"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  /* 3-col pillar cards → 2-col */
  .ov-section [style*="grid-template-columns:repeat(3,1fr)"],
  .ov-section [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Fixed 300px image col → auto */
  .ov-section [style*="grid-template-columns:300px 1fr"],
  .ov-section [style*="grid-template-columns: 300px 1fr"] {
    grid-template-columns: 260px 1fr !important;
  }
}

/* ─── Mobile (≤860px) ─── */
@media (max-width: 860px) {
  /* 5-col → 2-col */
  .ov-section [style*="grid-template-columns:repeat(5,1fr)"],
  .ov-section [style*="grid-template-columns: repeat(5, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  /* 3-col → 1-col */
  .ov-section [style*="grid-template-columns:repeat(3,1fr)"],
  .ov-section [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  /* 2-col → 1-col */
  .ov-section [style*="grid-template-columns:1fr 1fr"],
  .ov-section [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Fixed 300px image col → full width stacked */
  .ov-section [style*="grid-template-columns:300px 1fr"],
  .ov-section [style*="grid-template-columns: 300px 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Pillar card padding */
  .ov-section [style*="padding:20px 22px"],
  .ov-section [style*="padding: 20px 22px"] {
    padding: 14px 16px !important;
  }
  .ov-section [style*="padding:22px 24px"],
  .ov-section [style*="padding: 22px 24px"] {
    padding: 14px 16px !important;
  }
  .ov-section [style*="padding:24px"],
  .ov-section [style*="padding: 24px"] {
    padding: 16px !important;
  }

  /* Pillar header */
  .ov-section [style*="background:#009189"][style*="padding:12px 24px"],
  .ov-section [style*="background:#009189"][style*="padding: 12px 24px"] {
    padding: 10px 16px !important;
  }

  /* Nationality badges — wrap nicely */
  .ov-section [style*="display:flex"][style*="flex-wrap:wrap"] {
    gap: 6px !important;
  }

  /* KPI large numbers */
  .ov-section [style*="font-size:clamp(22px,2.2vw,30px)"] {
    font-size: clamp(20px, 5vw, 26px) !important;
  }
}

/* ─── Small mobile (≤520px) ─── */
@media (max-width: 520px) {
  /* 5-col → 2-col (keep 2 for KPIs) */
  .ov-section [style*="grid-template-columns:repeat(5,1fr)"],
  .ov-section [style*="grid-template-columns: repeat(5, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* 2-col → 1-col on very small */
  .ov-section [style*="grid-template-columns:1fr 1fr"],
  .ov-section [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Reduce card padding further */
  .ov-section [style*="padding:20px 22px"],
  .ov-section [style*="padding:22px 24px"],
  .ov-section [style*="padding:24px"] {
    padding: 12px 14px !important;
  }

  /* Pillar header font */
  .ov-section [style*="background:#009189"] span[style*="font-weight:700"] {
    font-size: 12px !important;
  }
}

/* ─── RTL Sustainability fixes ─── */
[dir="rtl"] .ov-section [style*="padding-left:18px"] {
  padding-left: 0 !important;
  padding-right: 18px;
}
[dir="rtl"] .ov-section li span[style*="position:absolute;left:0"] {
  left: auto !important;
  right: 0;
}
[dir="rtl"] .ov-section li[style*="padding-left:18px"] {
  padding-left: 0 !important;
  padding-right: 18px;
}

/* =====================
   GOVERNANCE — MOBILE RESPONSIVE
===================== */

/* ─── Board member cards ─── */
.bod-item { overflow: hidden; }

.bod-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

/* ─── Tablet (≤1024px) ─── */
@media (max-width: 1024px) {
  /* Executive grid: 3→2 */
  .ov-section [style*="grid-template-columns:repeat(3,1fr)"],
  .ov-section [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Board details: 3→2 */
  .bod-details-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/* ─── Mobile (≤860px) ─── */
@media (max-width: 860px) {
  /* Committee grid: 2→1 */
  .ov-section [style*="grid-template-columns:1fr 1fr"],
  .ov-section [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Executive grid: 3→1 */
  .ov-section [style*="grid-template-columns:repeat(3,1fr)"],
  .ov-section [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Board details: 3→1 */
  .bod-details-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Board card */
  .bod-card {
    padding: 14px 16px;
    gap: 12px;
  }
  .bod-details {
    padding: 16px;
  }

  /* Beige external members box */
  .ov-section [style*="background:#F1D3B5"][style*="padding:28px 32px"],
  .ov-section [style*="background:#F1D3B5"][style*="padding: 28px 32px"] {
    padding: 16px !important;
  }

  /* Committee card padding */
  .ov-section [style*="padding:20px 24px"][style*="display:flex"][style*="flex-direction:column"] {
    padding: 14px 16px !important;
  }

  /* Executive cards */
  .ov-section [style*="border-radius:12px"][style*="padding:24px"] {
    padding: 16px !important;
  }

  /* Committee header */
  .ov-section [style*="background:#009189"][style*="padding:12px 20px"],
  .ov-section [style*="background:#343741"][style*="padding:12px 20px"] {
    padding: 10px 14px !important;
  }

  /* Member list indent */
  .ov-section p[style*="margin:0 0 0 16px"] {
    margin-left: 12px !important;
  }
}

/* ─── Small mobile (≤520px) ─── */
@media (max-width: 520px) {
  .bod-card { padding: 12px 14px; gap: 10px; }
  .bod-photo { width: 44px !important; height: 44px !important; }
  .bod-details { padding: 12px; }
  .bod-details-grid { gap: 12px; }

  /* Executive photo */
  .ov-section img[style*="width:80px"] {
    width: 64px !important;
    height: 64px !important;
  }

  /* Reduce card padding */
  .ov-section [style*="border-radius:12px"][style*="padding:24px"] {
    padding: 14px !important;
  }
}

/* ─── RTL Governance fixes ─── */
[dir="rtl"] .bod-card {
  flex-direction: row-reverse;
}
[dir="rtl"] .bod-chevron {
  transform-origin: center;
}
[dir="rtl"] .bod-item.open .bod-chevron {
  transform: rotate(180deg);
}
[dir="rtl"] .bod-details-col ul li {
  padding-right: 12px;
  padding-left: 0;
}
[dir="rtl"] .bod-details-col ul li::before {
  right: 0;
  left: auto;
}
[dir="rtl"] .ov-section p[style*="margin:0 0 0 16px"] {
  margin-left: 0 !important;
  margin-right: 16px;
}

@media (max-width: 860px) {
  [dir="rtl"] .ov-section p[style*="margin:0 0 0 16px"] {
    margin-left: 0 !important;
    margin-right: 12px;
  }
}

/* =====================
   FINANCIAL REVIEW — MOBILE RESPONSIVE
===================== */

/* ─── SVG Charts — scale with container, no scroll ─── */
.fc-wrap, .bc2-wrap {
  overflow: visible;
  max-width: 100%;
  position: relative;
}
.fc-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

/* ─── Tooltip clipping fix ─── */
.fc-tooltip {
  white-space: nowrap;
  max-width: none;
}

/* ─── Donut charts — direction fix ─── */
.donut-wrap svg { direction: ltr; }

/* ─── Tablet (≤1024px) ─── */
@media (max-width: 1024px) {
  /* 4-col KPI → 2-col */
  .page-financial-review .ov-section [style*="grid-template-columns:repeat(4,1fr)"],
  .page-financial-review .ov-section [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* 3-col donuts/ratios → 3-col (keep, they scale) */
}

/* ─── Mobile (≤860px) ─── */
@media (max-width: 860px) {
  /* 4-col → 2-col */
  .page-financial-review .ov-section [style*="grid-template-columns:repeat(4,1fr)"],
  .page-financial-review .ov-section [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  /* 3-col donuts → 1-col (each donut full width) */
  .page-financial-review .ov-section [style*="grid-template-columns:repeat(3,1fr)"][style*="gap:24px"],
  .page-financial-review .ov-section [style*="grid-template-columns: repeat(3, 1fr)"][style*="gap: 24px"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* 3-col ratio cards → 3-col (keep, they're small) */

  /* Cash flow beige box padding */
  .page-financial-review .ov-section [style*="background:#F1D3B5"][style*="padding:24px 28px"],
  .page-financial-review .ov-section [style*="background:#F1D3B5"][style*="padding: 24px 28px"] {
    padding: 16px !important;
  }

  /* KPI card padding */
  .page-financial-review .ov-section [style*="padding:18px 20px"] {
    padding: 12px 14px !important;
  }

  /* Tables — horizontal scroll for wide tables */
  .page-financial-review .ov-section table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  .page-financial-review .ov-section table thead,
  .page-financial-review .ov-section table tbody,
  .page-financial-review .ov-section table tr {
    display: table;
    width: 100%;
    table-layout: fixed;
  }

  /* 6-col tables — reduce cell padding */
  .page-financial-review .ov-section table th[style*="padding:12px 16px"],
  .page-financial-review .ov-section table td[style*="padding:10px 16px"],
  .page-financial-review .ov-section table td[style*="padding:11px 16px"] {
    padding: 8px 10px !important;
    font-size: 11px !important;
  }

  /* Chart legend wrap */
  .fc-legend {
    flex-wrap: wrap;
    gap: 10px !important;
    justify-content: center;
  }
}

/* ─── Small mobile (≤520px) ─── */
@media (max-width: 520px) {
  /* 4-col → 2-col (keep 2 for KPIs) */
  .page-financial-review .ov-section [style*="grid-template-columns:repeat(4,1fr)"],
  .page-financial-review .ov-section [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  /* 3-col ratio → 1-col */
  .page-financial-review .ov-section [style*="grid-template-columns:repeat(3,1fr)"][style*="gap:12px"],
  .page-financial-review .ov-section [style*="grid-template-columns: repeat(3, 1fr)"][style*="gap: 12px"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  /* KPI large numbers */
  .page-financial-review .ov-section [style*="font-size:clamp(20px,2vw,28px)"],
  .page-financial-review .ov-section [style*="font-size:clamp(22px,2.2vw,32px)"] {
    font-size: clamp(16px, 5vw, 22px) !important;
  }

  /* Table cells even smaller */
  .page-financial-review .ov-section table th,
  .page-financial-review .ov-section table td {
    padding: 6px 8px !important;
    font-size: 10.5px !important;
  }
}

/* ─── RTL Financial Review fixes ─── */
[dir="rtl"] .fc-wrap,
[dir="rtl"] .bc2-wrap {
  direction: ltr; /* keep charts LTR */
}
[dir="rtl"] .fc-legend {
  direction: rtl;
}
[dir="rtl"] .page-financial-review .ov-section table {
  direction: rtl;
}

