:root {
  --ink: #171717;
  --graphite: #2b2929;
  --muted: #6c6669;
  --line: #e6e1dd;
  --paper: #ffffff;
  --soft: #f6f7f8;
  --orange: #f47724;
  --orange-dark: #c95713;
  --sage: #5f7467;
  --shadow: 0 24px 60px rgba(23, 23, 23, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--orange);
  color: #fff;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(230, 225, 221, .9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
}

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

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

.site-nav a {
  padding-block: 10px;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--orange-dark);
  border-color: var(--orange);
}

.header-phone,
.header-cta,
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.header-phone {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  box-shadow: none;
}

.header-phone:hover {
  color: var(--orange-dark);
  border-color: rgba(244, 119, 36, .38);
}

.header-cta,
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 24px rgba(244, 119, 36, .22);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .46);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .22);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  transition: border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.menu-toggle:hover {
  border-color: rgba(244, 119, 36, .42);
  box-shadow: 0 10px 24px rgba(23, 23, 23, .08);
}

.menu-icon {
  width: 22px;
  height: 18px;
  display: grid;
  align-content: center;
  gap: 5px;
  flex: 0 0 auto;
}

.menu-icon span {
  width: 22px;
  height: 2px;
  display: block;
  background: var(--ink);
  border-radius: 999px;
  transition: transform .22s ease, opacity .22s ease, background-color .22s ease;
}

.menu-toggle b {
  font-size: .9rem;
  line-height: 1;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 720px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 23, 23, .35), rgba(23, 23, 23, .72) 48%, rgba(23, 23, 23, .88)),
    linear-gradient(0deg, rgba(23, 23, 23, .92), rgba(23, 23, 23, .06) 52%, rgba(23, 23, 23, .36));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 108px 74px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: .95rem;
  font-weight: 900;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 3.85rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-contact {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 18px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.hero-contact span {
  color: rgba(255, 255, 255, .7);
  font-weight: 800;
}

.hero-contact a {
  color: #fff;
  font-weight: 900;
}

.hero-facts {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(14px);
}

.hero-facts div {
  padding: 22px;
  background: rgba(23, 23, 23, .42);
}

.hero-facts strong {
  display: block;
  font-size: 1.3rem;
}

.hero-facts span {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: .93rem;
}

.section {
  padding-block: 88px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.35rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.section p {
  color: var(--muted);
  margin: 12px 0 0;
}

.intro-section {
  background:
    linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.intro-showcase {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 44px;
  align-items: center;
}

.intro-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-visual img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: 44% 50%;
}

.intro-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 17, 17, .64), transparent 58%);
}

.intro-visual-card {
  position: absolute;
  inset-inline: 22px;
  inset-block-end: 22px;
  z-index: 1;
  padding: 18px;
  color: #fff;
  background: rgba(17, 17, 17, .72);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.intro-visual-card span {
  color: var(--orange);
  font-weight: 900;
}

.intro-visual-card b {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
}

.intro-content {
  max-width: 720px;
}

.intro-content h2 {
  font-size: 2.8rem;
}

.intro-content > p:not(.section-kicker) {
  max-width: 660px;
  font-size: 1.06rem;
}

.intro-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.intro-highlights div {
  min-height: 122px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.intro-highlights span {
  color: var(--orange);
  font-weight: 900;
}

.intro-highlights b {
  color: var(--ink);
  line-height: 1.7;
}

.intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.intro-tags span {
  padding: 8px 12px;
  color: #4b4547;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 800;
}

.why-section {
  background: #fff;
}

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

.why-card {
  min-height: 250px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.why-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--orange);
  border-radius: 8px;
  font-weight: 900;
  transition: transform .22s ease, background-color .22s ease;
}

.why-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.45;
}

.why-card p {
  margin-top: 10px;
  font-size: .98rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 342px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform .36s ease, filter .36s ease;
}

.service-card:nth-child(3) img {
  object-position: 50% 34%;
}

.service-card:nth-child(4) img {
  object-position: 50% 46%;
}

.service-card div:last-child {
  padding: 22px;
}

.service-card h3,
.process-step h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.45;
}

.service-card p,
.process-step p {
  margin-top: 10px;
  font-size: .98rem;
}

.riyadh-section {
  background: #111;
  color: #fff;
}

.riyadh-grid {
  display: grid;
  grid-template-columns: .92fr 1fr;
  gap: 38px;
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}

.image-panel img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: 50% 60%;
  transition: transform .36s ease, filter .36s ease;
}

.content-panel h2,
.riyadh-section p {
  color: #fff;
}

.content-panel p {
  color: rgba(255, 255, 255, .76);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-inline-start: 34px;
  color: rgba(255, 255, 255, .88);
}

.check-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: .55em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .9);
}

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

.pricing-box {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: center;
}

.price-card {
  display: grid;
  justify-items: center;
  padding: 30px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.price-card span {
  color: rgba(255, 255, 255, .72);
  font-weight: 700;
}

.price-card strong {
  margin-top: 4px;
  color: var(--orange);
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 900;
}

.price-card b {
  margin-bottom: 22px;
  font-size: 1.2rem;
}

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

.process-step {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.process-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--sage);
  border-radius: 8px;
  font-weight: 900;
  transition: transform .22s ease, background-color .22s ease;
}

.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: 46px;
  align-items: start;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

details p {
  padding: 0 20px 18px;
}

.contact-section {
  background: #111;
  color: #fff;
}

.contact-section h2,
.contact-section p {
  color: #fff;
}

.contact-section p {
  color: rgba(255, 255, 255, .76);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-method {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 13px 16px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.contact-method:hover {
  border-color: rgba(244, 119, 36, .62);
  background: rgba(255, 255, 255, .12);
}

.contact-method span {
  color: rgba(255, 255, 255, .66);
  font-weight: 800;
}

.contact-method b {
  color: #fff;
  font-size: 1.02rem;
}

.contact-method-whatsapp {
  background: #128c56;
  border-color: rgba(255, 255, 255, .22);
}

.contact-method-whatsapp:hover {
  background: #0f7b4b;
}

.whatsapp-panel {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 360px;
  padding: 30px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.whatsapp-panel span {
  color: var(--orange);
  font-weight: 900;
}

.whatsapp-panel h3 {
  margin: 0;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.35;
}

.whatsapp-panel p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
}

.whatsapp-panel .btn {
  width: fit-content;
  margin-top: 4px;
}

@media (hover: hover) {
  .intro-visual:hover,
  .intro-highlights div:hover,
  .why-card:hover,
  .service-card:hover,
  .image-panel:hover,
  .price-card:hover,
  .process-step:hover,
  details:hover,
  .contact-method:hover,
  .whatsapp-panel:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 119, 36, .46);
    box-shadow: 0 18px 42px rgba(23, 23, 23, .12);
  }

  .why-card:hover,
  .process-step:hover,
  details:hover {
    background: #fff;
  }

  .why-card:hover span,
  .process-step:hover span {
    transform: scale(1.06);
    background: var(--orange-dark);
  }

  .service-card:hover img,
  .intro-visual:hover img,
  .image-panel:hover img {
    transform: scale(1.045);
    filter: saturate(1.06) contrast(1.03);
  }

  .price-card:hover {
    border-color: rgba(244, 119, 36, .7);
    box-shadow: 0 24px 54px rgba(23, 23, 23, .2);
  }

  .contact-method:hover,
  .whatsapp-panel:hover {
    box-shadow: 0 20px 46px rgba(0, 0, 0, .24);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-visual,
  .intro-visual img,
  .intro-highlights div,
  .why-card,
  .why-card span,
  .service-card,
  .service-card img,
  .image-panel,
  .image-panel img,
  .price-card,
  .process-step,
  .process-step span,
  details,
  .contact-method,
  .whatsapp-panel,
  .floating-whatsapp {
    transition: none;
  }

  .intro-visual:hover,
  .intro-highlights div:hover,
  .why-card:hover,
  .service-card:hover,
  .image-panel:hover,
  .price-card:hover,
  .process-step:hover,
  details:hover,
  .contact-method:hover,
  .whatsapp-panel:hover,
  .floating-whatsapp:hover,
  .service-card:hover img,
  .intro-visual:hover img,
  .image-panel:hover img {
    transform: none;
  }
}

.floating-whatsapp {
  position: fixed;
  left: 24px;
  right: auto;
  bottom: 24px;
  z-index: 40;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  color: #fff;
  background: #128c56;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(18, 140, 86, .36);
  font-weight: 900;
}

.floating-whatsapp:hover {
  background: #0f7b4b;
  transform: translateY(-1px);
}

.floating-whatsapp svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  flex: 0 0 auto;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr 1fr;
  gap: 34px;
  padding-block: 44px;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.site-footer p {
  margin: 10px 0 0;
  color: var(--muted);
}

.site-footer a {
  display: block;
  color: var(--muted);
  margin-top: 8px;
}

.site-footer a:hover {
  color: var(--orange-dark);
}

.footer-bottom {
  padding: 14px 20px;
  color: #fff;
  background: var(--ink);
  text-align: center;
  font-size: .92rem;
}

.footer-search-line {
  padding: 16px 20px 22px;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-search-line p {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  color: rgba(255, 255, 255, .66);
  text-align: center;
  font-size: .94rem;
  font-weight: 800;
}

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

  .menu-toggle {
    display: inline-flex;
    margin-inline-start: auto;
  }

  .site-nav {
    position: absolute;
    inset-inline: 20px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 10px;
  }

  .header-phone,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 660px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .intro-showcase,
  .pricing-box,
  .riyadh-grid,
  .faq-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-visual,
  .intro-visual img {
    height: 380px;
    min-height: 380px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .brand img {
    width: 118px;
  }

  .menu-toggle b {
    display: none;
  }

  .menu-toggle {
    width: 48px;
    min-height: 48px;
    justify-content: center;
    padding: 10px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-block: 76px 42px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-facts,
  .services-grid,
  .intro-highlights,
  .why-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 62px;
  }

  .section h2 {
    font-size: 1.85rem;
  }

  .intro-content h2 {
    font-size: 2rem;
  }

  .intro-visual,
  .intro-visual img {
    height: 310px;
    min-height: 310px;
  }

  .image-panel img {
    height: 360px;
  }

  .price-card strong {
    font-size: 3.8rem;
  }

  .floating-whatsapp {
    left: 14px;
    right: auto;
    bottom: 14px;
    justify-content: center;
  }
}
