:root {
  --blue: #0d47a1;
  --blue-2: #1565c0;
  --green: #27a844;
  --green-2: #159450;
  --ink: #17243a;
  --muted: #53677f;
  --line: #d9e6f7;
  --soft: #f5f7fa;
  --white: #fff;
  --shadow: 0 18px 42px rgba(13, 71, 161, .12);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Tajawal", Arial, sans-serif;
  direction: rtl;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.72) 24%, rgba(255,255,255,0) 58%),
    radial-gradient(circle at 8% 16%, rgba(39,168,68,.08), transparent 26%);
  z-index: -1;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 42px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217,230,247,.75);
}
.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo { order: 1; flex: 0 0 auto; }
.logo img { width: 205px; }
.main-nav {
  order: 2;
  display: none;
  align-items: center;
  gap: 30px;
  font-weight: 800;
  font-size: .95rem;
}
.main-nav a { color: #182235; }
.main-nav a[aria-current="page"] { color: var(--blue); }
.phone-pill {
  order: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(13,71,161,.24);
}
.phone-pill img { width: 25px; }
.phone-number {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
  font-family: Arial, sans-serif;
  letter-spacing: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 34px 0 0;
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.86) 36%, rgba(255,255,255,.2) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/hero-care.png") center right / cover no-repeat;
  opacity: .28;
  z-index: -2;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
}
.hero-copy { order: 2; padding-bottom: 24px; }
.hero-image { order: 1; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hero-image img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 0 0 12px;
  font-size: clamp(2.25rem, 9vw, 4.6rem);
  line-height: 1.13;
  letter-spacing: 0;
}
h1 span, h1 strong, h1 em { display: block; font-style: normal; font-weight: 900; }
h1 span { color: var(--blue); }
h1 strong, h1 em { color: var(--green); }
.hero-copy p {
  margin-bottom: 22px;
  color: #27364b;
  font-size: 1.15rem;
  max-width: 520px;
  font-weight: 700;
}
.hero-actions {
  display: grid;
  gap: 10px;
  max-width: 360px;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
}
.cta img { width: 24px; }
.cta-green {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 14px 25px rgba(39,168,68,.22);
}
.cta-outline {
  color: var(--blue);
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 12px 24px rgba(13,71,161,.08);
}
.hero-features {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 16px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow);
  border: 1px solid rgba(217,230,247,.85);
}
.hero-features article {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 10px;
  align-items: center;
  padding: 8px;
}
.hero-features img { width: 34px; grid-row: span 2; }
.hero-features b { color: var(--blue); font-size: .95rem; }
.hero-features span { color: var(--muted); font-size: .82rem; font-weight: 700; }

.section-title { text-align: center; margin-bottom: 26px; }
.section-title h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.65rem, 5vw, 2.45rem);
  line-height: 1.2;
  font-weight: 900;
}
.section-title h2::after {
  content: "";
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: -12px;
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: var(--green);
}
.section-title.compact { margin-bottom: 22px; }
.section-title p { color: var(--muted); margin: 10px 0 0; font-weight: 700; }

.challenges { background: #fff; }
.challenge-grid, .services-grid, .why-grid, .process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.challenge-grid article {
  min-height: 170px;
  padding: 22px 18px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fbfdff, #fff);
  box-shadow: 0 14px 32px rgba(13,71,161,.07);
}
.challenge-grid img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin: 0 auto 10px;
}
.challenge-grid h3, .service-card h3, .why-grid h3, .process-grid h3 {
  margin: 0 0 5px;
  color: var(--blue);
  font-weight: 900;
  line-height: 1.25;
}
.challenge-grid p, .service-card p, .why-grid p, .process-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.services { padding-top: 22px; }
.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 32px rgba(13,71,161,.08);
  text-align: center;
  padding-bottom: 18px;
}
.service-card > img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.service-card > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: -29px auto 8px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(13,71,161,.12);
}
.service-card > span img { width: 42px; height: 42px; object-fit: contain; }
.service-card h3, .service-card p, .service-card a { padding-inline: 16px; }
.service-card p { min-height: 54px; font-size: .94rem; }
.service-card a {
  display: inline-flex;
  color: var(--blue);
  font-weight: 900;
  margin-top: 10px;
}

.why-band {
  padding: 32px 0;
  background: linear-gradient(180deg, #eef6ff, #f8fbff);
  border-radius: 0;
}
.why-grid {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
}
.why-grid article {
  text-align: center;
  padding: 18px 14px;
  border-bottom: 1px solid var(--line);
}
.why-grid article:last-child { border-bottom: 0; }
.why-grid img { width: 52px; height: 52px; object-fit: contain; margin: 0 auto 8px; }
.why-grid h3 { font-size: 1rem; }
.why-grid p { font-size: .9rem; }

.process { padding-top: 30px; }
.process-grid article {
  position: relative;
  min-height: 140px;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(13,71,161,.06);
}
.process-grid i {
  position: absolute;
  top: -13px;
  right: 24px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-style: normal;
  font-weight: 900;
}
.process-grid img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  grid-row: span 2;
}
.process-grid p { font-size: .93rem; }

.gallery { padding-top: 18px; }
.gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.gallery-row img {
  width: 100%;
  height: 116px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(13,71,161,.08);
}
.gallery-row img:first-child { grid-column: 1 / -1; }

.lead-section { padding: 18px 0 0; }
.lead-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.lead-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.lead-content { padding: 22px; }
.lead-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.lead-form label { display: grid; gap: 6px; }
.lead-form span {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
}
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 44px;
  padding: 10px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  outline: none;
}
.lead-form textarea { resize: vertical; min-height: 90px; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 4px rgba(21,101,192,.11);
}
.full { grid-column: 1 / -1; }
.form-message { min-height: 26px; margin: 0; color: var(--green-2); font-weight: 900; }

.site-footer {
  margin-top: 0;
  padding: 12px 0 84px;
  background: linear-gradient(90deg, #004aab, #005fc7);
  color: #fff;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
  justify-items: center;
  text-align: center;
}
.footer-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
}
.footer-call img, .socials img { width: 28px; }
.footer-inner p { margin: 0; font-weight: 800; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.footer-logo {
  width: 120px;
  background: #fff;
  border-radius: var(--radius);
  padding: 4px;
}

.mobile-sticky {
  position: fixed;
  z-index: 70;
  right: 12px;
  left: 12px;
  bottom: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mobile-sticky a {
  min-height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0,0,0,.2);
}
.mobile-sticky img { width: 28px; }
.mobile-sticky .whatsapp { background: var(--green); }
.mobile-sticky .call { background: var(--blue); }

@media (min-width: 700px) {
  .challenge-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(5, 1fr); }
  .why-grid article { border-bottom: 0; border-left: 1px solid var(--line); }
  .why-grid article:last-child { border-left: 0; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-row { grid-template-columns: repeat(5, 1fr); }
  .gallery-row img, .gallery-row img:first-child { grid-column: auto; height: 128px; }
  .lead-form { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: auto 1fr auto auto; text-align: start; justify-items: stretch; }
}

@media (min-width: 980px) {
  .main-nav { display: flex; }
  .hero { min-height: 500px; padding-top: 22px; }
  .hero::after { opacity: 0; }
  .hero-grid {
    grid-template-columns: 410px 1fr;
    direction: ltr;
    gap: 20px;
  }
  .hero-copy { order: 1; direction: rtl; padding: 36px 0 60px; }
  .hero-image { order: 2; border-radius: 0; box-shadow: none; align-self: stretch; }
  .hero-image img { height: 100%; min-height: 430px; aspect-ratio: auto; border-radius: 0; }
  .hero-features {
    grid-template-columns: repeat(3, 1fr);
    width: min(680px, calc(100% - 360px));
    margin: -62px 32px 0 0;
    margin-inline-start: auto;
  }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .lead-card { grid-template-columns: 420px 1fr; }
  .lead-image img { height: 100%; min-height: 360px; }
  .mobile-sticky { display: none; }
  .site-footer { padding-bottom: 12px; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 24px, 1120px); }
  .logo img { width: 165px; }
  .phone-pill { padding: 8px 10px; min-width: 44px; }
  .phone-pill span { display: none; }
  .hero-copy { text-align: start; }
  .hero-actions { max-width: none; }
  .service-card > img { height: 132px; }
}
