:root {
  --gold: #d7b15a;
  --gold-dark: #b98b2e;
  --red: #12345a;
  --ink: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --paper: #ffffff;
  --soft: #f5f8fc;
  --deep: #07182d;
  --deep-2: #0d2748;
  --shadow: 0 24px 60px rgba(16, 24, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans Arabic", Tahoma, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.75;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(18, 52, 90, 0.08);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(36, 28, 20, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  color: var(--deep);
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand span {
  max-width: 280px;
  line-height: 1.25;
}

.site-nav {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  color: #213955;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 180ms ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 900;
}

.nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--deep), var(--deep-2));
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 10px;
  margin-inline-start: auto;
}

.menu-button span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 120px 0 88px;
  overflow: hidden;
}

.hero-bg,
.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-bg {
  background-image:
    linear-gradient(90deg, rgba(7, 24, 45, 0.96), rgba(13, 39, 72, 0.78), rgba(7, 24, 45, 0.46)),
    url("assets/hero-business.jpg");
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.hero-copy {
  max-width: 710px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900;
  color: #fff;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.3;
}

.hero-lead,
.section-heading p,
.split-copy p,
.vision-copy p,
.chairman-copy p,
.cta-card p {
  color: var(--muted);
  font-size: 19px;
}

.hero .eyebrow,
.hero .hero-lead {
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--deep), var(--deep-2));
  box-shadow: 0 18px 34px rgba(7, 24, 45, 0.22);
}

.button.secondary {
  color: var(--deep);
  background: var(--gold);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.metric {
  min-height: 124px;
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(215, 177, 90, 0.35);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.metric strong {
  color: var(--deep);
  font-size: 38px;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-weight: 700;
}

.services-section {
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.article-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(34, 25, 17, 0.08);
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #f7f2eb;
}

.service-card div,
.article-card div {
  padding: 24px;
}

.service-card h3,
.article-card h3 {
  color: var(--red);
}

.service-card p,
.article-card p {
  color: var(--muted);
}

.service-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-list article,
.why-card,
.stat-card {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(34, 25, 17, 0.06);
}

.service-list span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(211, 161, 44, 0.16);
  color: var(--gold-dark);
  font-weight: 900;
}

.service-list h3 {
  color: var(--red);
  font-size: 20px;
}

.service-list p,
.why-card p,
.stat-card span,
.files-copy p {
  color: var(--muted);
}

.service-details {
  margin-top: 34px;
  padding: 28px;
  display: grid;
  gap: 20px;
  background: linear-gradient(135deg, #fff, #f8fbff);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.08);
}

.service-details h3 {
  margin-bottom: 0;
  color: var(--deep);
  font-size: 30px;
}

.service-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-details-grid article {
  padding: 18px;
  border-right: 3px solid var(--gold);
  background: #fff;
  border-radius: 8px;
}

.service-details-grid h4 {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 20px;
}

.service-details-grid p {
  margin: 0;
  color: var(--muted);
}

.split-grid,
.vision-grid,
.chairman-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 560px;
}

.main-image,
.floating-image,
.chairman-image,
.vision-card img {
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.main-image {
  width: 84%;
  height: 520px;
}

.floating-image {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48%;
  height: 240px;
  border: 8px solid #fff;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
}

.chairman-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 177, 90, 0.12), transparent 24%),
    linear-gradient(135deg, #f7fafc, #eef4fb);
}

.why-section {
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.why-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 21px;
}

.chairman-image {
  width: 100%;
  height: 520px;
  border: 1px solid rgba(215, 177, 90, 0.28);
  background: var(--deep);
  object-position: center;
}

.vision-section {
  background: var(--deep);
  color: #fff;
}

.vision-section .eyebrow,
.vision-section h2 {
  color: #fff;
}

.vision-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 12px;
  padding-inline-start: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
}

.vision-card {
  position: relative;
}

.vision-card img {
  width: 100%;
  height: 470px;
}

.vision-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 20px;
  display: grid;
  gap: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-radius: 8px;
}

.vision-note strong {
  color: var(--red);
  font-size: 22px;
}

.banner-section {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.banner-bg {
  background-image:
    linear-gradient(90deg, rgba(32, 26, 22, 0.78), rgba(32, 26, 22, 0.44)),
    url("assets/services-banner.jpg");
}

.banner-content {
  position: relative;
  color: #fff;
  max-width: 760px;
}

.banner-content .eyebrow,
.banner-content h2 {
  color: #fff;
}

.stats-section,
.files-section {
  background: #fffaf0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.stat-card strong {
  color: var(--red);
  font-size: 28px;
  line-height: 1.2;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.article-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.article-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-weight: 900;
}

.cta-section {
  background: var(--soft);
}

.files-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 38px;
  align-items: start;
}

.files-table {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.consultation-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 177, 90, 0.16), transparent 28%),
    linear-gradient(135deg, var(--deep), #0b203c 58%, #102c51);
  color: #fff;
}

.consultation-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 38px;
  align-items: start;
}

.consultation-copy .eyebrow,
.consultation-copy h2 {
  color: #fff;
}

.consultation-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-info article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-info span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-weight: 900;
}

.contact-info strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.ltr-number {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

.consultation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(215, 177, 90, 0.24);
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26);
}

.consultation-form label {
  display: grid;
  gap: 8px;
  color: var(--deep);
  font-weight: 900;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.consultation-form textarea {
  resize: vertical;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  outline: 3px solid rgba(215, 177, 90, 0.24);
  border-color: var(--gold);
}

.full-field {
  grid-column: 1 / -1;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 18px;
  text-align: right;
  border-bottom: 1px solid var(--line);
}

th {
  color: #fff;
  background: var(--red);
  font-weight: 900;
}

tr:last-child td {
  border-bottom: 0;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 46px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  padding: 52px 0;
  background: var(--deep);
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 34px;
}

.site-footer img {
  width: 82px;
  margin-bottom: 14px;
}

.site-footer strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .hero-grid,
  .split-grid,
  .vision-grid,
  .chairman-grid,
  .service-grid,
  .service-list,
  .service-details-grid,
  .why-grid,
  .stats-grid,
  .files-grid,
  .consultation-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .image-stack {
    min-height: 460px;
  }

  .main-image {
    width: 100%;
    height: 420px;
  }

  .floating-image {
    width: 56%;
  }

  .cta-card,
  .consultation-form,
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 64px 0;
  }

  .brand span {
    max-width: 190px;
    font-size: 14px;
  }

  .hero {
    padding-top: 84px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-actions,
  .cta-card {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .image-stack {
    min-height: auto;
  }

  .main-image,
  .floating-image,
  .vision-card img {
    position: static;
    width: 100%;
    height: auto;
    border: 0;
    margin-top: 12px;
  }

  .cta-card {
    padding: 28px;
  }
}
