:root {
  --bg: #F8F6F1;
  --card: #FFFFFF;
  --soft: #F0EBE0;
  --text: #0B1F3B;
  --muted: #5A6B7E;
  --line: rgba(11,31,59,.12);
  --gold: #C8A24A;
  --gold2: #E2BC72;
  --navy: #0B1F3B;
  --navy2: #152E52;
  --rose: #8B6B3D;
  --shadow: 0 22px 60px rgba(11,31,59,.13);
  --h: 72px;
  --teal: #C8A24A;
  --teal-accent: #E2BC72;
}
body.dark {
  --bg: #08131F;
  --card: #0F1E30;
  --soft: #162035;
  --text: #EEE8DA;
  --muted: #8FA3B8;
  --line: rgba(238,232,218,.12);
  --shadow: 0 22px 70px rgba(0,0,0,.4);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Cairo, Tajawal, system-ui, sans-serif;
  line-height: 1.7;
  padding-bottom: 86px;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { border: 0; cursor: pointer; }
img { display: block; max-width: 100%; }
.wrap { width: min(1180px, calc(100% - 32px)); margin: auto; }
.head {
  height: var(--h);
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--card) 90%, transparent);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.head .nav { padding-block: 4px; }
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}
.logoMark {
  font-size: 28px;
  color: var(--gold);
  filter: drop-shadow(0 2px 4px rgba(200,162,74,.3));
  flex-shrink: 0;
}
.logoText {
  font-size: 13px;
  line-height: 1.35;
  color: var(--text);
  font-weight: 700;
}
.logoText strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  color: var(--navy);
}
body.dark .logoText strong { color: var(--gold); }
.links {
  display: flex;
  gap: 22px;
  font-weight: 800;
  color: var(--muted);
  font-size: 14px;
}
.links a:hover { color: var(--gold); }
.actions { display: flex; gap: 8px; align-items: center; }
.btn, .i, .lang {
  min-height: 42px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: .2s;
}
.btn {
  padding: 0 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(11,31,59,.28);
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(11,31,59,.35); }
.gold { background: linear-gradient(135deg, var(--gold), var(--gold2)) !important; color: var(--navy) !important; box-shadow: 0 10px 24px rgba(200,162,74,.32) !important; }
.ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid color-mix(in srgb, var(--gold) 55%, var(--line));
  box-shadow: none;
}
.i, .lang {
  width: 42px;
  background: var(--soft);
  color: var(--text);
  border: 1px solid var(--line);
  font-weight: 900;
}
.lang { width: 52px; padding: 0; font-size: 13px; font-weight: 900; }
.menu { display: none; }
.hero {
  min-height: calc(100svh - var(--h));
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(200,162,74,.12), transparent 32%),
    radial-gradient(circle at 80% 70%, rgba(11,31,59,.08), transparent 40%),
    linear-gradient(120deg, var(--bg) 0 50%, color-mix(in srgb, var(--gold) 6%, var(--bg)));
}
body[dir=ltr] .hero:before {
  background:
    radial-gradient(circle at 85% 20%, rgba(200,162,74,.12), transparent 32%),
    linear-gradient(240deg, var(--bg) 0 50%, color-mix(in srgb, var(--gold) 6%, var(--bg)));
}
.heroGrid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 54px 0 60px;
}
.ey {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--gold);
  background: color-mix(in srgb, var(--gold) 10%, transparent);
  padding: 7px 14px;
  border: 1px solid color-mix(in srgb, var(--gold) 38%, transparent);
  border-radius: 99px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .01em;
}
main section .ey { margin-inline: auto !important; }
main section .ey + h2 { text-align: center !important; margin-inline: auto; }
main section .ey + h2 + p { text-align: center !important; margin-inline: auto; }
main section .secHead { justify-content: center !important; align-items: center !important; flex-direction: column !important; text-align: center !important; gap: 12px; }
main section .secHead > div { display: grid; justify-items: center; gap: 8px; }
main section .secHead p { text-align: center !important; margin-inline: auto !important; }
#about .wrap > div:first-child { text-align: center !important; }
#about .wrap > div:first-child .ey { margin-inline: auto !important; }
#about .wrap > div:first-child h2,
#about .wrap > div:first-child p { text-align: center !important; margin-inline: auto !important; }
h1 {
  font-size: clamp(34px, 5.5vw, 66px);
  line-height: 1.1;
  margin: 18px 0 16px;
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--navy);
}
body.dark h1 { color: var(--text); }
h1 em {
  font-style: normal;
  color: var(--gold);
}
h2 {
  font-size: clamp(26px, 3.8vw, 44px);
  line-height: 1.18;
  margin: 0 0 12px;
  font-weight: 900;
}
p { color: var(--muted); }
.hero p { font-size: clamp(15px, 1.8vw, 19px); max-width: 56ch; }
.cta { display: flex; gap: 12px; flex-wrap: wrap; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}
.stat, .card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(11,31,59,.07);
}
.stat { padding: 14px; }
.stat b { display: block; color: var(--gold); font-size: 22px; font-weight: 900; }
.visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scalesBadge {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scalesIcon {
  font-size: 120px;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 10px 30px rgba(200,162,74,.4));
  animation: scalesFloat 4s ease-in-out infinite;
}
@keyframes scalesFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.scalesRing {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}
.scalesRing.r1 {
  width: 100%;
  height: 100%;
  border-color: color-mix(in srgb, var(--gold) 28%, transparent);
  animation: ringPulse 3s ease-in-out infinite;
}
.scalesRing.r2 {
  width: 130%;
  height: 130%;
  border-color: color-mix(in srgb, var(--gold) 14%, transparent);
  animation: ringPulse 3s ease-in-out infinite .8s;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: .6; }
}
.float {
  position: absolute;
  z-index: 3;
  background: color-mix(in srgb, var(--card) 88%, transparent);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 10px;
  align-items: center;
}
.f1 { inset-inline-start: 0; bottom: 22%; }
.f2 { inset-inline-end: 0; top: 22%; }
.mini, .lineIcon {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: var(--soft);
}
.mini { width: 38px; height: 38px; }
.lineIcon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold);
  background: color-mix(in srgb, var(--gold) 8%, var(--card));
}
section { padding: 80px 0; }
.secHead {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}
.secHead p { max-width: 58ch; margin: 0; }
.grid { display: grid; gap: 16px; }
.two { grid-template-columns: repeat(2, 1fr); }
.three { grid-template-columns: repeat(3, 1fr); }
.four { grid-template-columns: repeat(4, 1fr); }
.card { padding: 24px; }
.card h3 { margin: 10px 0 8px; }
.list { display: grid; gap: 14px; }
.list div {
  display: flex;
  gap: 10px;
  color: var(--muted);
  align-items: flex-start;
}
#servicesGrid .card {
  min-height: 220px;
  padding: 28px 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  background: linear-gradient(180deg, var(--card), color-mix(in srgb, var(--navy) 3%, var(--card)));
  box-shadow: 0 18px 44px rgba(11,31,59,.08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  border: 1px solid var(--line);
  cursor: pointer;
}
#servicesGrid .card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--gold) 55%, var(--line));
  box-shadow: 0 26px 58px rgba(200,162,74,.14);
}
#servicesGrid .lineIcon {
  width: 58px;
  height: 58px;
}
#servicesGrid h3 { font-size: 18px; margin: 8px 0 0; color: var(--text); }
#servicesGrid p { font-size: 13px; margin: 0; max-width: 22ch; }
.successCounters {
  background:
    radial-gradient(ellipse 120% 80% at 50% -15%, color-mix(in srgb, var(--gold) 12%, transparent), transparent 52%),
    linear-gradient(185deg, color-mix(in srgb, var(--navy) 4%, var(--bg)), var(--bg));
  border-block: 1px solid var(--line);
  overflow: visible;
}
.counterPyramid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.8vw, 22px);
  max-width: 720px;
  margin-inline: auto;
}
.counterPyramid .counterCard:first-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 420px);
}
.counterCard {
  text-align: center;
  min-height: 128px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--gold) 35%, var(--line));
  background: linear-gradient(168deg, var(--card) 0%, color-mix(in srgb, var(--gold) 5%, var(--card)) 60%, color-mix(in srgb, var(--navy) 4%, var(--card)) 100%);
  box-shadow: 0 22px 52px rgba(11,31,59,.1), inset 0 1px 0 rgba(255,255,255,.5);
}
body.dark .counterCard { box-shadow: 0 26px 58px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.05); }
.counterCard:before {
  content: "";
  position: absolute;
  inset: -40% -15% auto auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--gold) 28%, transparent), transparent 70%);
  pointer-events: none;
}
.counterCard:after {
  content: "";
  position: absolute;
  inset-inline: 12%;
  bottom: 0;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .8;
  pointer-events: none;
}
.counterCard b {
  color: var(--gold);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.02em;
  position: relative;
  z-index: 1;
}
.counterCard span {
  color: var(--text);
  font-weight: 800;
  font-size: clamp(12px, 1.4vw, 15px);
  line-height: 1.4;
  max-width: 22ch;
  position: relative;
  z-index: 1;
}
.journeySection { position: relative; overflow: hidden; }
.journeySection:before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: min(360px, 48%);
  background: radial-gradient(ellipse 85% 70% at 50% -10%, color-mix(in srgb, var(--gold) 10%, transparent), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.journeySection .wrap { position: relative; z-index: 1; }
.journeyIntro p { margin: 0; }
.journeyBoard {
  border-radius: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  background: linear-gradient(168deg, var(--card) 0%, color-mix(in srgb, var(--gold) 4%, var(--card)) 50%, color-mix(in srgb, var(--navy) 3%, var(--card)) 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}
body.dark .journeyBoard { background: linear-gradient(168deg, var(--card), color-mix(in srgb, var(--gold) 8%, var(--card))); }
.journeyTabsBar {
  padding: clamp(12px, 2vw, 16px);
  padding-block-end: 12px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--soft) 60%, transparent);
}
body.dark .journeyTabsBar { background: color-mix(in srgb, var(--card) 90%, transparent); }
#journey .journeyTabsScroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  margin: 0;
  padding: 4px 2px 8px;
}
#journey .journeyTabsScroll::-webkit-scrollbar { height: 5px; }
#journey .journeyTabsScroll::-webkit-scrollbar-thumb { background: color-mix(in srgb, var(--gold) 35%, var(--line)); border-radius: 99px; }
.journeyTab {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  min-width: min(100%, 260px);
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 92%, transparent);
  color: var(--text);
  font-weight: 800;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.35;
  text-align: start;
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(11,31,59,.06);
}
.journeyTab:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--gold) 45%, var(--line));
  box-shadow: 0 12px 28px rgba(200,162,74,.14);
}
.journeyTab.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: #fff;
  box-shadow: 0 14px 32px rgba(11,31,59,.3);
}
.journeyTabIx {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
  background: color-mix(in srgb, var(--gold) 14%, var(--soft));
  color: var(--gold);
}
.journeyTab.active .journeyTabIx { background: rgba(200,162,74,.25); color: var(--gold); }
.journeyTabTxt { flex: 1; min-width: 0; }
.journeyStageBody { padding: clamp(16px, 2.5vw, 26px); }
.journeySteps {
  display: grid;
  gap: clamp(14px, 2vw, 18px);
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 960px) {
  .journeySteps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  #journey .journeyTabsScroll { overflow-x: visible; flex-wrap: nowrap; padding-bottom: 4px; }
  .journeyTab { flex: 1 1 0; min-width: 0; justify-content: flex-start; }
}
.journeyStep {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: clamp(16px, 2vw, 22px);
  padding-inline-start: clamp(18px, 2vw, 22px);
  border: 1px solid var(--line);
  border-radius: clamp(16px, 2vw, 20px);
  background: color-mix(in srgb, var(--card) 92%, transparent);
  box-shadow: 0 14px 34px rgba(11,31,59,.07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  overflow: hidden;
}
.journeyStep:before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-start-end-radius: 6px;
  border-end-end-radius: 6px;
  background: linear-gradient(180deg, var(--gold), color-mix(in srgb, var(--navy) 40%, var(--gold)));
}
.journeyStep:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--gold) 35%, var(--line));
  box-shadow: 0 22px 44px rgba(200,162,74,.14);
}
.journeyStep .stepNo {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(145deg, var(--gold), var(--gold2));
  font-weight: 900;
  font-size: 17px;
  box-shadow: 0 10px 26px rgba(200,162,74,.3);
}
.journeyStepInner { flex: 1; min-width: 0; }
.journeyStep h3 { margin: 0 0 8px; font-size: clamp(16px, 1.5vw, 18px); font-weight: 900; }
.journeyStep p { margin: 0; font-size: 14px; line-height: 1.65; color: var(--muted); font-weight: 600; }
@media (min-width: 640px) {
  .journeySteps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journeyStep { flex-direction: column; align-items: stretch; padding-inline-start: clamp(16px, 2vw, 22px); }
  .journeyStep:before { top: 0; bottom: 0; border-radius: 0; border-start-end-radius: 0; border-end-end-radius: 0; }
  .journeyStep .stepNo { align-self: start; }
}
.calc { display: grid; grid-template-columns: .9fr 1.1fr; gap: 16px; }
.field { display: grid; gap: 8px; margin: 14px 0; }
.field label { font-weight: 900; }
.field input {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  border-radius: 8px;
  padding: 13px 14px;
  outline: none;
  transition: border-color .2s;
}
.field input:focus { border-color: var(--gold); }
.dateHint { position: relative; }
.dateHint:after {
  content: attr(data-placeholder);
  position: absolute;
  inset-inline-start: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-weight: 900;
  pointer-events: none;
  opacity: .85;
}
.dateHint.filled:after, .dateHint:focus-within:after { opacity: 0; }
.result {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 230px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--gold) 10%, transparent), color-mix(in srgb, var(--navy) 6%, transparent));
  border: 1px solid color-mix(in srgb, var(--gold) 30%, var(--line));
  border-radius: 10px;
  padding: 22px;
}
.date {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.2;
}
.gallery {
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-auto-rows: 230px;
}
.scan {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, color-mix(in srgb, var(--gold) 20%, var(--navy)) 100%);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .3s ease;
}
.scan:first-child { grid-row: span 2; }
.scan:hover { transform: translateY(-3px); box-shadow: 0 22px 44px rgba(11,31,59,.22); }
.scanInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px;
  width: 100%;
  height: 100%;
  justify-content: center;
  transition: transform .4s ease;
}
.scan:hover .scanInner { transform: scale(1.05); }
.scanNum {
  font-size: 48px;
  font-weight: 900;
  color: rgba(200,162,74,.35);
  font-family: Tajawal;
  line-height: 1;
}
.scanLabel {
  color: rgba(255,255,255,.9);
  font-size: 15px;
  font-weight: 900;
  background: rgba(200,162,74,.2);
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid rgba(200,162,74,.4);
}
.quickContact {
  position: fixed;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%);
  width: min(430px, calc(100% - 24px));
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  z-index: 44;
}
.quickContact a {
  min-height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: white;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(11,31,59,.28);
  border: 1px solid rgba(200,162,74,.25);
}
.quickContact svg, .socialLinks svg { width: 20px; height: 20px; }
.socialLinks { display: flex; gap: 10px; flex-wrap: wrap; margin: 12px 0 14px; }
.socialLinks a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(200,162,74,.2);
  color: #EEE8DA;
  transition: .2s;
}
.socialLinks a:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.footBrand { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footScale { font-size: 32px; color: var(--gold); }
.footBrand strong { display: block; color: #EEE8DA; font-size: 15px; font-weight: 900; }
.footBrand small { display: block; color: #8FA3B8; font-size: 12px; }
.successCounters.fourCounters .counterPyramid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 760px; }
.successCounters.fourCounters .counterCard:first-child { grid-column: auto; width: 100%; justify-self: stretch; }
.photoSlider { padding-top: 70px; }
.sliderFrame {
  position: relative;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--card);
  overflow: hidden;
}
.sliderShell {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  direction: ltr;
  scrollbar-width: none;
}
.sliderShell::-webkit-scrollbar { display: none; }
.sliderTrack { display: flex; width: 100%; }
.slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  height: clamp(280px, 48vw, 520px);
  overflow: hidden;
}
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0,0,0,.58));
}
.slide b {
  position: absolute;
  z-index: 2;
  inset-inline-start: 24px;
  bottom: 22px;
  color: white;
  font-size: clamp(20px, 3vw, 32px);
  max-width: calc(100% - 48px);
  line-height: 1.35;
}
html[dir="rtl"] .slide b { direction: rtl; text-align: right; }
html[dir="ltr"] .slide b { direction: ltr; text-align: left; }
.sliderFrame .sliderDots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  pointer-events: none;
}
.sliderFrame .sliderDots button { pointer-events: auto; }
.sliderDots button { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.5); }
.sliderDots button.active { width: 26px; border-radius: 99px; background: var(--gold); }
.bookingPicker { display: grid; gap: 14px; }
.bookingCalendar {
  width: 100%;
  display: grid;
  place-items: stretch;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: color-mix(in srgb, var(--gold) 4%, var(--card));
  overflow: hidden;
}
.bookingCalendar .flatpickr-calendar { width: 100% !important; max-width: 100% !important; min-width: 0 !important; box-shadow: none !important; border: 0 !important; background: transparent !important; font-family: inherit; }
.bookingCalendar .flatpickr-innerContainer,
.bookingCalendar .flatpickr-rContainer,
.bookingCalendar .flatpickr-days,
.bookingCalendar .dayContainer { width: 100% !important; min-width: 0 !important; max-width: 100% !important; }
.bookingCalendar .flatpickr-day { max-width: none !important; border-radius: 12px; }
.bookingCalendar .flatpickr-time { border-radius: 14px; border: 1px solid var(--line); margin-top: 10px; background: var(--card); }
.bookingDateInput, .bookingTimeGrid button {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  color: var(--text);
  padding: 14px;
  font-weight: 900;
}
.bookingDateInput { width: 100%; min-height: 56px; color-scheme: light; }
body.dark .bookingDateInput { color-scheme: dark; }
.bookingTimeGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.bookingDayGrid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.bookingDayGrid button {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  color: var(--text);
  padding: 12px 8px;
  font-weight: 900;
}
.bookingTimeGrid button.sel, .bookingDayGrid button.sel {
  background: color-mix(in srgb, var(--gold) 14%, var(--card));
  border-color: var(--gold);
  color: var(--navy);
}
.phoneInline { position: relative; display: grid; }
.phoneInline .countrySelect {
  position: absolute;
  inset-inline-start: 8px;
  top: 8px;
  bottom: 8px;
  width: 150px;
  border: 0;
  border-inline-end: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  z-index: 2;
}
.phoneInline input { min-height: 58px; padding-inline-start: 172px; }
body[dir=rtl] .phoneInline input { padding-inline-start: 14px; padding-inline-end: 172px; }
.invoicePro { display: grid; gap: 14px; }
.invoiceHero {
  padding: 22px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  box-shadow: 0 18px 44px rgba(11,31,59,.25);
}
.invoiceHero h3 { color: var(--gold); margin: 0 0 6px; }
.invoiceRows { display: grid; gap: 10px; }
.invoiceRow {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
}
.invoiceTotal { border-color: var(--gold); background: color-mix(in srgb, var(--gold) 9%, var(--card)); font-weight: 900; }
.quickContact svg, .drawerContact svg { flex: 0 0 22px; width: 22px; height: 22px; stroke-width: 2.2; }
.drawerContact, .drawerTools { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 14px; }
.drawerContact a, .drawerTools button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  font-weight: 900;
}
.drawerContact a { background: linear-gradient(135deg, var(--navy), var(--navy2)); color: white; }
.drawerTools button { background: color-mix(in srgb, var(--gold) 10%, var(--soft)); color: var(--gold); border: 1px solid color-mix(in srgb, var(--gold) 35%, transparent); }
.slots { display: grid; grid-template-columns: 280px 1fr; gap: 16px; }
.days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-top: 10px; }
.day { aspect-ratio: 1; border-radius: 8px; display: grid; place-items: center; background: var(--soft); color: var(--muted); font-weight: 800; font-size: 13px; }
.day.on { background: linear-gradient(135deg, var(--navy), var(--navy2)); color: white; }
.slotList { display: grid; grid-template-columns: repeat(auto-fill, minmax(128px, 1fr)); gap: 10px; }
html[dir="rtl"] .slotList { direction: rtl; }
.slot {
  padding: 14px;
  border-radius: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 900;
  text-align: center;
  transition: .2s;
}
.slot:hover, .slot.sel {
  background: color-mix(in srgb, var(--gold) 10%, var(--card));
  border-color: var(--gold);
  transform: translateY(-2px);
}
.slot.slotHidden { display: none; }
.slotMoreBtn {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  min-height: 44px;
  border-radius: 12px;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: #fff;
  border: 1px solid color-mix(in srgb, var(--gold) 30%, var(--line));
  font-weight: 900;
  transition: .25s;
  box-shadow: 0 10px 24px rgba(11,31,59,.18);
}
.slotMoreBtn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(11,31,59,.25); }
.faqItem {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--card) 94%, transparent);
  box-shadow: 0 14px 32px rgba(11,31,59,.06);
  overflow: hidden;
  margin-bottom: 12px;
  transition: .22s;
}
.faqQ {
  width: 100%;
  padding: 18px;
  background: transparent;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  text-align: inherit;
  font-weight: 900;
}
.faqQ b {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--gold) 12%, var(--soft));
  color: var(--gold);
  transition: .22s;
}
.faqA { color: var(--muted); max-height: 0; overflow: hidden; transition: .25s; }
.faqItem.open .faqA { max-height: 220px; padding: 0 18px 18px; }
.faqItem:hover, .faqItem.open { border-color: color-mix(in srgb, var(--gold) 45%, transparent); transform: translateY(-2px); }
.faqItem.open .faqQ b { transform: rotate(45deg); background: var(--gold); color: var(--navy); }
#faq { overflow: hidden; }
#faq .wrap { width: min(1360px, calc(100% - 24px)); }
#faqList { width: 100%; direction: rtl; text-align: right; }
#faq .faqQ, #faq .faqA { direction: rtl; text-align: right; }
.reviews { grid-template-columns: repeat(5, minmax(220px, 1fr)); overflow: auto; padding-bottom: 8px; }
.review { min-width: 220px; }
.stars { color: #C8A24A; font-size: 18px; margin: 6px 0; }
.gline { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; font-weight: 800; }
.g { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: white; color: #4285f4; font-weight: 900; box-shadow: 0 0 0 1px #ddd inset; }
#news .card {
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  transition: transform .22s ease, box-shadow .22s ease;
  cursor: pointer;
}
#news .card:hover { transform: translateY(-4px); box-shadow: 0 26px 52px rgba(11,31,59,.13); border-color: color-mix(in srgb, var(--gold) 45%, var(--line)); }
.newsBadge {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  padding: 18px 20px 14px;
  min-height: 120px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.newsBadge:before {
  content: "⚖";
  position: absolute;
  top: 10px;
  inset-inline-end: 14px;
  font-size: 40px;
  opacity: .12;
}
.newsTag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 99px;
}
.newsBody { padding: 18px 20px 20px; }
.newsBody h3 { font-size: 16px; font-weight: 900; margin: 0 0 8px; line-height: 1.4; }
.newsBody p { font-size: 13px; margin: 0; }
.newsDate { font-size: 12px; color: var(--muted); font-weight: 700; margin-top: 12px; }
.foot { padding: 54px 0 28px; background: #08131F; color: #EEE8DA; }
.foot p, .foot a, .foot li { color: #8FA3B8; }
.footGrid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 28px; }
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.copy { border-top: 1px solid rgba(200,162,74,.18); margin-top: 30px; padding-top: 18px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.bottom {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(430px, calc(100% - 24px));
  height: 66px;
  background: color-mix(in srgb, var(--card) 92%, transparent);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 22px;
  display: none;
  justify-content: space-around;
  align-items: center;
  z-index: 45;
  box-shadow: var(--shadow);
}
.navItem { width: 64px; display: grid; place-items: center; gap: 2px; color: var(--muted); font-size: 11px; font-weight: 900; background: transparent; }
.bookCircle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  margin-top: -34px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  border: 6px solid var(--bg);
  box-shadow: 0 14px 24px rgba(200,162,74,.35);
  display: grid;
  place-items: center;
}
.bookCircle svg { width: 28px; height: 28px; stroke-width: 2.4; }
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.48); backdrop-filter: blur(3px); z-index: 80; display: none; }
.overlay.on { display: block; }
.drawer {
  position: fixed;
  top: 12px;
  bottom: 12px;
  inset-inline-end: -360px;
  width: min(340px, 90vw);
  background: linear-gradient(180deg, color-mix(in srgb, var(--card) 96%, transparent), var(--card));
  z-index: 90;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px 0 0 22px;
  box-shadow: 0 28px 80px rgba(11,31,59,.22);
  transition: .3s cubic-bezier(.2, .8, .2, 1);
  overflow: auto;
}
.drawer.on { inset-inline-end: 12px; }
.drawer .brand { display: block; padding: 12px 14px; border-radius: 16px; background: transparent; }
.drawer nav { display: grid; gap: 10px; margin-top: 24px; }
.drawer a, .drawer button {
  text-align: inherit;
  background: var(--soft);
  color: var(--text);
  padding: 13px 14px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(11,31,59,.05);
  transition: .22s;
}
.drawer a:hover, .drawer button:hover {
  background: color-mix(in srgb, var(--gold) 10%, var(--card));
  border-color: color-mix(in srgb, var(--gold) 45%, transparent);
  color: var(--gold);
  transform: translateX(-3px);
}
body[dir=ltr] .drawer a:hover, body[dir=ltr] .drawer button:hover { transform: translateX(3px); }
.drawer .drawerContact a { background: linear-gradient(135deg, var(--navy), var(--navy2)) !important; color: white !important; }
.drawer .drawerTools button { background: color-mix(in srgb, var(--gold) 10%, var(--soft)) !important; color: var(--gold) !important; border-color: color-mix(in srgb, var(--gold) 35%, transparent) !important; }
.drawerTop .brand { background: transparent !important; border: 0 !important; box-shadow: none !important; }
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 18px; background: rgba(5,12,22,.68); backdrop-filter: blur(6px); }
.modal.on { display: flex; }
.box {
  width: min(880px, 100%);
  max-height: 90svh;
  overflow: hidden;
  background: var(--card);
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.bh, .bf { padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); }
.bh .i { flex: 0 0 42px; background: color-mix(in srgb, var(--gold) 10%, var(--soft)); color: var(--gold); }
.bf { border-bottom: 0; border-top: 1px solid var(--line); flex-wrap: wrap; }
.bb { padding: 18px; overflow: auto; min-height: 360px; }
.bgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.bcard {
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 10px;
  text-align: inherit;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: .2s;
}
.bcard:hover { border-color: var(--gold); }
.bcard.sel { border-color: var(--gold); background: color-mix(in srgb, var(--gold) 10%, var(--card)); }
.pill { background: color-mix(in srgb, var(--gold) 14%, var(--soft)); color: var(--gold); padding: 6px 12px; border-radius: 99px; font-weight: 900; font-size: 13px; }
.invoice { background: var(--soft); border: 1px dashed var(--gold); padding: 18px; border-radius: 8px; }
svg { width: 21px; height: 21px; display: block; }
.drawerTop { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.drawerClose { display: inline-flex; flex: 0 0 42px; background: color-mix(in srgb, var(--gold) 12%, var(--soft)); color: var(--gold); }
.phoneWrap { display: flex; gap: 8px; align-items: stretch; }
.countrySelect { width: 132px; border: 1px solid var(--line); background: var(--soft); color: var(--text); border-radius: 8px; padding: 0 10px; font-weight: 900; outline: none; }
.phoneWrap input { flex: 1; }
.caseTypeGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.caseTypeBtn {
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: .2s;
  text-align: center;
}
.caseTypeBtn:hover { border-color: var(--gold); background: color-mix(in srgb, var(--gold) 8%, var(--card)); }
.caseTypeBtn.sel { border-color: var(--gold); background: color-mix(in srgb, var(--gold) 12%, var(--card)); color: var(--navy); font-weight: 900; }
textarea.field-area {
  width: 100%;
  min-height: 110px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  border-radius: 8px;
  padding: 13px 14px;
  outline: none;
  resize: vertical;
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s;
}
textarea.field-area:focus { border-color: var(--gold); }
.contactMethodGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.contactMethodBtn {
  padding: 16px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  transition: .2s;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
.contactMethodBtn:hover { border-color: var(--gold); }
.contactMethodBtn.sel { border-color: var(--gold); background: color-mix(in srgb, var(--gold) 10%, var(--card)); }
.contactMethodBtn svg { width: 24px; height: 24px; color: var(--gold); }
@media (max-width: 980px) {
  .links { display: none; }
  .menu { display: inline-flex; }
  .heroGrid, .calc, .slots, .two { grid-template-columns: 1fr; }
  .visual { min-height: 380px; order: -1; }
  .float { display: none; }
  .three, .four, .footGrid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .bottom { display: flex; }
  .quickContact { display: grid; }
  .foot { padding-bottom: 132px; }
  .socialLinks { justify-content: center !important; margin-inline: auto; }
  .copy { margin-top: 20px; padding-top: 22px; padding-bottom: 8px; }
  .counterPyramid { max-width: 100%; }
  .counterCard { min-height: 118px; padding: 18px 14px; }
  .bookingCalendar { padding: 8px; border-radius: 14px; }
}
@media (max-width: 640px) {
  body { padding-bottom: 92px; }
  .wrap { width: calc(100% - 24px); }
  .head { height: 62px; }
  .actions .btn { display: none; }
  .i, .lang { width: 38px; min-height: 38px; padding: 0; font-size: 12px; }
  .hero { min-height: auto; }
  .heroGrid { gap: 12px; padding: 18px 0 34px; }
  .hero article { text-align: center; }
  .hero p { margin-inline: auto; }
  .cta { justify-content: center; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats .stat:last-child { grid-column: 1/-1; }
  .scalesBadge { width: 220px; height: 220px; }
  .scalesIcon { font-size: 80px; }
  section { padding: 52px 0; }
  .secHead { display: block; }
  .three, .four, .footGrid, .bgrid, .slotList, .gallery { grid-template-columns: 1fr; }
  .foot, .footGrid, .foot h3, .foot h4, .foot p, .foot li, .copy { text-align: center; }
  .foot .btn { margin-inline: auto; }
  .copy { justify-content: center; }
  .scan:first-child { grid-row: auto; }
  .box { width: 100vw; height: 100svh; max-height: 100svh; border-radius: 0; }
  .modal { padding: 0; align-items: stretch; }
  .bb { min-height: 0; flex: 1; }
  .drawer { top: 0; bottom: 0; inset-inline-end: -100vw; width: 100vw; height: 100svh; border-radius: 0; padding: 22px 18px; }
  .drawer.on { inset-inline-end: 0; }
  .drawer nav { gap: 12px; }
  .drawer a, .drawer button { text-align: center; justify-content: center; }
  .drawerClose { width: 44px; height: 44px; }
  .card, .card h3, .card p, .lineIcon, .mini, .review, .review p, .gline, .stars { text-align: center; margin-inline: auto; }
  .card .lineIcon { margin-inline: auto; }
  .btn, .ghost, .gold { margin-inline: auto; }
  .footBrand { justify-content: center; }
  .caseTypeGrid { grid-template-columns: 1fr; }
  .contactMethodGrid { grid-template-columns: 1fr; }
  .phoneWrap { display: grid; grid-template-columns: 1fr; }
  .countrySelect { width: 100%; min-height: 46px; text-align: center; }
  #about .wrap > div:first-child { text-align: center; }
  #about .wrap > div:first-child .ey { margin-inline: auto; }
  .visual { display: flex !important; min-height: 300px; margin-top: 4px; }
  #servicesGrid .card { min-height: 220px; width: 100%; padding: 28px 20px; }
  #slots { min-height: 100svh; padding: 0; display: flex; align-items: stretch; }
  #slots .slots { width: 100%; min-height: 100svh; padding: 28px 16px; display: grid; align-content: center; }
  #slots .card { width: 100%; padding: 28px 18px; border-radius: 20px; }
  #slots .days { gap: 10px; }
  #slots .day { font-size: 16px; border-radius: 14px; }
  .slotList { width: 100%; }
}