:root {
  --navy: #001b3d;
  --navy-2: #062b62;
  --blue: #00a6ff;
  --gold: #ffc400;
  --gold-2: #c9952a;
  --red: #e60012;
  --ink: #07142b;
  --muted: #5e6a7c;
  --line: #dbe4f0;
  --paper: #ffffff;
  --soft: #f5f9ff;
  --shadow: 0 22px 60px rgba(0, 27, 61, 0.14);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 42px));
  --font-ar: "Cairo", "Noto Sans Arabic", system-ui, sans-serif;
  --font-en: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Plus Jakarta Sans", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Plus Jakarta Sans", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-ar);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

body.launching {
  overflow: hidden;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

.launch-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #fff;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.42s ease, visibility 0.42s ease;
}

.launch-screen::before {
  content: none;
}

.launch-screen img {
  position: relative;
  width: min(560px, 62vw, 62svh);
  aspect-ratio: 1;
  object-fit: contain;
  opacity: 1;
  filter: none;
  animation: launch-logo-pop 1.36s cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: opacity 0.38s ease, transform 0.38s ease;
}

.launch-screen.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.launch-screen.is-leaving img {
  opacity: 0;
  transform: scale(0.92) translateY(-12px);
}

@keyframes launch-logo-pop {
  0% {
    opacity: 0;
    transform: scale(0.72) translateY(14px);
  }

  28% {
    opacity: 1;
    transform: scale(1.08) translateY(0);
  }

  68% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

select,
input,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfd9e8;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  outline: none;
  padding: 10px 13px;
}

textarea {
  min-height: 92px;
  resize: vertical;
}

.phone-link,
.phone-input {
  direction: ltr;
  unicode-bidi: isolate;
}

.phone-input {
  text-align: left;
}

select:focus,
input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 166, 255, 0.12);
}

html[dir="ltr"] body {
  font-family: var(--font-en);
}

html[dir="ltr"] h1,
html[dir="ltr"] h2 {
  font-family: var(--font-display);
  letter-spacing: -0.015em;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 46px);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 32px rgba(0, 27, 61, 0.08);
  backdrop-filter: blur(16px);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header[data-elevated="true"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(0, 27, 61, 0.11);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  font-size: 22px;
  white-space: nowrap;
}

.brand-mascot {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-wordmark {
  width: clamp(150px, 15vw, 210px);
  height: auto;
  max-height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 7px rgba(0, 27, 61, 0.08));
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-weight: 800;
  font-size: 15px;
}

.nav-links a {
  position: relative;
  padding-block: 8px;
  opacity: 0.9;
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  transition: transform 0.2s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-toggle,
.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.language-toggle {
  border-radius: 8px;
}

.nav-whatsapp {
  border-radius: 100px;
}

.language-toggle {
  padding: 0 15px;
  color: inherit;
  background: var(--soft);
  border: 1px solid var(--line);
}

.site-header[data-elevated="true"] .language-toggle {
  background: var(--soft);
  border-color: var(--line);
}

.nav-whatsapp {
  padding: 0 18px;
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(255, 196, 0, 0.28);
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--gold);
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.mobile-menu {
  position: fixed;
  inset: 74px 14px auto;
  z-index: 19;
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu nav {
  display: grid;
  padding: 10px;
}

.mobile-menu a {
  padding: 13px;
  border-radius: 8px;
  font-weight: 900;
}

.mobile-menu a:hover {
  background: var(--soft);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 27, 61, 0.78) 0%, rgba(0, 27, 61, 0.54) 32%, rgba(0, 27, 61, 0.18) 60%, rgba(0, 27, 61, 0.04) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: clamp(120px, 20vh, 240px);
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.44) 56%,
    #fff 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 128px 0 74px;
  max-width: 1180px;
}

.hero-content > * {
  width: min(575px, 100%);
  max-width: 575px;
}

html[dir="rtl"] .hero-content {
  direction: rtl;
}

html[dir="rtl"] .hero-content > * {
  margin-right: auto;
  margin-left: 0;
}

html[dir="ltr"] .hero-content > * {
  margin-right: auto;
  margin-left: 0;
}

.hero-line {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 900;
  font-size: clamp(14px, 1.6vw, 17px);
}

html[dir="ltr"] .hero-line {
  justify-content: flex-start;
}

.hero-line::before {
  content: "";
  width: 38px;
  height: 4px;
  border-radius: 4px;
  background: var(--gold);
}

.hero h1 {
  margin-top: 15px;
  color: #fff;
  font-size: clamp(44px, 6.2vw, 88px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

html[dir="rtl"] .hero h1 {
  line-height: 1.2;
}

.hero-copy {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 100px;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.button.primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 18px 38px rgba(0, 27, 61, 0.22);
}

.button.secondary {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 10px 28px rgba(255, 196, 0, 0.32);
}

.button.ghost {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.32);
}

.trust-strip {
  position: relative;
  z-index: 3;
  width: var(--container);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -42px auto 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow);
}

.trust-strip > div {
  min-height: 116px;
  padding: 22px 24px;
  color: #fff;
  background: var(--navy);
}

.trust-icon {
  display: block;
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0;
}

.trust-strip b {
  display: block;
  margin-top: 5px;
  font-size: 20px;
  line-height: 1.2;
}

.trust-strip p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 94px 0;
  scroll-margin-top: 92px;
}

.section-mark {
  display: inline-flex;
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.section h2,
.section-head h2,
.proof-copy h2,
.areas-copy h2,
.booking-form h2,
.booking-panel h2 {
  color: var(--navy);
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.section-visual {
  position: absolute;
  z-index: 0;
  display: block;
  max-width: none;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 20px 34px rgba(0, 27, 61, 0.08));
  -webkit-mask-image: radial-gradient(circle at center, #000 54%, rgba(0, 0, 0, 0.88) 68%, transparent 89%);
  mask-image: radial-gradient(circle at center, #000 54%, rgba(0, 0, 0, 0.88) 68%, transparent 89%);
}

.intro-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  padding-top: 86px;
  padding-bottom: clamp(250px, 24vw, 320px);
  overflow: hidden;
}

.intro-section > :not(.section-visual) {
  position: relative;
  z-index: 1;
}

.intro-section p {
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 700;
}

.intro-visual {
  left: 50%;
  bottom: 28px;
  width: min(370px, 29vw);
  opacity: 0.9;
  transform: translateX(-50%);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(260px, 620px) 1fr;
  align-items: end;
  gap: 24px;
  margin-bottom: 32px;
}

.services-section {
  position: relative;
  overflow: hidden;
}

.services-section > :not(.section-visual) {
  position: relative;
  z-index: 1;
}

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

html[dir="rtl"] .service-grid {
  direction: rtl;
}

html[dir="ltr"] .service-grid {
  direction: ltr;
}

.service-card,
.tier-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 27, 61, 0.06);
}

.service-card {
  min-height: 360px;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 14px;
  padding: 24px;
}

.service-symbol {
  width: 78px;
  height: 78px;
  overflow: hidden;
  color: transparent;
  border-radius: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 9px 14px rgba(0, 27, 61, 0.12));
  line-height: 1;
  user-select: none;
}

.service-symbol--deep {
  background-image: url("./assets/pika-kanji-deep.png");
}

.service-symbol--apartment {
  background-image: url("./assets/pika-kanji-apartment.png");
}

.service-symbol--villa {
  background-image: url("./assets/pika-kanji-villa.png");
}

.service-symbol--move {
  background-image: url("./assets/pika-kanji-move.png");
}

.service-card h3,
.tier-card h3 {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.service-card p,
.tier-card p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.price-list {
  display: grid;
  align-self: end;
  gap: 9px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 27, 61, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbff);
}

html[dir="rtl"] .price-list li {
  grid-template-columns: auto minmax(0, 1fr);
}

.price-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.price-list b {
  white-space: nowrap;
  color: var(--navy);
  font-size: 17px;
  font-weight: 950;
}

.service-card b,
.tier-card b {
  align-self: end;
  color: var(--navy);
  font-size: 19px;
  font-weight: 900;
}

.price-note {
  max-width: 980px;
  margin: 22px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.65;
}

.proof-section {
  width: min(1280px, calc(100vw - 26px));
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  margin: 0 auto;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
}

.proof-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.proof-copy {
  padding-inline: 10px;
}

.proof-copy .section-mark,
.proof-copy h2 {
  color: #fff;
}

.proof-copy h2 {
  margin-top: 8px;
}

.proof-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.proof-list div {
  padding-block: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-list div:last-child {
  border-bottom: 0;
}

.proof-list b {
  color: var(--gold);
  font-size: 20px;
  font-weight: 900;
}

.proof-list p {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.method-section {
  padding-bottom: 70px;
}

.method-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid #dce8f5;
  border-radius: 8px;
  min-height: 420px;
  padding: clamp(28px, 6vw, 62px);
  padding-inline-end: clamp(28px, 32vw, 430px);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 255, 0.9));
}

html[dir="ltr"] .method-panel {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 255, 0.9));
}

.method-panel > :not(.section-visual) {
  position: relative;
  z-index: 1;
}

.method-visual {
  inset-inline-end: clamp(18px, 4vw, 58px);
  top: 50%;
  width: min(380px, 31vw);
  opacity: 0.96;
  transform: translateY(-50%);
}

.method-panel h2 {
  max-width: 720px;
  margin-top: 8px;
}

.method-panel p {
  max-width: 720px;
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 750;
  line-height: 1.75;
}

.method-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.method-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(0, 27, 61, 0.12);
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  font-weight: 900;
}

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

.tier-card {
  min-height: 255px;
  display: grid;
  gap: 14px;
  padding: 28px;
}

.tier-card.featured {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.tier-card.featured h3,
.tier-card.featured b {
  color: #fff;
}

.tier-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.areas-section {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 76px 0 42px;
  border-top: 1px solid var(--line);
  overflow: hidden;
  scroll-margin-top: 92px;
}

.areas-section > :not(.section-visual) {
  position: relative;
  z-index: 1;
}

.area-visual {
  top: -78px;
  width: min(300px, 23vw);
  opacity: 1;
}

html[dir="ltr"] .area-visual {
  right: auto;
  left: clamp(86px, 12vw, 140px);
}

html[dir="rtl"] .area-visual {
  right: auto;
  left: clamp(530px, 58vw, 820px);
}

.areas-copy {
  display: grid;
  grid-template-columns: minmax(180px, 420px) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
}

.area-intro {
  max-width: 820px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 750;
  line-height: 1.75;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.area-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--navy);
  background: #fff;
  font-weight: 900;
}

.area-process {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 44px rgba(0, 27, 61, 0.08);
}

.area-process div {
  min-height: 150px;
  padding: 24px;
  color: #fff;
  background: var(--navy);
}

.area-process b {
  display: block;
  color: var(--gold);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
}

.area-process p {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.7;
}

.area-note {
  max-width: 760px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.booking-section {
  width: var(--container);
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
  margin: 54px auto 92px;
}

.booking-panel {
  overflow: hidden;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 27, 61, 0.96), rgba(5, 49, 110, 0.96));
}

.booking-panel img {
  width: min(190px, 62%);
  max-height: 215px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 18px;
}

.booking-panel h2 {
  color: #fff;
  max-width: 440px;
  font-size: clamp(34px, 4.1vw, 50px);
  line-height: 1.12;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.booking-panel p {
  max-width: 430px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  text-wrap: pretty;
}

.booking-panel a {
  display: inline-flex;
  margin-top: 22px;
  min-height: 48px;
  align-items: center;
  border-radius: 100px;
  padding: 0 22px;
  color: var(--navy);
  background: var(--gold);
  font-weight: 900;
}

.booking-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 27, 61, 0.08);
}

.form-title {
  margin-bottom: 20px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.wide-field {
  grid-column: 1 / -1;
}

.form-submit {
  width: 100%;
  margin-top: 16px;
}

.quote-output-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 14px;
}

.quote-output-wrap pre {
  min-height: 50px;
  max-height: 140px;
  overflow: auto;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--muted);
  background: var(--soft);
  font-family: inherit;
  font-size: 13px;
  white-space: pre-wrap;
}

.copy-button {
  min-width: 76px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy-2);
  font-weight: 900;
}

.site-footer {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 54px 20px 46px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -40%, rgba(0, 166, 255, 0.2), transparent 38%),
    linear-gradient(180deg, #002a56 0%, var(--navy) 58%, #001329 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent),
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.12), transparent 28%);
  opacity: 0.78;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 900;
}

.footer-mascot {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.22));
}

.footer-wordmark {
  width: min(260px, 58vw);
  height: auto;
  max-height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.2));
}

.site-footer p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 800;
  line-height: 1.5;
}

.site-footer .phone-link {
  color: var(--gold);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 900;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 14px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px) saturate(1.35);
  -webkit-backdrop-filter: blur(14px) saturate(1.35);
}

.footer-social svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
}

.footer-legal button {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
}

.site-footer small {
  display: block;
  max-width: min(720px, 100%);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  unicode-bidi: isolate;
  overflow-wrap: anywhere;
}

.legal-dialog {
  width: min(920px, calc(100vw - 28px));
  height: min(780px, calc(100dvh - 28px));
  max-height: calc(100dvh - 28px);
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  overflow: hidden;
}

.legal-dialog::backdrop {
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 196, 0, 0.18), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(0, 166, 255, 0.24), transparent 30%),
    rgba(0, 13, 29, 0.62);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

.legal-shell {
  position: relative;
  isolation: isolate;
  height: 100%;
  padding: 1px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.16) 42%, rgba(255, 196, 0, 0.28)),
    linear-gradient(180deg, rgba(0, 166, 255, 0.28), rgba(255, 255, 255, 0.06));
  box-shadow: 0 36px 90px rgba(0, 13, 29, 0.42);
}

.legal-shell::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 40%, rgba(255, 255, 255, 0.16));
  pointer-events: none;
}

.legal-orb {
  position: absolute;
  z-index: -1;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.62;
}

.legal-orb.one {
  top: -58px;
  inset-inline-start: 7%;
  background: radial-gradient(circle, rgba(0, 166, 255, 0.62), transparent 62%);
}

.legal-orb.two {
  right: 8%;
  bottom: -68px;
  background: radial-gradient(circle, rgba(255, 196, 0, 0.46), transparent 64%);
}

.legal-glass {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(244, 249, 255, 0.68) 48%, rgba(255, 255, 255, 0.46)),
    rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), inset 0 -1px 0 rgba(0, 27, 61, 0.08);
  backdrop-filter: blur(34px) saturate(1.75);
  -webkit-backdrop-filter: blur(34px) saturate(1.75);
}

.legal-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.2) 18%, transparent 36%),
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.9), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(0, 166, 255, 0.12), transparent 28%);
  mix-blend-mode: screen;
}

.legal-top {
  position: sticky;
  top: 0;
  flex: 0 0 auto;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(20px, 4vw, 32px) clamp(20px, 4vw, 38px) 18px;
  border-bottom: 1px solid rgba(0, 27, 61, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42));
  backdrop-filter: blur(22px) saturate(1.45);
  -webkit-backdrop-filter: blur(22px) saturate(1.45);
}

.legal-top h2 {
  margin-top: 6px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  font-weight: 900;
}

.legal-close {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 27, 61, 0.1);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 12px 26px rgba(0, 27, 61, 0.1);
  cursor: pointer;
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
}

.legal-close svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.legal-body {
  position: relative;
  flex: 1 1 auto;
  z-index: 1;
  min-height: 0;
  padding: 0 clamp(20px, 4vw, 38px) clamp(58px, 7vw, 76px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
}

.legal-body::-webkit-scrollbar {
  width: 10px;
}

.legal-body::-webkit-scrollbar-track {
  background: rgba(0, 27, 61, 0.05);
  border-radius: 999px;
}

.legal-body::-webkit-scrollbar-thumb {
  border: 2px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(0, 27, 61, 0.28);
}

.legal-scroll-hint {
  position: absolute;
  inset: auto clamp(16px, 3vw, 28px) 12px;
  z-index: 3;
  display: inline-flex;
  justify-content: center;
  justify-self: center;
  border: 1px solid rgba(0, 27, 61, 0.08);
  border-radius: 999px;
  padding: 8px 14px;
  color: rgba(0, 27, 61, 0.68);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(0, 27, 61, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 900;
  pointer-events: none;
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.legal-scroll-hint::before {
  content: "";
  position: absolute;
  inset: -72px -24px 100%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(247, 251, 255, 0.9));
}

.legal-dialog[data-at-bottom="true"] .legal-scroll-hint {
  opacity: 0;
  transform: translateY(6px);
}

.legal-panel[hidden] {
  display: none;
}

.legal-copy {
  max-width: 760px;
  padding-top: 22px;
  color: rgba(0, 27, 61, 0.78);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.78;
}

.legal-copy[data-policy-lang="en"] {
  display: none;
}

html[lang="en"] .legal-copy[data-policy-lang="en"] {
  display: block;
}

html[lang="en"] .legal-copy[data-policy-lang="ar"] {
  display: none;
}

.legal-copy h3 {
  margin-top: 22px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
}

.legal-copy p + p {
  margin-top: 12px;
}

.legal-date {
  display: inline-flex;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 27, 61, 0.1);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 900;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  background: var(--soft);
  border-radius: 8px;
  padding: 62px clamp(24px, 5vw, 72px);
}

.reviews-section > :not(.section-visual) {
  position: relative;
  z-index: 1;
}

.reviews-visual {
  top: 20px;
  width: min(500px, 38vw);
  opacity: 1;
  transform: translateX(-50%);
}

html[dir="ltr"] .reviews-visual {
  left: 38%;
}

html[dir="rtl"] .reviews-visual {
  left: 56%;
}

.qa-section {
  position: relative;
  overflow: hidden;
}

.qa-section > :not(.section-visual) {
  position: relative;
  z-index: 1;
}

.qa-visual {
  inset-inline-start: clamp(0px, 4vw, 54px);
  top: -70px;
  width: min(330px, 26vw);
  opacity: 1;
}

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

.review-card {
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 27, 61, 0.06);
}

.review-card p {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.6;
}

.review-card footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.review-card strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

.review-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .section-visual {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .header-actions .nav-whatsapp {
    display: none;
  }

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

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(0, 27, 61, 0.86) 0%, rgba(0, 27, 61, 0.56) 46%, rgba(0, 27, 61, 0.10) 100%);
  }

  .hero-image {
    object-position: 70% top;
  }

  .hero-content,
  html[dir="ltr"] .hero-content {
    display: block;
    padding-top: 48svh;
    padding-bottom: 52px;
  }

  .hero-content > * {
    max-width: 680px;
  }

  .trust-strip,
  .service-grid,
  .tier-grid {
    grid-template-columns: 1fr 1fr;
  }

  .intro-section,
  .proof-section,
  .booking-section,
  .area-process,
  .areas-copy,
  .section-head {
    grid-template-columns: 1fr;
  }

  .intro-section {
    padding-bottom: 68px;
  }

  .method-panel {
    min-height: auto;
    padding-inline-end: clamp(28px, 6vw, 62px);
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .brand-mascot {
    width: 40px;
    height: 40px;
  }

  .brand-wordmark {
    width: clamp(126px, 42vw, 164px);
    max-height: 46px;
  }

  .site-header {
    min-height: 66px;
    padding-inline: 14px;
  }

  .mobile-menu {
    inset-top: 66px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    padding-top: 47svh;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 56px);
    color: #fff;
  }

  .hero-copy {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .service-grid,
  .tier-grid,
  .form-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: -18px;
  }

  .section {
    padding-block: 68px;
  }

  .proof-section {
    padding: 14px;
  }

  .proof-copy {
    padding: 16px 6px 8px;
  }

  .booking-section {
    margin-bottom: 58px;
  }

  .booking-panel {
    min-height: auto;
    padding: 26px 20px 30px;
  }

  .site-footer {
    padding-bottom: 96px;
  }

  .site-footer small {
    max-width: 310px;
  }

  .booking-panel img {
    width: min(170px, 64%);
    max-height: 190px;
  }

  .booking-panel h2 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .quote-output-wrap {
    grid-template-columns: 1fr;
  }

  .copy-button {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .button,
  .service-card,
  .tier-card,
  .area-pills span {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .button:hover,
  .service-card:hover,
  .tier-card:hover,
  .area-pills span:hover {
    transform: translateY(-2px);
  }

  .service-card:hover,
  .tier-card:hover {
    border-color: rgba(0, 166, 255, 0.36);
    box-shadow: 0 18px 36px rgba(0, 27, 61, 0.11);
  }
}

/* ── WhatsApp FAB (mobile only) ─────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  display: none;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.44);
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.52);
}

@media (max-width: 680px) {
  .wa-fab {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .launch-screen img {
    animation-duration: 0.01ms;
  }

  .launch-screen {
    transition-duration: 0.01ms;
  }
}
