: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: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  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: 0.78rem;
}
.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: 34px;
}
.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: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-badges span {
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
}
.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: 98px 0; }
.section-muted { background: var(--soft); }
.intro-section { padding-top: 28px; }
.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: 62px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr 0.75fr 0.75fr;
  gap: 42px;
}
.footer-logo { width: 92px; margin-bottom: 18px; }
.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
}
.site-footer a {
  display: block;
  color: rgba(255,255,255,0.82);
  margin-bottom: 9px;
}
.site-footer a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 42px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9rem;
}
.footer-bottom a { margin: 0; }

@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: 74px; }
  .brand img { width: 48px; height: 48px; }
  .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: 74px;
    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: 72px 0; }
  .intro-section { padding-top: 10px; }
  .metrics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@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; }
}

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

/* Language switch and Arabic / RTL support */
.lang-link {
  border: 1px solid var(--line);
  padding: 8px 12px;
  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: "Segoe UI", 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;
  }
}
