:root {
  --navy-950: #070f1f;
  --navy-900: #0c1a30;
  --navy-850: #0f2038;
  --navy-800: #122446;
  --navy-700: #1b3160;
  --gold-600: #a97f2e;
  --gold-500: #c9a24b;
  --gold-400: #e3bf6c;
  --gold-300: #f0d999;
  --cream: #f4efe2;
  --muted: #93a4c2;
  --muted-dim: #5c6d8c;
  --radius: 18px;
  --maxw: 1240px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--navy-950);
  color: var(--cream);
  font-family: "IBM Plex Sans Arabic", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
.brand-word {
  font-family: "Cairo", sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 15, 31, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 162, 75, 0.14);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo .mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.logo .type {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--cream);
}
.logo .type span {
  color: var(--gold-400);
}
.logo .tagline {
  font-size: 10.5px;
  color: var(--muted-dim);
  letter-spacing: 0.3px;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}
.nav-links a:hover {
  color: var(--cream);
}
.nav-links a.active {
  color: var(--gold-400);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.97);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  box-shadow: 0 8px 24px -8px rgba(201, 162, 75, 0.6);
}
.btn-gold:hover {
  box-shadow: 0 10px 30px -6px rgba(201, 162, 75, 0.75);
  transform: translateY(-2px);
}
.btn-outline {
  border-color: rgba(201, 162, 75, 0.5);
  color: var(--cream);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(201, 162, 75, 0.1);
  border-color: var(--gold-400);
}
.btn-nav {
  padding: 10px 20px;
  font-size: 13.5px;
}
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(201, 162, 75, 0.3);
  background: transparent;
  color: var(--gold-400);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 88px 0 70px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 900px 500px at 82% 15%,
      rgba(201, 162, 75, 0.14),
      transparent 60%
    ),
    radial-gradient(
      ellipse 700px 600px at 10% 90%,
      rgba(27, 49, 96, 0.5),
      transparent 60%
    );
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.28;
  color: var(--cream);
  margin: 0 0 22px;
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 16.5px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-art {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.hero-art svg {
  width: 100%;
  height: auto;
}

/* ---------- Feature strip ---------- */
.feature-strip {
  position: relative;
  z-index: 3;
  background: var(--navy-850);
  border: 1px solid rgba(201, 162, 75, 0.16);
  border-radius: 22px;
  margin-top: 10px;
  padding: 38px 20px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}
.feature-item {
  text-align: center;
  padding: 8px 14px;
  border-right: 1px solid rgba(159, 176, 201, 0.12);
}
.feature-item:first-child {
  border-right: none;
}
.feature-item .ic {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  color: var(--gold-400);
}
.feature-item h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 12.5px;
  color: var(--muted-dim);
  line-height: 1.6;
}

/* ---------- Section shared ---------- */
section {
  padding: 110px 0;
  position: relative;
}
.sec-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.sec-head h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.4;
}
.sec-head p {
  color: var(--muted);
  font-size: 16px;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--navy-850);
  border: 1px solid rgba(201, 162, 75, 0.14);
  border-radius: var(--radius);
  padding: 34px 26px;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 75, 0.5);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-850));
}
.service-card .ic-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(201, 162, 75, 0.18),
    rgba(201, 162, 75, 0.04)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--gold-400);
}
.service-card h3 {
  font-size: 18.5px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted-dim);
}

/* ---------- Footer ---------- */
footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(201, 162, 75, 0.14);
  padding: 56px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.footer-brand .logo {
  margin-bottom: 0;
}
.footer-col h5 {
  font-size: 14px;
  color: var(--gold-400);
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a,
.footer-col span {
  color: var(--muted);
  font-size: 14px;
}
.footer-col li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-col .ic-sm {
  width: 18px;
  height: 18px;
  color: var(--gold-500);
  flex-shrink: 0;
}
.social-row {
  display: flex;
  gap: 12px;
}
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(201, 162, 75, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.social-row a:hover {
  background: rgba(201, 162, 75, 0.15);
  transform: translateY(-3px);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .feature-strip {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
  }
  .feature-item {
    border-left: none;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-art {
    order: -1;
    min-height: 340px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .wrap {
    padding: 0 20px;
  }
  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 30px;
  }
  .btn-nav {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
  * {
    animation: none !important;
  }
}
