:root {
  --blue: #0b56a3;
  --blue-dark: #06457f;
  --red: #e31b23;
  --green: #21b45b;
  --gold: #f2b022;
  --ink: #182332;
  --muted: #5f6f82;
  --line: #dfe8f3;
  --soft: #f4f8fc;
  --white: #ffffff;
  --shadow: 0 12px 34px rgba(9, 48, 91, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  direction: rtl;
  text-align: right;
  font-family: "Tajawal", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(9, 48, 91, 0.08);
}

.header-inner {
  max-width: 1180px;
  min-height: 82px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  color: var(--blue);
  font-weight: 800;
}

.brand img {
  width: 96px;
  height: auto;
}

.brand strong {
  color: var(--blue);
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-size: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: #34495f;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--blue);
}

.phone-pill,
.small-call,
.footer-call {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 24px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(11, 86, 163, 0.22);
}

.phone-pill[href^="tel:"],
.small-call[href^="tel:"],
.big-number[href^="tel:"],
.footer-call[href^="tel:"],
.floating-btn.phone {
  animation: callPulse 1.8s ease-in-out infinite;
}

.phone-pill[href^="tel:"]::after,
.small-call[href^="tel:"]::after,
.footer-call[href^="tel:"]::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -60%;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-18deg);
  animation: callShine 2.6s ease-in-out infinite;
}

.phone-pill[href^="tel:"] *,
.small-call[href^="tel:"] *,
.footer-call[href^="tel:"] * {
  position: relative;
  z-index: 1;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px;
}

.menu-btn span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--blue);
  border-radius: 5px;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  justify-content: flex-end;
  background: rgba(8, 24, 42, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.2s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-panel {
  width: min(360px, 86vw);
  padding: 26px 20px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(-20px);
}

.mobile-panel a {
  display: block;
  padding: 14px 8px;
  font-weight: 800;
  color: var(--blue);
}

.mobile-panel .phone-pill {
  display: flex;
  width: 100%;
  margin-top: 12px;
  padding: 12px 18px;
  color: #ffffff;
  text-align: center;
}

.mobile-panel .whatsapp-mobile {
  color: #ffffff;
}

.mobile-close {
  float: left;
  border: 0;
  background: transparent;
  color: var(--red);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 18px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  text-align: center;
}

.small-call {
  background: var(--red);
  min-width: 170px;
  margin-bottom: 20px;
}

.hero h1 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 900;
}

.hero h2 {
  margin: 0 auto 18px;
  max-width: 760px;
  color: #1f2b3a;
  font-size: clamp(24px, 3.1vw, 42px);
  line-height: 1.22;
  font-weight: 900;
}

.big-number {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0 18px;
  padding: 8px 18px;
  color: var(--red);
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.big-number::after {
  content: "";
  position: absolute;
  inset: auto 12px 0;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.16;
  animation: numberGlow 1.8s ease-in-out infinite;
}

.hero p,
.intro p,
.text-block p,
.image-block p,
.service-grid p,
.tips li,
.faq p,
.site-footer p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.95;
}

.hero-media {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.hero-media > img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.hero-media strong {
  color: var(--blue);
  font-size: 20px;
}

.whatsapp-strip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
}

.whatsapp-strip img {
  width: 36px;
  height: 36px;
}

.content-wrap {
  width: min(1060px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  padding: 10px 0 22px;
}

.article {
  padding-bottom: 18px;
}

.text-block,
.image-block {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.text-block h2,
.image-block h2,
.areas h2,
.comparison h2,
.tips h2,
.faq h2,
.reviews h2,
.site-footer h2 {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.25;
  font-weight: 900;
}

.text-block h3,
.service-grid h3,
.tips h3,
.site-footer h3 {
  margin: 18px 0 10px;
  color: var(--blue-dark);
  font-size: 24px;
}

ul,
ol {
  margin: 12px 0 0;
  padding: 0 24px 0 0;
}

li {
  margin: 8px 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.image-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: center;
}

.image-block img,
.service-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.service-grid,
.tips-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 18px 0 26px;
}

.service-grid article,
.tips-grid article,
blockquote {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(9, 48, 91, 0.08);
}

.areas,
.reviews {
  margin: 18px 0;
  padding: 34px 0;
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.location-section {
  padding: 32px 0;
  background: #ffffff;
}

.location-box {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 10px 26px rgba(9, 48, 91, 0.08);
}

.location-box h2 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
}

.location-box p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.map-link {
  position: relative;
  display: block;
  width: 100%;
  height: 340px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #dce8f3;
  box-shadow: 0 10px 26px rgba(9, 48, 91, 0.08);
}

.map-link iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 12px 24px rgba(227, 27, 35, 0.28);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #ffffff;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 24px;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(11, 86, 163, 0.22);
}

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

.area-list span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: #30445a;
  font-weight: 700;
  text-align: center;
}

.comparison,
.tips,
.faq {
  padding: 28px 0;
}

.table-scroll {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
}

th,
td {
  padding: 15px 16px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 17px;
}

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

.faq details {
  margin: 12px 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(9, 48, 91, 0.06);
}

.faq summary {
  cursor: pointer;
  color: var(--blue-dark);
  font-size: 20px;
  font-weight: 900;
}

blockquote p {
  margin: 0 0 12px;
  color: #334155;
  font-size: 19px;
  line-height: 1.9;
}

blockquote cite {
  color: var(--blue);
  font-style: normal;
  font-weight: 800;
}

.site-footer {
  padding: 38px 18px 26px;
  background: #0b2f55;
  color: #fff;
}

.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 28px;
}

.site-footer h2,
.site-footer h3,
.site-footer p,
.site-footer li {
  color: #fff;
}

.footer-call {
  background: var(--red);
  margin-top: 8px;
}

.contact-numbers a {
  color: #ffffff;
  font-weight: 900;
}

.partner-link a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.whatsapp-footer,
.whatsapp-mobile {
  background: var(--green);
}

.copyright {
  max-width: 1060px;
  margin: 30px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 15px;
}

.floating-actions {
  position: fixed;
  left: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  z-index: 50;
}

.floating-btn {
  position: absolute;
  left: 0;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.floating-btn.phone::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(33, 180, 91, 0.38);
  border-radius: 50%;
  animation: ringWave 1.8s ease-out infinite;
}

.floating-btn img {
  width: 26px;
  height: 26px;
}

.floating-btn.toggle {
  bottom: 0;
  background: var(--blue);
  z-index: 3;
}

.floating-btn.phone {
  bottom: 76px;
  background: var(--green);
}

.floating-btn.whatsapp {
  bottom: 144px;
  background: #17bd61;
}

.floating-btn.phone,
.floating-btn.whatsapp {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.9);
}

.floating-actions.open .phone,
.floating-actions.open .whatsapp {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

@keyframes callPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: brightness(1);
  }
  50% {
    transform: translateY(-2px) scale(1.035);
    filter: brightness(1.08);
  }
}

@keyframes callShine {
  0% {
    left: -65%;
  }
  45%,
  100% {
    left: 120%;
  }
}

@keyframes numberGlow {
  0%,
  100% {
    opacity: 0.14;
    transform: scaleX(0.88);
  }
  50% {
    opacity: 0.32;
    transform: scaleX(1);
  }
}

@keyframes ringWave {
  0% {
    opacity: 0.78;
    transform: scale(0.8);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone-pill[href^="tel:"],
  .small-call[href^="tel:"],
  .big-number[href^="tel:"],
  .footer-call[href^="tel:"],
  .floating-btn.phone,
  .phone-pill[href^="tel:"]::after,
  .small-call[href^="tel:"]::after,
  .footer-call[href^="tel:"]::after,
  .big-number::after,
  .floating-btn.phone::before {
    animation: none;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 74px;
  }

  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero,
  .image-block,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
  }

  .hero-media {
    order: 2;
  }
}

@media (max-width: 700px) {
  .header-inner {
    gap: 10px;
  }

  .brand img {
    width: 78px;
  }

  .brand small {
    display: none;
  }

  .phone-pill {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 14px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero p,
  .intro p,
  .text-block p,
  .image-block p,
  .service-grid p,
  li {
    font-size: 16px;
  }

  .service-grid,
  .tips-grid,
  .review-grid,
  .area-list {
    grid-template-columns: 1fr;
  }

  .big-number {
    font-size: 42px;
  }

  .map-link {
    height: 260px;
  }

  .floating-actions {
    left: auto;
    right: 16px;
  }
}
