:root {
  /* ألوان مستوحاة من الشعار: سيلفر فاتح للخلفية، سيلفر غامق للشرائط، برتقالي/ذهبي للّمسات */
  --bg: linear-gradient(165deg, #eceff3 0%, #d8dde4 38%, #c4cbd4 100%);
  --surface: #f3f4f6;
  --surface-2: #ffffff;
  --surface-panel: rgba(55, 65, 81, 0.97);
  --ink: #111827;
  --muted: #374151;
  --soft: #6b7280;
  --gold: #d97706;
  --gold-2: #f59e0b;
  --silver: #d1d5db;
  --red: #c92a2a;
  --line: rgba(17, 24, 39, 0.12);
  --shadow: 0 18px 48px rgba(17, 24, 39, 0.14);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 32px));
  --hero-fg: #f9fafb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg) fixed;
  color: var(--ink);
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--gold-2);
  color: #111827;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--gold-2);
  color: #111827;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  background: #374151;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #e5e7eb;
  font-size: 14px;
}

.phone-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.phone-pill {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(245, 158, 11, 0.55);
  border-radius: 999px;
  color: #f9fafb;
  background: rgba(245, 158, 11, 0.12);
  direction: ltr;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(55, 65, 81, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  object-fit: cover;
  background: #1f2937;
}

.brand > span {
  display: block;
  min-width: 0;
}

.brand strong,
.brand > span > span {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 18px;
  color: #f9fafb;
}

.brand > span > span {
  color: var(--gold-2);
  font-size: 13px;
  margin-top: -4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: #e5e7eb;
  font-weight: 700;
  font-size: 14px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(245, 158, 11, 0.18);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.15);
  color: #f9fafb;
  font-size: 24px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: clamp(620px, 82vh, 820px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #4b5563;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(55, 65, 81, 0.25), rgba(31, 41, 55, 0.92) 62%),
    linear-gradient(0deg, rgba(31, 41, 55, 0.82), rgba(55, 65, 81, 0.12) 42%, rgba(31, 41, 55, 0.72));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(270px, 360px);
  align-items: end;
  gap: 40px;
  padding: 92px 0 46px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 34px;
  padding: 5px 12px;
  border: 1px solid rgba(245, 158, 11, 0.55);
  border-radius: 999px;
  color: #fff8e6;
  background: rgba(217, 119, 6, 0.25);
  font-size: 14px;
  font-weight: 700;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 18px;
  color: var(--hero-fg);
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.16;
  letter-spacing: 0;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--gold-2);
}

.lead {
  max-width: 760px;
  margin: 0 0 24px;
  color: #e5e7eb;
  font-size: clamp(17px, 2vw, 22px);
}

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

.hero-actions.is-center {
  justify-content: center;
  margin-top: 28px;
}

.rich-text.is-narrow {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #fbbf24, var(--gold));
  color: #1a1508;
  box-shadow: 0 12px 34px rgba(245, 158, 11, 0.35);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-whatsapp {
  background: #20b45b;
  color: #fff;
}

.hero-panel {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(31, 41, 55, 0.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.panel-list {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.panel-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #d1d5db;
}

.panel-list span:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--surface);
}

.section.dark {
  background:
    linear-gradient(180deg, rgba(245, 158, 11, 0.12), rgba(245, 158, 11, 0)),
    linear-gradient(180deg, #e5e7eb, #d1d5db);
}

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.kicker {
  margin: 0 0 8px;
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 800;
}

h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
  color: var(--hero-fg);
}

h2 {
  font-size: clamp(28px, 3.3vw, 44px);
}

h3 {
  font-size: 22px;
}

.section-head p,
.rich-text p,
.rich-text li {
  color: var(--muted);
  font-size: 17px;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.service-card {
  min-height: 190px;
  padding: 22px;
}

.service-card .icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: rgba(245, 158, 11, 0.18);
  color: var(--gold-2);
  font-size: 24px;
}

.service-card .btn {
  margin-top: 14px;
}

.service-card p,
.area-card p,
.review-card p,
.faq-item p,
.fact-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.area-card {
  overflow: hidden;
}

.area-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.area-card-body {
  padding: 18px;
}

.area-card a {
  color: var(--gold-2);
  font-weight: 800;
}

.stats-band {
  border-block: 1px solid var(--line);
  background: #4b5563;
}

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

.stat {
  min-height: 122px;
  display: grid;
  align-content: center;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.stat strong {
  color: #fde68a;
  font-size: 28px;
}

.stat span {
  color: #e5e7eb;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 14px 42px 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.review-card {
  min-height: 210px;
  padding: 22px;
}

.stars {
  color: var(--gold-2);
  font-size: 20px;
  letter-spacing: 0;
}

.review-card strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  overflow: hidden;
}

.faq-item summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.2);
  color: var(--gold-2);
  font-size: 20px;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(245, 158, 11, 0.35);
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(217, 119, 6, 0.12)),
    linear-gradient(180deg, #374151, #1f2937);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 48px 0;
}

.cta-inner h2,
.cta-inner .kicker {
  color: #f9fafb;
}

.cta-inner p {
  margin: 10px 0 0;
  color: #e5e7eb;
  font-size: 18px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  align-items: end;
  background: #4b5563;
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(55, 65, 81, 0.2), rgba(31, 41, 55, 0.93) 58%),
    linear-gradient(0deg, rgba(31, 41, 55, 0.88), rgba(55, 65, 81, 0.15));
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding: 90px 0 56px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--gold-2);
}

.rich-text {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--surface-2);
}

.rich-text h2,
.rich-text h3 {
  margin-top: 24px;
}

.rich-text h2:first-child,
.rich-text h3:first-child {
  margin-top: 0;
}

.rich-text ul {
  margin: 12px 0 0;
  padding: 0 22px 0 0;
}

.rich-text a {
  color: var(--gold-2);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.coverage-group {
  padding: 22px;
}

.coverage-group h3 {
  color: var(--gold-2);
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.page-hero .breadcrumbs {
  color: #d1d5db;
}

.page-hero .breadcrumbs a {
  color: #fbbf24;
}

.coverage-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(55, 65, 81, 0.08);
  color: var(--muted);
  font-size: 14px;
}

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

.contact-card {
  padding: 22px;
}

.contact-card .number {
  direction: ltr;
  display: block;
  margin-top: 10px;
  color: var(--gold-2);
  font-size: 26px;
  font-weight: 900;
}

.source-note {
  color: var(--soft);
  font-size: 14px;
}

.floating-actions {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  gap: 10px;
}

.float-btn {
  min-width: 136px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 900;
  color: #fff;
}

.float-call {
  background: var(--red);
}

.float-whatsapp {
  background: #20b45b;
}

.site-footer {
  padding: 56px 0 88px;
  background: #374151;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr 0.8fr;
  gap: 24px;
}

.site-footer h3 {
  margin-bottom: 12px;
  font-size: 18px;
  color: #f9fafb;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: #d1d5db;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: #9ca3af;
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero .container,
  .split,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero .container {
    padding-top: 82px;
  }

  .hero-panel {
    max-width: 420px;
  }

  .grid-4,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .topbar .container {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 0;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
    max-width: none;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px 0 12px;
    background: var(--surface-panel);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.2);
    z-index: 100;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    justify-content: flex-start;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 20px;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
    min-height: 52px;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.45;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero::before,
  .page-hero::before {
    background:
      linear-gradient(0deg, rgba(31, 41, 55, 0.92), rgba(55, 65, 81, 0.4)),
      linear-gradient(90deg, rgba(31, 41, 55, 0.78), rgba(31, 41, 55, 0.74));
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero .container,
  .page-hero .container {
    padding-bottom: 176px;
  }

  .coverage-groups {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand strong {
    font-size: 15px;
  }

  .brand > span > span {
    white-space: normal;
  }

  .grid-4,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }

  .page-hero {
    min-height: 360px;
  }

  .floating-actions {
    right: 12px;
    left: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .float-btn {
    min-width: 0;
    width: 100%;
  }

  .contact-card .number {
    font-size: 22px;
  }
}
