:root {
  --ink: #0b1614;
  --forest: #12352f;
  --forest-deep: #0d2824;
  --teal: #1f6f63;
  --mint: #c8e6d4;
  --sand: #f3ebe0;
  --paper: #faf7f2;
  --copper: #c56a2d;
  --copper-dark: #9c4f1d;
  --gold: #e8b86d;
  --text: #16211f;
  --muted: #5c6b67;
  --line: rgba(18, 53, 47, 0.12);
  --shadow: 0 18px 50px rgba(11, 22, 20, 0.12);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  font-family: "Segoe UI", Tahoma, "Noto Naskh Arabic", Arial, sans-serif;
  background: var(--sand);
  color: var(--text);
  line-height: 1.8;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(197, 106, 45, 0.08), transparent 55%),
    radial-gradient(700px 400px at 0% 30%, rgba(31, 111, 99, 0.08), transparent 50%);
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip {
  position: absolute;
  right: -999px;
  top: 8px;
  background: var(--forest);
  color: #fff;
  padding: 8px 14px;
  z-index: 100;
}

.skip:focus {
  right: 8px;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

/* Top notice */
.notice-bar {
  background: var(--forest-deep);
  color: #e7f3ee;
  font-size: 0.84rem;
  padding: 10px 16px;
  text-align: center;
  border-bottom: 3px solid var(--copper);
}

/* Disclaimer */
.disclaimer {
  background: var(--forest-deep);
  color: #e7f3ee;
  font-size: 0.86rem;
  padding: 14px 0;
  border-top: 3px solid var(--copper);
}

.disclaimer:has(+ .dock) {
  padding-bottom: 92px;
}

.disclaimer p {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  text-align: center;
}

.disclaimer strong {
  color: var(--gold);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-weight: 500;
}

.nav a:hover {
  color: var(--teal);
}

.header-cta {
  display: flex;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-copper {
  background: var(--copper);
  color: #fff;
  box-shadow: 0 8px 20px rgba(197, 106, 45, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--line);
}

.btn-forest {
  background: var(--forest);
  color: #fff;
}

.btn-whatsapp {
  background: #128c4a;
  color: #fff;
}

.btn-wide {
  width: 100%;
  min-height: 52px;
}

/* Hero */
.hero {
  padding: 36px 0 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--teal);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.kicker a {
  color: inherit;
}

.kicker a:hover {
  color: var(--copper);
}

.kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
}

h1,
h2,
h3 {
  line-height: 1.35;
}

.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  max-width: 14ch;
  margin-bottom: 14px;
}

.hero h1 span {
  color: var(--teal);
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
}

.stat b {
  display: block;
  font-size: 1.25rem;
  color: var(--forest);
}

.stat span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  background: linear-gradient(160deg, var(--forest) 0%, #1a4d45 58%, #2a6a4f 100%);
  border-radius: 32px;
  min-height: 480px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 230, 212, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 230, 212, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.orbit {
  position: absolute;
  inset: 18%;
  border: 1px dashed rgba(232, 184, 109, 0.35);
  border-radius: 50%;
}

.core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 92px;
  height: 92px;
  margin: -46px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff6, var(--gold) 42%, var(--copper));
  box-shadow: 0 0 0 14px rgba(232, 184, 109, 0.12);
}

.op-card {
  position: absolute;
  width: 148px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  color: inherit;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.op-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.op-card small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

.op-card strong {
  display: block;
  font-size: 1rem;
}

.call-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--copper);
  font-weight: 700;
}

.op-1 { top: 28px; right: 22px; }
.op-2 { top: 28px; left: 22px; }
.op-3 { bottom: 28px; right: 22px; }
.op-4 { bottom: 28px; left: 22px; }

.op-bar {
  height: 6px;
  border-radius: 99px;
  margin-top: 8px;
}

.bar-zain { background: linear-gradient(90deg, #6b1b4d, #c2185b); width: 78%; }
.bar-stc { background: linear-gradient(90deg, #4a148c, #7e57c2); width: 86%; }
.bar-mobily { background: linear-gradient(90deg, #00695c, #26a69a); width: 72%; }
.bar-salam { background: linear-gradient(90deg, #01579b, #29b6f6); width: 80%; }

/* Sections */
.section {
  padding: 56px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.section-head p {
  color: var(--muted);
  max-width: 42ch;
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(18, 53, 47, 0.04);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
}

.service-main,
.service-side {
  padding: 28px;
}

.service-main {
  background:
    linear-gradient(135deg, rgba(18, 53, 47, 0.92), rgba(31, 111, 99, 0.88)),
    repeating-linear-gradient(-32deg, transparent, transparent 12px, rgba(255,255,255,0.03) 12px, rgba(255,255,255,0.03) 13px);
  color: #f6fff9;
}

.tag {
  display: inline-block;
  background: rgba(232, 184, 109, 0.18);
  color: var(--gold);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.tag-dark {
  background: #12352f;
  color: #e8b86d;
}

.service-main h3,
.service-side h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.checklist {
  margin: 18px 0 22px;
  display: grid;
  gap: 8px;
}

.checklist li {
  list-style: none;
  padding-right: 22px;
  position: relative;
}

.checklist li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  right: 0;
  top: 9px;
}

.service-side {
  background: var(--paper);
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  color: inherit;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

a.mini:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.mini b {
  display: block;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: step;
}

.step {
  padding: 22px 18px;
  position: relative;
  overflow: hidden;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--copper);
  margin-bottom: 10px;
}

.step h3 {
  margin-bottom: 6px;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature {
  padding: 24px;
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: var(--forest);
  margin-bottom: 14px;
}

.feature p {
  color: var(--muted);
}

/* Contact */
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.contact-copy {
  padding: 36px;
  background: var(--forest);
  color: #eef7f3;
}

.contact-copy h2 {
  margin: 8px 0 12px;
}

.contact-copy p {
  color: #c5d8d1;
  margin-bottom: 18px;
}

.phone-xl {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 18px;
}

.form {
  padding: 36px;
  background: #fff;
  display: grid;
  gap: 12px;
}

.form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
}

.form input,
.form select,
.form textarea {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(31, 111, 99, 0.12);
}

.form-note {
  color: var(--muted);
  font-size: 0.82rem;
}

/* FAQ / notice */
.faq {
  display: grid;
  gap: 10px;
}

details.panel {
  padding: 0;
}

details summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 700;
}

details summary::-webkit-details-marker {
  display: none;
}

details p {
  padding: 0 20px 18px;
  color: var(--muted);
}

/* Footer */
.footer {
  background: var(--ink);
  color: #d7e4df;
  padding: 36px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--gold);
}

.footer small {
  color: #93a39d;
}

/* Dock */
.dock {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, calc(100% - 20px));
  background: rgba(11, 22, 20, 0.94);
  color: #fff;
  border-radius: 999px;
  padding: 8px;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  gap: 8px;
  z-index: 50;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.dock a,
.dock button {
  border: 0;
  color: #fff;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.dock-call {
  background: var(--teal);
}

.dock-order {
  background: var(--copper);
  font-weight: 700;
}

.dock-wa {
  background: #128c4a;
}

.legal-page {
  padding: 40px 0 120px;
}

.legal-page article {
  padding: 28px;
}

.legal-page h1 {
  margin-bottom: 8px;
}

.legal-page h2 {
  margin: 22px 0 8px;
  font-size: 1.15rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page ol {
  padding-right: 18px;
}

@media (max-width: 900px) {
  .nav,
  .header-cta .btn-ghost {
    display: none;
  }

  .hero-grid,
  .services-grid,
  .contact-box,
  .steps,
  .features {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 390px;
  }

  .op-card {
    width: 132px;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 340px;
  }

  .op-card {
    width: 118px;
    padding: 10px;
  }

  .orbit {
    inset: 22%;
  }
}
