:root {
  --blue: #0076b6;
  --blue-dark: #004a78;
  --blue-soft: #e9f6fc;
  --green: #86bc25;
  --green-dark: #5f8d17;
  --ink: #102235;
  --muted: #5c6b79;
  --line: #dce6ee;
  --soft: #f5f9fc;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(12, 50, 76, 0.16);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--blue-dark);
  color: var(--white);
  border-radius: 8px;
}
.skip-link:focus { left: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220,230,238,0.72);
}
.header-inner {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}
.brand img {
  width: 118px;
  height: auto;
  max-height: 90px;
  object-fit: contain;
}
.brand strong {
  display: block;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.2;
  font-weight: 800;
  white-space: nowrap;
}
.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.25;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #25394d;
  font-weight: 650;
  font-size: 0.95rem;
}
.site-nav a:not(.nav-cta) {
  position: relative;
  padding-block: 6px;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0,118,182,0.22);
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 730px;
  overflow: hidden;
  isolation: isolate;
  background: #071929;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,22,35,0.92) 0%, rgba(5,22,35,0.72) 44%, rgba(5,22,35,0.35) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.18), rgba(0,0,0,0.18)),
    url('../img/ad-dulayl-industrial-park.webp') center/cover no-repeat;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -34% -10%;
  height: 42%;
  background: var(--white);
  transform: skewY(-4deg);
  transform-origin: top left;
  z-index: -1;
}
.hero-grid {
  min-height: 730px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 44px;
  align-items: center;
  padding: 90px 0 140px;
}
.hero-copy {
  max-width: 760px;
  color: var(--white);
}
.eyebrow, .section-kicker {
  margin: 0 0 16px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: clamp(0.94rem, 1.25vw, 1.08rem);
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  max-width: 780px;
}
.lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 760px;
  color: rgba(255,255,255,0.88);
  margin: 26px 0 0;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--green);
  color: #102235;
  box-shadow: 0 14px 30px rgba(134,188,37,0.28);
}
.btn-primary:hover { background: #96cd34; }
.btn-light {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
}
.btn-light:hover { background: rgba(255,255,255,0.16); }
.btn-secondary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(0,118,182,0.2);
}
.hero-badges {
  display: flex;
  gap: 16px 24px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero-badges span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.94);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.35;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}
.hero-badges span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(134,188,37,0.16);
}
.hero-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 24px;
  backdrop-filter: blur(10px);
}
.hero-card-logo {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(15,34,53,0.1);
  margin-bottom: 18px;
}
.hero-card-logo img { width: 100%; height: 100%; object-fit: cover; }
.stat-list {
  display: grid;
  gap: 12px;
  margin: 0;
}
.stat-list div {
  padding: 16px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
}
.stat-list dt {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--blue-dark);
}
.stat-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section { padding: 62px 0; }
.section-muted { background: var(--soft); }
.intro-section { padding-top: 20px; }
.split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 66px;
  align-items: start;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin: 0;
}
h3 { line-height: 1.2; margin: 0; }
.rich-text p, .section-heading p, .section-note, .contact-copy p, .sustainability p, .image-panel-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}
.rich-text p:first-child { margin-top: 4px; }
.section-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 42px;
}
.section-heading.narrow { max-width: 760px; }
.section-heading p:last-child { margin: 18px auto 0; }

.cards {
  display: grid;
  gap: 20px;
}
.four-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 40px rgba(16,34,53,0.06);
}
.card-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-weight: 900;
  margin-bottom: 22px;
}
.card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.card p { margin: 0; color: var(--muted); font-size: 0.96rem; }

.metrics-strip {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  padding: 34px 0;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.metrics-grid div {
  padding: 18px 0;
  text-align: center;
}
.metrics-grid strong {
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}
.metrics-grid span {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,0.82);
  font-weight: 650;
}

.opportunity-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 0.8fr;
  gap: 26px;
  align-items: stretch;
}
.opportunity-table-wrap {
  overflow: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(16,34,53,0.06);
}
.opportunity-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: var(--white);
}
.opportunity-table th {
  background: var(--blue-dark);
  color: var(--white);
  text-align: left;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.opportunity-table th, .opportunity-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.opportunity-table td:first-child {
  font-weight: 900;
  color: var(--blue-dark);
}
.opportunity-table tr:last-child td { border-bottom: none; }
.map-card {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 100%;
  overflow: hidden;
  position: relative;
}
.map-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  right: -90px;
  top: -120px;
  background: rgba(134,188,37,0.18);
}
.zone-graphic {
  position: relative;
  height: 270px;
  margin-bottom: 24px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14);
}
.zone {
  position: absolute;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  font-size: 0.9rem;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22);
}
.z1 { left: 9%; top: 14%; width: 31%; height: 32%; background: var(--blue); }
.z2 { right: 10%; top: 18%; width: 31%; height: 25%; background: #58a3c9; }
.z3 { left: 13%; bottom: 13%; width: 39%; height: 34%; background: var(--green-dark); }
.z4 { right: 11%; bottom: 13%; width: 34%; height: 38%; background: var(--green); color: var(--ink); }
.z5 { left: 41%; top: 40%; width: 23%; height: 20%; background: #f3b53f; color: var(--ink); }
.map-card h3 { font-size: 1.45rem; margin-bottom: 10px; }
.map-card p { color: rgba(255,255,255,0.78); }
.text-link {
  display: inline-flex;
  color: var(--green);
  font-weight: 900;
  margin-top: 6px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.sector-grid span {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  font-weight: 800;
  color: var(--blue-dark);
}

.services-section { background: #ffffff; }
.services-split { align-items: center; }
.service-list {
  display: grid;
  gap: 14px;
}
.service-list div {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 22px;
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.service-list strong { color: var(--blue-dark); }
.service-list span { color: var(--muted); }

.image-band {
  background: linear-gradient(135deg, #0d2c44, #063a62);
  color: var(--white);
}
.image-band-inner {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 54px;
  align-items: center;
}
.image-panel {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
  transform: rotate(-1.5deg);
}
.image-panel img { width: 100%; height: 100%; object-fit: cover; }
.image-panel-copy p { color: rgba(255,255,255,0.82); }
.journey-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  counter-reset: steps;
}
.journey-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
}
.journey-list li::before {
  content: counter(steps);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--ink);
  font-weight: 900;
}

.sustainability-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.sustainability-cards article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}
.sustainability-cards h3 { margin-bottom: 10px; color: var(--blue-dark); }
.sustainability-cards p { margin: 0; }

.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: start;
}
.contact-card {
  margin-top: 28px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 22px;
}
.contact-card h3 { color: var(--blue-dark); margin-bottom: 12px; }
.contact-card p { color: var(--muted); margin: 0 0 16px; }
.contact-card p:last-child { margin-bottom: 0; }
.contact-card a { color: var(--blue-dark); font-weight: 750; }
.contact-form {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 18px 60px rgba(16,34,53,0.08);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.form-row { margin-bottom: 16px; }
label {
  display: block;
  font-weight: 850;
  margin-bottom: 7px;
  color: #24394d;
}
input, select, textarea {
  width: 100%;
  border: 1px solid #cbd9e4;
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border 0.18s ease, box-shadow 0.18s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,118,182,0.14);
}
textarea { resize: vertical; }
.form-submit { width: 100%; border: none; margin-top: 4px; }
.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}
.honeypot { display: none; }

.site-footer {
  background: #071929;
  color: rgba(255,255,255,0.78);
  padding: 36px 0 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 0.52fr 1.55fr 0.78fr 1.2fr;
  gap: 28px;
  align-items: start;
}
.footer-logo-column {
  display: flex;
  align-items: flex-start;
}
.footer-about { max-width: 420px; }
.footer-grid p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.93rem;
}
.footer-logo { width: 118px; margin: 0; }
.footer-description a {
  display: inline;
  margin: 0;
  color: var(--white);
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
}
.footer-description a:hover { color: var(--green); }
.footer-icon-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 11px;
}
.site-footer .footer-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0;
}
.footer-icon-link svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-contact p {
  margin: 0 0 7px;
  color: rgba(255,255,255,0.78);
  font-size: 0.94rem;
  line-height: 1.5;
}
.site-footer .footer-heading-link {
  display: inline;
  margin: 0;
  color: var(--white);
  font-size: inherit;
  line-height: inherit;
}
.site-footer .footer-heading-link:hover { color: var(--green); }
.site-footer h3 {
  color: var(--white);
  font-size: 0.96rem;
  margin-bottom: 8px;
}
.site-footer a {
  display: block;
  color: rgba(255,255,255,0.82);
  margin-bottom: 5px;
  line-height: 1.45;
  font-size: 0.94rem;
}
.site-footer a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 22px;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
}
.footer-bottom a { margin: 0; }


@media (max-width: 1120px) and (min-width: 821px) {
  .brand img { width: 102px; }
  .brand strong { font-size: 0.82rem; }
  .brand small { font-size: 0.76rem; }
  .site-nav { gap: 13px; font-size: 0.88rem; }
  .nav-cta { padding: 9px 13px; }
}

@media (max-width: 1050px) {
  .four-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .opportunity-layout, .image-band-inner, .contact-grid, .split { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; align-items: end; }
  .hero-card { max-width: 560px; }
  .service-list div { grid-template-columns: 1fr; gap: 8px; }
  .sector-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { height: 84px; }
  .brand img { width: 88px; height: auto; max-height: 72px; }
  .brand span { display: none; }
  .menu-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
  }
  .site-nav {
    position: absolute;
    top: 84px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 14px 14px;
    border-radius: 14px;
  }
  .site-nav a:hover { background: var(--soft); }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .hero, .hero-grid { min-height: auto; }
  .hero-grid { padding: 76px 0 110px; }
  .hero::after { height: 24%; }
  .section { padding: 46px 0; }
  .intro-section { padding-top: 8px; }
  .metrics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .site-footer { padding: 32px 0 14px; }
  .footer-grid {
    grid-template-columns: 0.65fr 1.35fr;
    gap: 22px 28px;
  }
  .footer-about { max-width: none; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
  }
  .footer-legal-links { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 3rem; }
  .hero-actions .btn { width: 100%; }
  .four-cards, .sector-grid, .metrics-grid { grid-template-columns: 1fr; }
  .card, .map-card, .contact-form { padding: 22px; }
  .zone-graphic { height: 230px; }
  .site-footer { padding-top: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-logo { width: 104px; }
  .footer-bottom { padding-top: 10px; }
  .footer-legal-links { gap: 7px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Language switch and Arabic / RTL support */
.site-nav .lang-link,
.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 44px;
  padding: 10px 16px;
  line-height: 1;
  text-align: center;
}
.lang-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--white);
}
.lang-link:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}
[dir="rtl"] body {
  font-family: "GE SS Two", "GE SS Two Light", Tahoma, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}
[dir="rtl"] .hero-bg {
  background:
    linear-gradient(270deg, rgba(5,22,35,0.92) 0%, rgba(5,22,35,0.72) 44%, rgba(5,22,35,0.35) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.18), rgba(0,0,0,0.18)),
    url('../img/ad-dulayl-industrial-park.webp') center/cover no-repeat;
}
[dir="rtl"] .site-nav a:not(.nav-cta)::after {
  transform-origin: right;
}
[dir="rtl"] .opportunity-table th,
[dir="rtl"] .opportunity-table td {
  text-align: right;
}
[dir="rtl"] .journey-list {
  padding-right: 0;
}
[dir="rtl"] .eyebrow,
[dir="rtl"] .section-kicker {
  letter-spacing: 0.02em;
}
[dir="rtl"] .brand,
[dir="rtl"] .hero-actions,
[dir="rtl"] .hero-badges {
  flex-direction: row;
}
[dir="rtl"] .footer-bottom {
  direction: rtl;
}
[dir="rtl"] input,
[dir="rtl"] select,
[dir="rtl"] textarea {
  text-align: right;
}
[dir="rtl"] input[type="email"],
[dir="rtl"] input[type="tel"] {
  direction: ltr;
  text-align: left;
}
@media (max-width: 820px) {
  [dir="rtl"] .site-nav {
    text-align: right;
  }
}

/* Footer legal links */
.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.footer-legal-links a,
.cookie-settings-link {
  display: inline;
  margin: 0;
  color: rgba(255,255,255,0.82);
}
.cookie-settings-link {
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}
.footer-legal-links a:hover,
.cookie-settings-link:hover,
.cookie-settings-link:focus-visible {
  color: var(--green);
}

/* Cookie consent banner and preferences dialog */
.cookie-banner {
  position: fixed;
  z-index: 1200;
  right: 20px;
  bottom: 20px;
  left: 20px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  color: var(--ink);
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(0,118,182,0.18);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(5,22,35,0.24);
  backdrop-filter: blur(12px);
}
.cookie-banner[hidden],
.cookie-modal-backdrop[hidden] { display: none !important; }
.cookie-banner h2,
.cookie-modal h2,
.cookie-category h3 {
  margin: 0;
  color: var(--blue-dark);
}
.cookie-banner h2 { font-size: 1.2rem; }
.cookie-banner p,
.cookie-category p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.cookie-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 10px;
}
.cookie-policy-links a {
  color: var(--blue-dark);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.cookie-button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 800;
  cursor: pointer;
}
.cookie-button:hover,
.cookie-button:focus-visible { background: var(--blue-soft); }
.cookie-accept {
  background: var(--blue);
  color: var(--white);
}
.cookie-accept:hover,
.cookie-accept:focus-visible { background: var(--blue-dark); }
.cookie-reject { border-color: var(--line); }
.cookie-modal-backdrop {
  position: fixed;
  z-index: 1300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(5,22,35,0.66);
}
.cookie-modal {
  position: relative;
  width: min(650px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: 30px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.35);
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  color: var(--blue-dark);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
[dir="rtl"] .cookie-modal-close { right: auto; left: 16px; }
.cookie-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
}
.cookie-category h3 { font-size: 1rem; }
.cookie-category strong {
  color: var(--green-dark);
  font-size: 0.86rem;
  white-space: nowrap;
}
.cookie-category-toggle { cursor: pointer; }
.cookie-category-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cookie-switch {
  position: relative;
  width: 50px;
  height: 28px;
  border-radius: 999px;
  background: #aab8c4;
  transition: background 0.18s ease;
}
.cookie-switch::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.22);
  transition: transform 0.18s ease;
}
.cookie-category-toggle input:checked + .cookie-switch { background: var(--green); }
.cookie-category-toggle input:checked + .cookie-switch::after { transform: translateX(22px); }
[dir="rtl"] .cookie-switch::after { left: auto; right: 4px; }
[dir="rtl"] .cookie-category-toggle input:checked + .cookie-switch::after { transform: translateX(-22px); }
.cookie-category-toggle input:focus-visible + .cookie-switch {
  outline: 3px solid rgba(0,118,182,0.28);
  outline-offset: 3px;
}
.cookie-modal-links { margin: 20px 0; }
.cookie-save { width: 100%; border: 0; }
.cookie-modal-open { overflow: hidden; }

/* Custom 404 page */
.error-page-card {
  max-width: 780px;
  padding: 48px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.error-page-card > img { width: 145px; margin: 0 auto 24px; }
.error-page-card h1 {
  max-width: 680px;
  margin: 0 auto 18px;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.error-page-card > p { max-width: 650px; margin: 0 auto 28px; color: var(--muted); }
.error-actions { justify-content: center; margin-bottom: 28px; }
.error-arabic {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.error-arabic h2 { margin: 0 0 8px; color: var(--blue-dark); }
.error-arabic p { margin: 0; color: var(--muted); }

@media (max-width: 820px) {
  .footer-legal-links { justify-content: flex-start; }
  .cookie-banner {
    grid-template-columns: 1fr;
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    padding: 18px;
  }
  .cookie-actions { justify-content: stretch; }
  .cookie-button { flex: 1 1 160px; }
}

@media (max-width: 560px) {
  .cookie-actions { display: grid; }
  .cookie-button { width: 100%; }
  .cookie-modal { padding: 24px 18px; }
  .cookie-category { padding: 15px; }
  .error-page-card { padding: 30px 20px; }
}

/* Compact footer responsive alignment overrides */
@media (max-width: 820px) {
  .footer-bottom .footer-legal-links { justify-content: flex-start; }
}

.brand span { max-width: none; }
[dir="rtl"] .brand span { text-align: right; }

/* Arabic footer contact alignment */
[dir="rtl"] .footer-contact {
  text-align: right;
}
[dir="rtl"] .footer-contact > a[href^="tel:"],
[dir="rtl"] .footer-contact > a[href^="mailto:"] {
  display: block;
  width: 100%;
  direction: ltr;
  text-align: right;
  unicode-bidi: isolate;
}
[dir="rtl"] .footer-contact .footer-icon-links {
  direction: rtl;
  justify-content: flex-start;
}
[dir="rtl"] .footer-contact .footer-icon-link {
  direction: rtl;
}

/* Keep Arabic contact lines right-aligned while rendering Latin contact details correctly. */
[dir="rtl"] .contact-card .contact-details-rtl {
  direction: rtl;
  text-align: right;
}
[dir="rtl"] .contact-card .contact-ltr {
  display: inline-block;
  direction: ltr;
  unicode-bidi: isolate;
  text-align: left;
}


/* Inline corporate website link: preserve surrounding typography */
.inline-company-link {
  color: inherit;
  font: inherit;
  text-decoration: none;
}
.inline-company-link:hover,
.inline-company-link:focus-visible {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Keep all footer legal controls typographically identical. */
.site-footer .footer-legal-links > a,
.site-footer .footer-legal-links > .cookie-settings-link {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.82);
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: normal;
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none;
}

/* ========================================================================== 
   V11 PROFESSIONAL UI / UX REFINEMENT
   Baseline preserved separately as v10.1-fixed.
   ========================================================================== */
:root {
  --blue: #0a78b5;
  --blue-dark: #063a5d;
  --blue-deep: #08283f;
  --blue-soft: #eaf5fb;
  --green: #86bc25;
  --green-dark: #5e8d17;
  --ink: #10283d;
  --muted: #607284;
  --line: #dce7ee;
  --soft: #f5f8fa;
  --soft-blue: #eef6fa;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(9, 46, 72, 0.08);
  --shadow: 0 24px 70px rgba(8, 40, 63, 0.14);
  --shadow-strong: 0 34px 90px rgba(5, 30, 48, 0.22);
  --radius: 22px;
  --max: 1240px;
}

body {
  background: #fff;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.68;
}

.container { width: min(calc(100% - 56px), var(--max)); }

.site-header {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(16,40,61,0.08);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.985);
  box-shadow: 0 10px 34px rgba(7,39,61,0.09);
}
.header-inner { height: 92px; gap: 28px; }
.brand { gap: 14px; }
.brand img { width: 106px; max-height: 76px; }
.brand strong {
  font-size: 0.86rem;
  letter-spacing: -0.01em;
  color: var(--blue-deep);
}
.brand small {
  margin-top: 4px;
  color: #718291;
  font-size: 0.77rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 650;
}
.site-nav { gap: 4px; font-size: 0.91rem; }
.site-nav a:not(.nav-cta) {
  padding: 10px 12px;
  border-radius: 10px;
  transition: color 0.18s ease, background 0.18s ease;
}
.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta):focus-visible {
  color: var(--blue-dark);
  background: var(--blue-soft);
}
.site-nav a:not(.nav-cta)::after { display: none; }
.site-nav .lang-link,
.site-nav .nav-cta {
  min-width: 110px;
  min-height: 42px;
  border-radius: 12px;
  padding: 10px 15px;
}
.lang-link { border-color: #cbdde8; }
.nav-cta {
  background: linear-gradient(135deg, var(--blue), #05639a);
  box-shadow: 0 10px 24px rgba(10,120,181,0.22);
}
.nav-cta:hover,
.nav-cta:focus-visible {
  background: linear-gradient(135deg, #0d87ca, var(--blue-dark));
  transform: translateY(-1px);
}

.hero {
  min-height: 682px;
  background: var(--blue-deep);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-bg {
  background:
    linear-gradient(90deg, rgba(4,26,42,0.96) 0%, rgba(4,26,42,0.87) 38%, rgba(4,26,42,0.57) 69%, rgba(4,26,42,0.30) 100%),
    linear-gradient(0deg, rgba(5,28,45,0.18), rgba(5,28,45,0.18)),
    url('../img/ad-dulayl-industrial-park.webp') center 46%/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 9% 18%, rgba(10,120,181,0.22), transparent 30%),
    radial-gradient(circle at 76% 88%, rgba(134,188,37,0.12), transparent 26%);
}
.hero::after { display: none; }
.hero-grid {
  min-height: 682px;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 64px;
  padding: 72px 0 70px;
}
.hero-copy { max-width: 790px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 21px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.94);
  letter-spacing: 0.055em;
  font-size: 0.76rem;
  backdrop-filter: blur(8px);
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(134,188,37,0.16);
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 6.2vw, 5.55rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
.lead {
  max-width: 735px;
  margin-top: 24px;
  color: rgba(255,255,255,0.84);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
  line-height: 1.72;
}
.hero-badges { gap: 10px; margin-top: 27px; }
.hero-badges span {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: 0.84rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.hero-badges span::before {
  width: 6px;
  height: 6px;
  flex-basis: 6px;
  box-shadow: none;
}
.hero-actions { margin-top: 28px; gap: 12px; }
.btn {
  min-height: 50px;
  padding: 13px 21px;
  border-radius: 13px;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}
.btn::after {
  content: "→";
  margin-inline-start: 10px;
  font-size: 1.05em;
  line-height: 1;
  transition: transform 0.18s ease;
}
[dir="rtl"] .btn::after { content: "←"; }
.btn:hover::after { transform: translateX(3px); }
[dir="rtl"] .btn:hover::after { transform: translateX(-3px); }
.btn-primary {
  background: var(--green);
  box-shadow: 0 16px 34px rgba(134,188,37,0.24);
}
.btn-light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.26);
}
.hero-card {
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.56);
  border-radius: 26px;
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-strong);
}
.hero-card-logo {
  width: 68px;
  height: 68px;
  margin-bottom: 16px;
  border-radius: 17px;
  box-shadow: 0 8px 22px rgba(11,46,70,0.12);
}
.stat-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.stat-list div {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 17px;
  border: 1px solid #dde9ef;
  border-radius: 17px;
  background: linear-gradient(155deg, #fff, #f2f7fa);
}
.stat-list dt {
  color: var(--blue-dark);
  font-size: 1.53rem;
  line-height: 1.08;
}
.stat-list dd { font-size: 0.79rem; line-height: 1.45; }

.section { padding: 88px 0; }
.section-muted {
  background:
    linear-gradient(180deg, rgba(238,246,250,0.62), rgba(247,250,252,0.92));
}
.intro-section { padding: 82px 0; }
.split { grid-template-columns: 0.88fr 1.12fr; gap: 86px; }
h2 {
  color: var(--blue-deep);
  font-size: clamp(2.15rem, 4.1vw, 3.55rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: var(--blue);
  font-size: 0.78rem;
  letter-spacing: 0.085em;
}
.section-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: var(--green);
}
.rich-text p,
.section-heading p,
.section-note,
.contact-copy p,
.sustainability p,
.image-panel-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}
.section-heading { max-width: 850px; margin-bottom: 48px; }
.section-heading.narrow { max-width: 800px; }
.section-heading p:last-child { max-width: 720px; }

.cards { gap: 18px; }
.card {
  position: relative;
  overflow: hidden;
  min-height: 272px;
  padding: 29px 26px 27px;
  border: 1px solid rgba(13,78,118,0.11);
  border-radius: 20px;
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: 0;
  transition: opacity 0.22s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(10,120,181,0.24);
  box-shadow: 0 20px 54px rgba(8,48,76,0.12);
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 13px;
  background: linear-gradient(145deg, #eef8fd, #dceff8);
  color: var(--blue-dark);
  font-size: 0.84rem;
}
.card h3 { color: var(--blue-deep); font-size: 1.18rem; }
.card p { font-size: 0.92rem; line-height: 1.72; }

.metrics-strip {
  position: relative;
  overflow: hidden;
  padding: 62px 0;
  background: linear-gradient(125deg, #062a45 0%, #07547f 58%, #0878ad 100%);
}
.metrics-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(134,188,37,0.18), transparent 24%),
    radial-gradient(circle at 90% 90%, rgba(255,255,255,0.10), transparent 27%);
}
.metrics-grid {
  position: relative;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(6px);
}
.metrics-grid div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 22px;
  border-inline-end: 1px solid rgba(255,255,255,0.16);
}
.metrics-grid div:last-child { border-inline-end: 0; }
.metrics-grid strong { font-size: clamp(2rem, 3.3vw, 3.15rem); }
.metrics-grid span { max-width: 220px; margin: 9px auto 0; font-size: 0.86rem; line-height: 1.5; }

.opportunity-layout { grid-template-columns: minmax(0, 1.28fr) 0.72fr; gap: 24px; }
.opportunity-table-wrap {
  border: 1px solid #d6e3eb;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}
.opportunity-table th {
  background: #082f4c;
  font-size: 0.76rem;
  letter-spacing: 0.065em;
}
.opportunity-table th,
.opportunity-table td { padding: 19px 20px; }
.opportunity-table tbody tr { transition: background 0.18s ease; }
.opportunity-table tbody tr:hover { background: #f0f7fb; }
.opportunity-table td { color: #52687a; font-size: 0.92rem; }
.opportunity-table td:first-child { color: var(--blue-dark); font-size: 0.96rem; }
.map-card {
  padding: 25px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  background: linear-gradient(150deg, #092d47, #071c2d);
  box-shadow: 0 24px 60px rgba(6,37,59,0.18);
}
.map-card::after { background: rgba(134,188,37,0.14); }
.zone-graphic {
  height: 268px;
  border-radius: 17px;
  background:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  background-size: 26px 26px, 26px 26px, auto;
}
.zone { border-radius: 12px; font-size: 0.76rem; }
.map-card h3 { font-size: 1.3rem; }
.map-card p { font-size: 0.92rem; line-height: 1.7; }
.text-link {
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}
.text-link::after { content: "→"; }
[dir="rtl"] .text-link::after { content: "←"; }

.sector-grid { gap: 12px; }
.sector-grid span {
  position: relative;
  min-height: 66px;
  padding: 16px 17px 16px 46px;
  border: 1px solid rgba(10,120,181,0.12);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(8,48,76,0.04);
  color: var(--blue-deep);
  font-size: 0.91rem;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.sector-grid span::before {
  content: "✓";
  position: absolute;
  left: 17px;
  top: 50%;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(134,188,37,0.18);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 900;
}
[dir="rtl"] .sector-grid span { padding: 16px 46px 16px 17px; }
[dir="rtl"] .sector-grid span::before { left: auto; right: 17px; }
.sector-grid span:hover { transform: translateY(-2px); border-color: rgba(10,120,181,0.30); }

.services-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #071d2e 0%, #073b5d 100%);
  color: #fff;
}
.services-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  inset: -240px auto auto -210px;
  background: rgba(10,120,181,0.18);
  filter: blur(2px);
}
.services-section .container { position: relative; }
.services-section h2 { color: #fff; }
.services-section .section-kicker { color: var(--green); }
.services-section .section-note { color: rgba(255,255,255,0.72); }
.services-section .btn-secondary {
  margin-top: 12px;
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 14px 32px rgba(0,0,0,0.15);
}
.service-list { counter-reset: service; gap: 11px; }
.service-list div {
  counter-increment: service;
  grid-template-columns: 46px 0.48fr 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.065);
  backdrop-filter: blur(8px);
  transition: background 0.18s ease, transform 0.18s ease;
}
.service-list div::before {
  content: "0" counter(service);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(134,188,37,0.16);
  color: #b7df66;
  font-size: 0.76rem;
  font-weight: 900;
}
.service-list div:hover { transform: translateX(4px); background: rgba(255,255,255,0.095); }
[dir="rtl"] .service-list div:hover { transform: translateX(-4px); }
.service-list strong { color: #fff; font-size: 0.94rem; }
.service-list span { color: rgba(255,255,255,0.68); font-size: 0.89rem; line-height: 1.65; }

.image-band {
  background: #fff;
  color: var(--ink);
}
.image-band-inner { grid-template-columns: 0.94fr 1.06fr; gap: 74px; }
.image-panel {
  position: relative;
  min-height: 470px;
  border: 10px solid #fff;
  border-radius: 30px;
  box-shadow: var(--shadow);
  transform: none;
  background: var(--soft);
}
.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(5,30,48,0.14));
}
.image-panel img { min-height: 470px; }
.image-panel-copy p { color: var(--muted); }
.journey-list {
  position: relative;
  gap: 6px;
  margin-top: 30px;
}
.journey-list::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: #d8e6ed;
}
[dir="rtl"] .journey-list::before { left: auto; right: 21px; }
.journey-list li {
  position: relative;
  grid-template-columns: 44px 1fr;
  min-height: 56px;
  gap: 15px;
  color: #3f5669;
  font-size: 0.94rem;
  font-weight: 700;
}
.journey-list li::before {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 6px solid #fff;
  background: var(--blue-soft);
  color: var(--blue-dark);
  box-shadow: 0 0 0 1px #d6e5ed;
}
.journey-list li:first-child::before,
.journey-list li:last-child::before {
  background: var(--green);
  color: var(--blue-deep);
}

.sustainability {
  position: relative;
  overflow: hidden;
}
.sustainability::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: -220px;
  border-radius: 50%;
  background: rgba(134,188,37,0.09);
}
.sustainability .container { position: relative; z-index: 1; }
.sustainability-cards { gap: 12px; }
.sustainability-cards article {
  position: relative;
  overflow: hidden;
  padding: 24px 24px 24px 29px;
  border: 1px solid rgba(10,120,181,0.12);
  border-radius: 16px;
  box-shadow: 0 8px 26px rgba(8,48,76,0.05);
}
.sustainability-cards article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(var(--blue), var(--green));
}
[dir="rtl"] .sustainability-cards article { padding: 24px 29px 24px 24px; }
[dir="rtl"] .sustainability-cards article::before { left: auto; right: 0; }
.sustainability-cards h3 { color: var(--blue-deep); font-size: 1.08rem; }
.sustainability-cards p { font-size: 0.91rem; line-height: 1.7; }

.contact-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 4% 10%, rgba(10,120,181,0.30), transparent 25%),
    linear-gradient(145deg, #061c2c, #073754);
}
.contact-section h2 { color: #fff; }
.contact-section .section-kicker { color: var(--green); }
.contact-copy > p { color: rgba(255,255,255,0.70); }
.contact-grid { grid-template-columns: 0.78fr 1.22fr; gap: 66px; }
.contact-card {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.065);
  backdrop-filter: blur(8px);
}
.contact-card h3 { color: #fff; }
.contact-card p { color: rgba(255,255,255,0.69); }
.contact-card a { color: #fff; text-decoration-color: rgba(134,188,37,0.55); }
.contact-card a:hover { color: #c2e275; }
.contact-form {
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(0,0,0,0.25);
}
.contact-form label { color: #294258; font-size: 0.87rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 48px;
  border-color: #cfdee7;
  border-radius: 11px;
  background: #fbfdfe;
}
.contact-form textarea { min-height: 132px; }
.contact-form .form-note { color: #6a7c8d; }
.contact-form .form-submit {
  min-height: 54px;
  color: #102235;
}

.site-footer {
  position: relative;
  padding: 46px 0 16px;
  background: #041725;
  border-top: 4px solid var(--green);
}
.footer-grid { gap: 36px; }
.footer-logo { width: 126px; }
.site-footer h3 { margin-bottom: 12px; color: #fff; font-size: 0.88rem; letter-spacing: 0.04em; text-transform: uppercase; }
.site-footer a,
.footer-grid p,
.footer-contact p { color: rgba(255,255,255,0.68); }
.footer-bottom { margin-top: 30px; padding-top: 16px; }
.site-footer .footer-legal-links > a,
.site-footer .footer-legal-links > .cookie-settings-link { font-size: 0.86rem; }

/* Progressive enhancement: calm, unobtrusive reveal animation. */
.js-enabled .reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.js-enabled .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* RTL polish */
[dir="rtl"] .hero-bg {
  background:
    linear-gradient(270deg, rgba(4,26,42,0.96) 0%, rgba(4,26,42,0.87) 38%, rgba(4,26,42,0.57) 69%, rgba(4,26,42,0.30) 100%),
    linear-gradient(0deg, rgba(5,28,45,0.18), rgba(5,28,45,0.18)),
    url('../img/ad-dulayl-industrial-park.webp') center 46%/cover no-repeat;
}
[dir="rtl"] .hero h1,
[dir="rtl"] h2 { letter-spacing: 0; line-height: 1.22; }
[dir="rtl"] .eyebrow,
[dir="rtl"] .section-kicker { letter-spacing: 0; }
[dir="rtl"] .service-list div { grid-template-columns: 46px 0.48fr 1fr; }

@media (max-width: 1120px) and (min-width: 821px) {
  .header-inner { gap: 14px; }
  .brand img { width: 94px; }
  .brand strong { font-size: 0.78rem; }
  .brand small { font-size: 0.69rem; }
  .site-nav { gap: 1px; font-size: 0.82rem; }
  .site-nav a:not(.nav-cta) { padding: 9px 8px; }
  .site-nav .lang-link,
  .site-nav .nav-cta { min-width: 92px; padding-inline: 11px; }
}

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding: 72px 0; }
  .hero-card { max-width: 680px; }
  .split,
  .opportunity-layout,
  .image-band-inner,
  .contact-grid { gap: 48px; }
  .service-list div,
  [dir="rtl"] .service-list div { grid-template-columns: 46px 1fr; }
  .service-list span { grid-column: 2; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 30px), var(--max)); }
  .header-inner { height: 78px; }
  .brand img { width: 86px; max-height: 64px; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(8,48,76,0.07);
  }
  .site-nav {
    top: 78px;
    left: 15px;
    right: 15px;
    gap: 3px;
    padding: 12px;
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(5,30,48,0.20);
  }
  .site-nav a:not(.nav-cta) { padding: 13px 14px; }
  .site-nav .lang-link,
  .site-nav .nav-cta { width: 100%; border-radius: 11px; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; padding: 66px 0 62px; }
  .hero h1 { font-size: clamp(2.75rem, 11vw, 4.5rem); }
  .hero-card { max-width: none; }
  .section { padding: 68px 0; }
  .intro-section { padding: 64px 0; }
  .split,
  .opportunity-layout,
  .image-band-inner,
  .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .metrics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metrics-grid div:nth-child(2) { border-inline-end: 0; }
  .metrics-grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.16); }
  .image-panel,
  .image-panel img { min-height: 360px; }
  .contact-form { padding: 26px; }
  .footer-grid { gap: 28px; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .hero-grid { padding: 52px 0 48px; }
  .hero h1 { font-size: 2.82rem; }
  .lead { font-size: 1rem; }
  .hero-badges span { width: 100%; justify-content: flex-start; }
  .hero-actions .btn { width: 100%; }
  .hero-card { padding: 16px; border-radius: 20px; }
  .stat-list { grid-template-columns: 1fr; }
  .stat-list div { min-height: 102px; }
  .section { padding: 56px 0; }
  h2 { font-size: 2.15rem; }
  .card { min-height: 0; padding: 24px; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metrics-grid div { min-height: 122px; border-inline-end: 0; border-bottom: 1px solid rgba(255,255,255,0.16); }
  .metrics-grid div:last-child { border-bottom: 0; }
  .opportunity-table th,
  .opportunity-table td { padding: 16px; }
  .map-card { padding: 20px; }
  .sector-grid { grid-template-columns: 1fr; }
  .service-list div,
  [dir="rtl"] .service-list div { grid-template-columns: 42px 1fr; padding: 17px; }
  .service-list div::before { width: 38px; height: 38px; }
  .service-list span { grid-column: 2; }
  .image-panel,
  .image-panel img { min-height: 280px; }
  .contact-form { padding: 22px 18px; border-radius: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .js-enabled .reveal-item { opacity: 1; transform: none; }
}

/* Prevent hidden accessibility controls from creating RTL horizontal overflow. */
html, body { overflow-x: clip; }
.skip-link {
  left: auto;
  inset-inline-start: 16px;
  transform: translateY(-180%);
  transition: transform 0.18s ease;
}
.skip-link:focus {
  left: auto;
  transform: translateY(0);
}

@media (max-width: 560px) {
  .stat-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-list div { min-height: 132px; padding: 15px; }
  .stat-list dt { font-size: 1.26rem; }
  .stat-list dd { font-size: 0.72rem; }
}
