:root {
  --navy: #081d31;
  --navy-2: #123a5a;
  --sand: #caa25a;
  --sand-light: #f0d292;
  --ink: #162331;
  --muted: #647383;
  --concrete: #eef1f3;
  --line: #d9dee4;
  --white: #ffffff;
  --whatsapp: #19bf6b;
  --shadow: 0 24px 70px rgba(8, 29, 49, .16);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Kufi Arabic", "DIN Next Arabic", "Segoe UI", Tahoma, sans-serif;
  line-height: 1.85;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: absolute; top: 10px; right: -999px; z-index: 30; padding: 8px 12px; background: var(--navy); color: var(--white); }
.skip-link:focus { right: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; gap: 22px; }
.brand { min-width: 260px; display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 48px; height: 48px; border-radius: 8px; object-fit: contain; flex: 0 0 auto; }
.brand span { min-width: 0; overflow: hidden; }
.brand strong, .brand small { display: block; }
.brand strong { color: var(--navy); font-size: 1rem; line-height: 1.2; white-space: nowrap; }
.brand small { color: var(--muted); font-size: .72rem; line-height: 1.45; }
.site-nav { margin-inline-start: auto; display: flex; align-items: center; gap: 16px; color: #2f4050; font-size: .9rem; white-space: nowrap; }
.site-nav a { padding-block: 8px; }
.site-nav a:hover { color: var(--sand); }
.menu-toggle { display: none; }

.nav-cta, .btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}
.nav-cta, .btn-primary { background: var(--sand); color: var(--navy); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); box-shadow: 0 16px 34px rgba(25,191,107,.26); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-outline-light { color: var(--white); border-color: rgba(255,255,255,.45); }

.hero-uae {
  position: relative;
  min-height: 760px;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .34; filter: saturate(.9) contrast(1.08); }
.hero-uae::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,29,49,.98), rgba(8,29,49,.86) 42%, rgba(18,58,90,.58)),
    linear-gradient(180deg, rgba(8,29,49,.4), rgba(8,29,49,.86));
}
.hero-uae::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(8,29,49,.92));
}
.hero-shell {
  position: relative;
  z-index: 1;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: center;
  padding-block: 90px;
}
.hero-copy { max-width: 900px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--sand-light);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0 0 16px; color: inherit; line-height: 1.25; letter-spacing: 0; }
h1 { font-size: clamp(2.7rem, 5.8vw, 5.6rem); max-width: 980px; }
h2 { font-size: clamp(1.8rem, 3.2vw, 3.15rem); }
h3 { font-size: 1.24rem; }
.hero-lead { max-width: 820px; color: #e4edf4; font-size: 1.18rem; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.keyword-tags { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.keyword-tags span {
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #eaf0f5;
  font-size: .82rem;
}
.hero-project-panel {
  align-self: end;
  margin-bottom: 88px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(8,29,49,.78);
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.panel-label { display: inline-flex; margin-bottom: 12px; color: var(--sand-light); font-weight: 900; font-size: .85rem; }
.hero-project-panel strong { display: block; font-size: 1.35rem; line-height: 1.55; }
.hero-project-panel p { color: #cfdbe5; margin-bottom: 0; }

.section { padding-block: 88px; }
.section-muted { background: linear-gradient(180deg, #f6f8f9, #fff); }
.section-head { max-width: 790px; margin-bottom: 34px; }
.section-head p, .split-head > p, .climate-layout p, .reference-grid p, .faq-list p, .quote-strip p { color: var(--muted); font-size: 1.05rem; }
.split-head {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(360px,.7fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 34px;
}

.trust-grid, .process-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 12px;
}
.trust-grid div, .process-grid div {
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8,29,49,.08);
}
.trust-grid strong, .process-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--sand);
  font-size: 1.5rem;
}
.trust-grid span, .process-grid span { color: #263746; font-weight: 800; }

.solution-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 18px;
}
.solution-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.solution-card.feature-card { grid-row: span 2; min-height: 680px; }
.solution-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .78; transition: transform .4s ease; }
.solution-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,29,49,.12), rgba(8,29,49,.9)); }
.solution-card:hover img { transform: scale(1.04); }
.solution-card div { position: absolute; z-index: 1; inset-inline: 22px; inset-block-end: 22px; color: var(--white); }
.solution-card span { color: var(--sand-light); font-size: .82rem; font-weight: 900; }
.solution-card p { color: #d7e2eb; margin-bottom: 0; }

.climate-section { background: var(--navy); color: var(--white); }
.climate-layout {
  display: grid;
  grid-template-columns: minmax(0,.8fr) minmax(420px,1fr);
  gap: 48px;
  align-items: center;
}
.climate-layout p { color: #cbd7e0; }
.climate-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.climate-list span {
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: #eef4f8;
  font-weight: 800;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
.reference-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(8,29,49,.08);
}
.reference-grid img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.reference-grid span, .reference-grid h3, .reference-grid p { margin-inline: 20px; }
.reference-grid span { display: inline-flex; margin-top: 18px; color: var(--sand); font-size: .82rem; font-weight: 900; }
.reference-grid p { margin-bottom: 22px; }

.process-section { background: var(--concrete); }
.process-grid div { background: #fff; }

.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.faq-list summary { cursor: pointer; padding: 18px 20px; color: var(--navy); font-weight: 900; }
.faq-list p { margin: 0; padding: 0 20px 20px; }

.quote-strip {
  padding-block: 74px;
  background: linear-gradient(90deg, rgba(8,29,49,.98), rgba(18,58,90,.94));
  color: var(--white);
}
.quote-inner { display: grid; grid-template-columns: minmax(0,1fr) 430px; gap: 36px; align-items: center; }
.quote-inner p { color: #dbe6ed; max-width: 760px; }

.site-footer { padding-block: 58px 26px; background: #061827; color: #d8e1e9; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .8fr .8fr 1fr; gap: 34px; }
.site-footer .brand strong { color: var(--white); }
.site-footer .brand small, .site-footer p { color: #aebdca; }
.site-footer h2 { color: var(--sand); font-size: 1rem; }
.site-footer a { display: block; margin-bottom: 8px; }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #93a6b7; font-size: .9rem; }
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(25,191,107,.34);
}

@media (max-width: 1120px) {
  .site-nav { display: none; position: absolute; inset-inline: 20px; top: 76px; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: var(--shadow); white-space: normal; }
  .site-nav.is-open { display: grid; grid-template-columns: repeat(2, 1fr); }
  .menu-toggle { display: inline-flex; margin-inline-start: auto; padding: 9px 12px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--navy); font-weight: 900; }
  .nav-cta { display: none; }
  .hero-shell, .split-head, .climate-layout, .quote-inner { grid-template-columns: 1fr; }
  .hero-project-panel { margin-bottom: 0; align-self: auto; }
  .trust-grid, .process-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .solution-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .solution-card.feature-card { grid-row: auto; min-height: 330px; }
  .reference-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand { min-width: 0; max-width: calc(100% - 86px); }
  .brand strong { overflow: hidden; text-overflow: ellipsis; }
  .brand small { display: none; }
  .hero-uae, .hero-shell { min-height: auto; }
  .hero-shell { padding-block: 64px; }
  h1 { font-size: 2.35rem; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .section { padding-block: 62px; }
  .trust-grid, .process-grid, .solution-grid, .climate-list, .reference-grid, .footer-grid { grid-template-columns: 1fr; }
  .solution-card, .solution-card.feature-card { min-height: 360px; }
  .floating-whatsapp { right: 14px; bottom: 14px; min-width: 176px; text-align: center; }
}
