:root {
  --red: #eb3d49;
  --red-dark: #c92836;
  --yellow: #fff14e;
  --ink: #1c1c1c;
  --muted: #626262;
  --white: #fffdf2;
  --surface: #f7f4e8;
  --surface-strong: #efe9d6;
  --line: rgba(28, 28, 28, 0.12);
  --shadow: 0 24px 70px rgba(28, 28, 28, 0.13);
  --radius: 22px;
  --shell: min(1160px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "IBM Plex Sans Arabic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  text-align: start;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

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

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px max(16px, calc((100vw - 1160px) / 2));
  background: rgba(255, 253, 242, 0.94);
  border-block-end: 1px solid var(--line);
  backdrop-filter: blur(16px);
  direction: ltr;
}

html[dir="rtl"] .site-header > * {
  direction: ltr;
}

html[dir="ltr"] .site-header > * {
  direction: ltr;
}

.brand {
  display: inline-flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-width: 0;
  order: 1;
  text-align: start;
}

.brand span {
  min-width: 0;
}

html[dir="rtl"] .brand span {
  direction: rtl;
  text-align: start;
}

html[dir="ltr"] .brand span {
  direction: ltr;
  text-align: start;
}

.brand-logo {
  display: block;
  width: clamp(74px, 9vw, 118px);
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 16px rgba(28, 28, 28, 0.08));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  overflow: hidden;
  font-size: clamp(0.95rem, 2vw, 1.14rem);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  order: 2;
}

html[dir="rtl"] .site-nav {
  direction: rtl;
}

.site-nav a {
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  padding: 8px 12px;
  text-align: start;
}

.site-nav a:hover {
  background: var(--surface);
  color: var(--red);
}

.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-call {
  background: var(--red);
  color: white;
  order: 4;
  padding: 10px 16px;
  box-shadow: 0 12px 26px rgba(235, 61, 73, 0.28);
  white-space: nowrap;
}

.header-call small {
  display: inline-flex;
  margin-inline-start: 2px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
}

.header-call:hover,
.btn:hover,
.floating-call:hover {
  transform: translateY(-2px);
}

.lang-toggle {
  display: inline-flex;
  min-width: 46px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  order: 3;
  padding: 8px 12px;
}

html[dir="rtl"] .lang-toggle {
  direction: ltr;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  background-image:
    linear-gradient(var(--ink), var(--ink)),
    linear-gradient(var(--ink), var(--ink)),
    linear-gradient(var(--ink), var(--ink));
  background-position: center calc(50% - 8px), center, center calc(50% + 8px);
  background-repeat: no-repeat;
  background-size: 22px 2px;
  order: 2;
}

html[dir="rtl"] .nav-toggle {
  direction: ltr;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 160px;
  background: linear-gradient(0deg, var(--white), transparent);
  content: "";
}

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

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

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(270deg, rgba(255, 253, 242, 0.9) 0%, rgba(255, 253, 242, 0.62) 42%, rgba(255, 253, 242, 0.06) 100%),
    linear-gradient(180deg, rgba(255, 253, 242, 0.08), rgba(255, 253, 242, 0.74));
  content: "";
}

html[dir="ltr"] .hero-media::after {
  background:
    linear-gradient(90deg, rgba(255, 253, 242, 0.9) 0%, rgba(255, 253, 242, 0.62) 42%, rgba(255, 253, 242, 0.06) 100%),
    linear-gradient(180deg, rgba(255, 253, 242, 0.08), rgba(255, 253, 242, 0.74));
}

.hero-content {
  display: flex;
  min-height: 690px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-items: start;
  padding-block: 80px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 7px 13px;
}

h1,
h2,
h3,
p {
  margin-block-start: 0;
}

h1 {
  max-width: 780px;
  margin-block-end: 18px;
  font-size: clamp(2.65rem, 7vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-block-end: 14px;
  font-size: clamp(1.85rem, 4vw, 3.4rem);
  line-height: 1.18;
}

h3 {
  margin-block-end: 8px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 660px;
  color: #343434;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block: 22px;
}

.btn {
  min-height: 48px;
  padding: 13px 20px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.phone-icon {
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  fill: currentColor;
  vertical-align: -0.16em;
}

.header-call .phone-icon,
.btn-primary .phone-icon,
.floating-call .phone-icon,
.mobile-call-main .phone-icon {
  color: var(--yellow);
}

.contact-band .call-inline-icon {
  background: var(--yellow);
  color: var(--red);
}

.call-inline-icon {
  display: inline-grid;
  width: 0.95em;
  height: 0.95em;
  margin-inline-end: 0.12em;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 0.72em;
  vertical-align: 0.08em;
}

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 18px 40px rgba(235, 61, 73, 0.3);
}

.btn-secondary {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.btn-large {
  min-height: 62px;
  padding-inline: 25px;
  font-size: 1.08rem;
}

.btn strong {
  direction: ltr;
  unicode-bidi: isolate;
  font-weight: 800;
}

.header-call small,
.floating-call small,
.mobile-call-main small,
.call-number,
[href^="tel:"] [dir="ltr"] {
  direction: ltr;
  unicode-bidi: isolate;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  border: 1px solid rgba(235, 61, 73, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 800;
  padding: 8px 12px;
}

.promise,
.why,
.services,
.appliances,
.areas,
.location {
  padding-block: 86px;
}

.promise {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.section-copy p,
.section-heading p,
.area-card p,
.contact-band p {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.promise-grid article,
.appliance-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 40px rgba(28, 28, 28, 0.06);
}

.promise-grid article {
  padding: 22px;
}

.promise-grid span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-block-end: 14px;
  place-items: center;
  border-radius: 15px;
  background: var(--red);
  color: white;
  font-size: 1.3rem;
}

.promise-grid p,
.appliance-card p {
  color: var(--muted);
}

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

.why-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 28px;
  background: var(--ink);
  color: white;
}

.why-strip div {
  min-height: 150px;
  padding: 24px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.12);
}

.why-strip div:first-child {
  background: var(--red);
}

.why-strip strong,
.why-strip span {
  display: block;
}

.why-strip strong {
  margin-block-end: 8px;
  font-size: 1.25rem;
}

.why-strip span {
  color: rgba(255, 255, 255, 0.78);
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 430px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--ink);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.service-card.featured,
.service-card.wide {
  grid-column: span 2;
}

.service-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(28, 28, 28, 0.9), rgba(28, 28, 28, 0.2) 58%, rgba(28, 28, 28, 0.02));
  content: "";
}

.service-card div {
  align-self: flex-end;
  width: 100%;
  padding: 26px;
  color: white;
}

.service-card p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-block-start: 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  padding: 9px 14px;
}

.service-number {
  display: inline-flex;
  margin-block-end: 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 5px 10px;
}

.service-number {
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

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

.call-choice-grid {
  align-items: stretch;
}

.appliance-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
  transition: opacity 180ms ease, transform 180ms ease;
}

.appliance-card::after {
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 0;
  width: 92px;
  height: 92px;
  border-end-start-radius: 100%;
  background: rgba(235, 61, 73, 0.08);
  content: "";
  pointer-events: none;
}

.appliance-card.priority-card {
  border-color: rgba(235, 61, 73, 0.34);
  background: linear-gradient(135deg, #fffdf2 0%, #fff7b8 100%);
}

.appliance-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-block-end: 18px;
}

.appliance-topline strong {
  color: var(--muted);
  font-size: 0.9rem;
}

.appliance-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--red);
  color: white;
  font-weight: 900;
}

.appliance-call {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-block-start: auto;
  color: var(--red);
  font-weight: 900;
}

.call-number {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(28, 28, 28, 0.08);
  font-size: 0.84em;
  font-weight: 900;
  line-height: 1;
  padding: 5px 8px;
  white-space: nowrap;
}

.service-card .call-number {
  background: rgba(28, 28, 28, 0.12);
}

.area-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: center;
  border-radius: 32px;
  background: var(--surface);
  padding: 34px;
}

.area-map {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-map span {
  border: 1px solid rgba(235, 61, 73, 0.2);
  border-radius: 999px;
  background: white;
  font-weight: 800;
  padding: 11px 14px;
}

.area-map span:last-child {
  background: var(--yellow);
  border-color: var(--yellow);
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 24px;
  align-items: stretch;
  border: 1px solid rgba(235, 61, 73, 0.16);
  border-radius: 32px;
  background: linear-gradient(135deg, #ffffff 0%, var(--surface) 100%);
  box-shadow: 0 18px 55px rgba(28, 28, 28, 0.08);
  padding: 22px;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
}

.location-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block-start: 18px;
}

.map-button-icon {
  display: inline-grid;
  width: 1.55em;
  height: 1.55em;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--red);
  font-weight: 900;
  line-height: 1;
}

.map-preview {
  position: relative;
  display: flex;
  min-height: 330px;
  overflow: hidden;
  align-items: flex-end;
  border: 1px solid rgba(28, 28, 28, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.32) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(135deg, #f7e8d8 0%, #efe9d6 42%, #dfe7dc 100%);
  color: var(--ink);
  isolation: isolate;
  padding: 22px;
}

.map-preview::before,
.map-preview::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.map-preview::before {
  inset-block-start: 26%;
  inset-inline: -8%;
  height: 44px;
  background: rgba(235, 61, 73, 0.22);
  transform: rotate(-10deg);
}

.map-preview::after {
  inset-block-end: 27%;
  inset-inline: -10%;
  height: 34px;
  background: rgba(255, 241, 78, 0.7);
  transform: rotate(15deg);
}

.map-grid {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(28, 28, 28, 0.08);
  border-radius: 22px;
  font-size: 0;
  pointer-events: none;
}

.map-pin {
  position: absolute;
  inset-block-start: 42%;
  inset-inline-start: 50%;
  width: 42px;
  height: 42px;
  border: 8px solid var(--red);
  border-radius: 50% 50% 50% 0;
  background: var(--yellow);
  box-shadow: 0 16px 28px rgba(235, 61, 73, 0.24);
  font-size: 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}

html[dir="rtl"] .map-pin {
  transform: translate(50%, -50%) rotate(-45deg);
}

.map-label {
  display: inline-flex;
  position: relative;
  z-index: 1;
  flex-direction: column;
  gap: 2px;
  border: 1px solid rgba(28, 28, 28, 0.1);
  border-radius: 18px;
  background: rgba(255, 253, 242, 0.92);
  padding: 12px 14px;
  box-shadow: 0 14px 35px rgba(28, 28, 28, 0.1);
}

.map-label strong {
  font-size: 1.05rem;
  font-weight: 900;
}

.map-label small {
  color: var(--muted);
  direction: ltr;
  font-weight: 800;
  unicode-bidi: isolate;
}

.contact-band {
  background: var(--red);
  color: white;
  padding-block: 82px;
  text-align: center;
}

.contact-band .eyebrow {
  margin-inline: auto;
  color: var(--ink);
}

.contact-band p {
  color: rgba(255, 255, 255, 0.86);
}

.floating-call {
  position: fixed;
  inset-block-end: 24px;
  inset-inline-end: 24px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 4px solid var(--yellow);
  border-radius: 999px;
  background: var(--red);
  color: white;
  padding: 12px 16px;
  box-shadow: 0 18px 45px rgba(235, 61, 73, 0.38);
}

.floating-call span {
  font-size: 1.5rem;
}

.floating-call strong,
.floating-call small {
  display: block;
  line-height: 1.2;
}

.floating-call small {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
}

.mobile-call-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 70;
  display: none;
  grid-template-columns: 1.7fr 0.7fr 0.7fr;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(28, 28, 28, 0.94);
  box-shadow: 0 -14px 35px rgba(0, 0, 0, 0.22);
}

.mobile-call-bar a {
  display: grid;
  min-height: 54px;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-weight: 900;
  text-align: center;
}

.mobile-call-main {
  grid-template-columns: auto 1fr;
  gap: 10px;
  background: var(--red) !important;
  text-align: start !important;
  padding-inline: 14px;
}

.mobile-call-main span:last-child {
  display: block;
}

.mobile-call-main small {
  display: block;
  color: var(--yellow);
  font-size: 0.74rem;
  text-align: start;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  border-block-start: 1px solid var(--line);
  background: var(--surface);
  padding: 40px max(16px, calc((100vw - 1160px) / 2));
}

.site-footer strong {
  font-size: 1.2rem;
}

.footer-logo {
  display: block;
  width: min(180px, 54vw);
  height: auto;
  margin-block-end: 12px;
}

.site-footer p {
  max-width: 540px;
  margin-block: 8px 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

.copyright {
  grid-column: 1 / -1;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 75px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: white;
    padding: 12px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px 16px;
  }

  .promise,
  .area-card,
  .location-card {
    grid-template-columns: 1fr;
  }

  .why-strip,
  .appliance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card.featured,
  .service-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  body {
    padding-block-end: 90px;
  }

  .site-header {
    gap: 8px;
    padding: 10px 14px;
  }

  .brand small,
  .header-call {
    display: none;
  }

  .lang-toggle {
    min-width: 42px;
    min-height: 42px;
    padding-inline: 10px;
  }

  .brand-logo {
    width: 72px;
  }

  .hero,
  .hero-content {
    min-height: 680px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(255, 253, 242, 0.96) 0%, rgba(255, 253, 242, 0.84) 54%, rgba(255, 253, 242, 0.72) 100%),
      linear-gradient(0deg, var(--white), transparent);
  }

  .hero-content {
    padding-block: 54px;
  }

  .btn,
  .btn-large {
    width: 100%;
  }

  .promise,
  .why,
  .services,
  .appliances,
  .areas,
  .location {
    padding-block: 58px;
  }

  .promise-grid,
  .why-strip,
  .service-grid,
  .appliance-grid {
    grid-template-columns: 1fr;
  }

  .why-strip {
    border-radius: 22px;
  }

  .service-card,
  .service-card.featured,
  .service-card.wide {
    grid-column: auto;
    min-height: 370px;
  }

  .area-card {
    padding: 22px;
  }

  .location-card {
    padding: 16px;
  }

  .location-copy {
    padding: 6px;
  }

  .map-preview {
    min-height: 250px;
  }

  .floating-call {
    display: none;
  }

  .mobile-call-bar {
    display: grid;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
