:root {
  --gold: #B8960C;
  --gold-light: #D4AF37;
  --gold-pale: #F5EED0;
  --black: #0A0A0A;
  --charcoal: #1A1A1A;
  --white: #FAFAFA;
  --offwhite: #F7F5F0;
  --grey: #6B6B6B;
  --grey-light: #E8E4DC;
  --font-ar: 'Noto Naskh Arabic', serif;
  --font-display: 'Playfair Display', serif;
  --font-roman: 'Cormorant Garamond', serif;
}

/* ── VISUAL REFRESH OVERRIDES ────────────────────── */
:root {
  --gold: #A9822B;
  --gold-light: #E0C16A;
  --gold-pale: #F0E1B7;
  --black: #07090C;
  --charcoal: #171A1E;
  --white: #FCFBF7;
  --offwhite: #F4EFE5;
  --grey: #64645E;
  --grey-light: #DED6C8;
  --oxblood: #6F1D2A;
  --moss: #24352F;
  --shadow-soft: 0 24px 70px rgba(7,9,12,0.12);
  --shadow-deep: 0 32px 100px rgba(0,0,0,0.34);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ar);
  background:
    linear-gradient(90deg, rgba(112,29,42,0.025) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #fbf8f0 0%, #f8f3e8 44%, #fcfbf7 100%);
  background-size: 38px 38px, auto;
  color: #171A1E;
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.8;
}

body::selection {
  background: var(--gold-light);
  color: var(--black);
}

a:focus-visible,
button:focus-visible,
.faq-q:focus-visible,
.hamburger:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

/* ─── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 999;
  height: 76px;
  padding: 0 clamp(1.1rem, 5vw, 4.6rem);
  background: rgba(7,9,12,0.46);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(224,193,106,0.16);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s, box-shadow 0.3s;
}

nav.scrolled {
  background: rgba(7,9,12,0.9);
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
}

.nav-logo {
  display: flex; flex-direction: column; align-items: flex-end; gap: 1px;
}
.nav-logo .name {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.3rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  direction: ltr;
}
.nav-logo .sub {
  font-family: var(--font-roman);
  color: var(--gold-light);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 300;
}

.nav-links {
  display: flex; gap: clamp(1rem, 2vw, 2.3rem); list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  font-family: var(--font-ar);
  position: relative;
  padding: 0.35rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(224,193,106,0.6);
  color: var(--gold-light);
  padding: 0.5rem 1.3rem;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: var(--font-ar);
  letter-spacing: 0.03em;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.hamburger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 1.5px; background: var(--white); display: block;
  transition: all 0.3s;
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  min-height: 89svh;
  position: relative;
  display: flex; align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(6rem, 8vw, 7.2rem) clamp(1.2rem, 5vw, 4.5rem) clamp(3.2rem, 5vw, 4.2rem);
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to left, rgba(7,9,12,0.9) 0%, rgba(7,9,12,0.66) 38%, rgba(7,9,12,0.18) 72%, rgba(7,9,12,0.52) 100%),
    linear-gradient(to top, rgba(7,9,12,0.86) 0%, rgba(7,9,12,0) 48%),
    url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=1600&q=82') center/cover no-repeat;
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.05);
  filter: saturate(0.82) contrast(1.08);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(255,255,255,0.055) 12.08%, transparent 12.18%),
    linear-gradient(90deg, transparent 0 50%, rgba(255,255,255,0.045) 50.08%, transparent 50.18%),
    linear-gradient(90deg, transparent 0 86%, rgba(255,255,255,0.045) 86.08%, transparent 86.18%);
  opacity: 0.46;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 26vh;
  z-index: 1;
  background: linear-gradient(to top, var(--black), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: right;
  max-width: min(760px, 88vw);
  margin-right: clamp(1.2rem, 7vw, 7.5rem);
  margin-left: auto;
  padding: 0;
  animation: heroIn 1s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-eyebrow {
  font-family: var(--font-roman);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(224,193,106,0.92);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  opacity: 0.9;
}

.hero-eyebrow::before {
  content: '';
  width: 4.2rem;
  height: 1px;
  background: linear-gradient(to left, var(--gold-light), transparent);
}

.hero h1 {
  font-family: var(--font-ar);
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 1.25rem;
  text-shadow: 0 18px 44px rgba(0,0,0,0.38);
}

.hero-brand {
  display: block;
  direction: ltr;
  font-family: var(--font-display);
  font-size: clamp(3.35rem, 8.3vw, 6.75rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.035em;
  color: var(--white);
  text-align: right;
  white-space: nowrap;
}

.hero-title-ar {
  display: block;
  margin-top: 1rem;
  color: var(--gold-light);
  font-size: clamp(1.65rem, 3.7vw, 3.25rem);
  line-height: 1.22;
}

.hero p {
  color: rgba(255,255,255,0.8);
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  max-width: 620px;
  margin: 0 0 2rem;
  line-height: 1.9;
}

.hero-route {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.4rem;
  color: rgba(255,255,255,0.56);
  font-family: var(--font-roman);
  letter-spacing: 0.14em;
  direction: ltr;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.hero-route::after {
  content: '';
  flex: 1;
  max-width: 170px;
  height: 1px;
  background: linear-gradient(to right, rgba(224,193,106,0.75), transparent);
}

.hero-btns {
  display: flex; gap: 1rem; justify-content: flex-start; flex-wrap: wrap;
}

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0.72; animation: bounce 2s infinite;
}
.hero-scroll span {
  font-size: 0.65rem; letter-spacing: 0.2em; color: var(--white); font-family: var(--font-roman);
}
.hero-scroll svg { width: 20px; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #090B0F;
  padding: 0.9rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-ar);
  border: none; cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: all 0.25s;
  letter-spacing: 0.02em;
  border-radius: 4px;
  min-height: 48px;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(169,130,43,0.28);
}

.btn-outline {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.34);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  font-size: 0.95rem;
  font-family: var(--font-ar);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
  border-radius: 4px;
  min-height: 48px;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(224,193,106,0.78);
  color: var(--gold-light);
}

.btn-wa {
  background: #1FAF5B;
  color: var(--white);
  padding: 1rem 2.6rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-ar);
  border: none; cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.7rem;
  transition: all 0.25s;
  position: relative;
  letter-spacing: 0.02em;
  border-radius: 4px;
  min-height: 48px;
}
.btn-wa:hover {
  background: #178a42;
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(37,211,102,0.3);
}

/* ─── SECTIONS GENERAL ───────────────────────────── */
section {
  padding: clamp(4.6rem, 8vw, 7.5rem) clamp(1.2rem, 5vw, 4.5rem);
}

.section-eyebrow {
  font-family: var(--font-roman);
  color: var(--oxblood);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: block;
  font-weight: 600;
}

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 3.15rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.section-sub {
  color: rgba(23,26,30,0.62);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.9;
}

.section-header {
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ─── GOLD DIVIDER ───────────────────────────────── */
.gold-line {
  width: 92px; height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(111,29,42,0.2), transparent);
  margin: 1.2rem 0;
}
.center .gold-line { margin: 1.2rem auto; }

/* ─── SERVICES ───────────────────────────────────── */
#services {
  background:
    linear-gradient(180deg, var(--black) 0, var(--black) 11.5rem, transparent 11.5rem),
    linear-gradient(180deg, #FBF7ED 0%, #FCFBF7 100%);
  padding-top: clamp(2rem, 4vw, 3.4rem);
}

#services .section-eyebrow,
#services .section-title {
  color: var(--white);
}
#services .section-sub {
  color: rgba(255,255,255,0.62);
}
#services .gold-line {
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  background: transparent;
  border: none;
  counter-reset: service;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  counter-increment: service;
  min-height: 312px;
  padding: 2.3rem 2rem 2rem;
  border: 1px solid rgba(169,130,43,0.18);
  border-radius: 8px;
  background: rgba(252,251,247,0.96);
  box-shadow: 0 16px 50px rgba(23,26,30,0.08);
  position: relative; overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  cursor: default;
  will-change: transform;
}

.service-card::before {
  content: counter(service, decimal-leading-zero);
  position: absolute;
  top: 1.45rem;
  left: 1.6rem;
  width: auto;
  height: auto;
  background: transparent;
  color: rgba(111,29,42,0.28);
  font-family: var(--font-roman);
  font-size: 2.1rem;
  line-height: 1;
  transition: color 0.28s ease, transform 0.28s ease;
}

.service-card:hover {
  background: #fffefa;
  border-color: rgba(169,130,43,0.36);
  box-shadow: var(--shadow-soft);
  transform: translateY(-7px);
}

.service-card:hover::before {
  color: rgba(169,130,43,0.42);
  transform: translateX(-4px);
}

.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.45rem;
  opacity: 0.85;
  filter: drop-shadow(0 10px 18px rgba(169,130,43,0.12));
}

.service-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.service-bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.48rem;
}
.service-bullets li {
  font-size: 0.9rem;
  color: rgba(23,26,30,0.64);
  display: flex; align-items: center; gap: 0.5rem;
}
.service-bullets li::before {
  content: '';
  width: 0.38rem;
  height: 0.38rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  flex: 0 0 auto;
}

.service-whatsapp {
  margin-top: 1.3rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
  background: rgba(111,29,42,0.07) !important;
  border: 1px solid rgba(111,29,42,0.22) !important;
  color: var(--oxblood) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  padding: 0.55rem 1.05rem !important;
  border-radius: 5px !important;
  transition: all 0.22s !important;
  min-height: 42px !important;
  letter-spacing: 0.01em !important;
}
.service-whatsapp:hover {
  background: var(--oxblood) !important;
  color: var(--white) !important;
  border-color: var(--oxblood) !important;
}

/* ─── WHY LVS ────────────────────────────────────── */
#why {
  background:
    linear-gradient(to left, rgba(7,9,12,0.96), rgba(7,9,12,0.82)),
    url('https://images.unsplash.com/photo-1486299267070-83823f5448dd?w=1400&q=78') center/cover scroll;
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 720px;
}

#why::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(224,193,106,0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(224,193,106,0.06) 0 1px, transparent 1px 100%);
  background-size: 88px 88px;
  opacity: 0.32;
}

#why::after {
  content: 'LVS';
  position: absolute;
  left: clamp(1rem, 5vw, 5rem);
  bottom: -2.2rem;
  color: rgba(255,255,255,0.035);
  font-family: var(--font-display);
  font-size: clamp(8rem, 24vw, 22rem);
  line-height: 0.8;
  letter-spacing: 0.08em;
  pointer-events: none;
}

#why .section-header,
#why .why-grid {
  position: relative;
  z-index: 1;
}

#why .section-title { color: var(--white); }
#why .section-eyebrow { color: var(--gold-light); }
#why .section-sub { color: rgba(255,255,255,0.62); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3.5rem;
  background: rgba(224,193,106,0.16);
  border: 1px solid rgba(224,193,106,0.16);
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.why-item {
  min-height: 230px;
  padding: 2rem;
  border: none;
  background: rgba(10,12,15,0.58);
  backdrop-filter: blur(10px);
  position: relative;
  transition: background 0.3s;
}
.why-item:hover {
  background: rgba(15,18,22,0.82);
}

.why-num {
  font-family: var(--font-roman);
  font-size: 2.5rem;
  color: rgba(224,193,106,0.3);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.why-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.why-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
}

/* ─── HOW IT WORKS ───────────────────────────────── */
#how {
  background:
    linear-gradient(90deg, rgba(36,53,47,0.04) 0 1px, transparent 1px 100%),
    #FCFBF7;
  background-size: 54px 54px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  margin-top: 3.5rem;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.steps::before {
  content: '';
  position: absolute;
  top: 42px;
  right: 12.5%; left: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111,29,42,0.35), var(--gold), transparent);
  opacity: 0.35;
}

.step {
  text-align: center;
  padding: 0 1.2rem 1rem;
  position: relative;
}

.step-dot {
  width: 82px; height: 82px;
  border: 1px solid rgba(169,130,43,0.52);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  background: #FCFBF7;
  position: relative; z-index: 1;
  box-shadow: 0 18px 45px rgba(169,130,43,0.08);
  transition: all 0.3s;
}
.step:hover .step-dot {
  background: var(--oxblood);
  border-color: var(--oxblood);
  transform: translateY(-4px);
}
.step:hover .step-dot svg path,
.step:hover .step-dot svg circle,
.step:hover .step-dot svg rect,
.step:hover .step-dot svg polyline { stroke: var(--white) !important; }

.step-dot svg { width: 28px; height: 28px; }

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.8;
}

/* ─── GUARANTEES ─────────────────────────────────── */
#guarantees {
  background: linear-gradient(180deg, #F4EFE5 0%, #FCFBF7 100%);
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 3.5rem;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-card {
  border: 1px solid rgba(169,130,43,0.18);
  border-radius: 10px;
  background: rgba(255,254,250,0.92);
  box-shadow: 0 18px 52px rgba(23,26,30,0.055);
  padding: 2.6rem 2.2rem 2rem;
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  will-change: transform;
}
.guarantee-card:hover {
  border-color: rgba(169,130,43,0.38);
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.gc-icon {
  width: 58px; height: 58px;
  border: 1px solid rgba(169,130,43,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(169,130,43,0.05);
  transition: background 0.28s, border-color 0.28s;
}
.guarantee-card:hover .gc-icon {
  background: rgba(169,130,43,0.1);
  border-color: rgba(169,130,43,0.55);
}
.gc-icon svg { width: 30px; height: 30px; }

.guarantee-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.7rem;
  line-height: 1.4;
}

.guarantee-card p {
  font-size: 0.93rem;
  color: rgba(23,26,30,0.62);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.gc-tag {
  display: inline-block;
  font-family: var(--font-roman);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oxblood);
  border: 1px solid rgba(111,29,42,0.22);
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
  direction: ltr;
}

.trust-badges-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.8rem, 2vw, 2rem);
  margin-top: 3.5rem;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(169,130,43,0.14);
  border-radius: 10px;
  padding: 1.4rem 2rem;
}

.tbadge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: rgba(23,26,30,0.7);
  font-family: var(--font-ar);
  white-space: nowrap;
}
.tbadge-icon { font-size: 1.1rem; }
.tbadge-sep {
  width: 1px; height: 18px;
  background: rgba(169,130,43,0.22);
  flex-shrink: 0;
}

/* ─── ABOUT ──────────────────────────────────────── */
#about {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.about-image {
  min-height: 620px;
  background:
    linear-gradient(to left, rgba(7,9,12,0.16), rgba(7,9,12,0.46)),
    url('https://images.unsplash.com/photo-1505761671935-60b3a7427bad?w=1300&q=85') center/cover no-repeat;
  position: relative;
}
.about-image::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(7,9,12,0.42) 100%),
    linear-gradient(90deg, rgba(224,193,106,0.14) 0 1px, transparent 1px 100%);
  background-size: auto, 72px 72px;
}

.about-text {
  background: #101318;
  color: var(--white);
  padding: clamp(4rem, 7vw, 6.8rem) clamp(1.5rem, 5vw, 5rem);
  display: flex; flex-direction: column; justify-content: center;
}

.about-text .section-eyebrow { color: var(--gold-light); }
.about-text .section-title { color: var(--white); }

.about-text p {
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 1rem;
}

.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 2rem;
}
.stat {
  border-right: 2px solid var(--gold-light);
  padding-right: 1rem;
}
.stat .num {
  font-family: var(--font-roman);
  font-size: 2rem;
  color: var(--gold-light);
  font-weight: 600;
  line-height: 1;
  display: block;
}
.stat .label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.58);
  margin-top: 0.3rem;
  display: block;
}

.btn-about-cta {
  margin-top: 2rem;
}

/* ─── FAQ ────────────────────────────────────────── */
#faq {
  background: #FCFBF7;
}

.faq-list {
  display: flex; flex-direction: column; gap: 1px;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: 0;
}

.faq-item {
  border: 1px solid rgba(169,130,43,0.2);
  background: rgba(255,255,255,0.55);
  overflow: hidden;
}

.faq-q {
  padding: 1.55rem 1.7rem;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(244,239,229,0.72); }

.faq-q span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}

.faq-toggle {
  width: 22px; height: 22px;
  border: 1px solid rgba(111,29,42,0.38);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
  color: var(--oxblood); font-size: 1rem; font-weight: 300;
  font-family: monospace;
}
.faq-item.open .faq-toggle {
  background: var(--oxblood); color: var(--white); transform: rotate(45deg);
}

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  padding: 0 1.6rem;
  background: rgba(244,239,229,0.72);
  font-size: 0.9rem; color: var(--grey); line-height: 1.9;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 1.2rem 1.6rem 1.5rem;
}

/* ─── FINAL CTA ──────────────────────────────────── */
#cta {
  background:
    linear-gradient(to left, rgba(7,9,12,0.96), rgba(7,9,12,0.72)),
    url('https://images.unsplash.com/photo-1533929736458-ca588d08c8be?w=1800&q=82') center/cover no-repeat;
  text-align: center;
  padding: 8rem 5%;
  position: relative; overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(224,193,106,0.14) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(224,193,106,0.1) 0 1px, transparent 1px 100%);
  background-size: 76px 76px;
  opacity: 0.38;
}

#cta .section-eyebrow { color: var(--gold-light); }

#cta h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
  position: relative;
  line-height: 1.35;
}

#cta p {
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.9;
  position: relative;
}

.cta-notice {
  color: rgba(224,193,106,0.7) !important;
  font-size: 0.85rem !important;
  margin-top: -1.5rem !important;
  margin-bottom: 2rem !important;
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: #07090C;
  padding: 3.5rem 5% 2rem;
  border-top: 1px solid rgba(184,150,12,0.2);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand .name {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.5rem;
  letter-spacing: 0.16em;
  display: block; margin-bottom: 0.2rem;
  direction: ltr;
}
.footer-brand .sub {
  font-family: var(--font-roman);
  color: var(--gold-light);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: block; margin-bottom: 1.2rem;
}
.footer-brand p {
  font-size: 0.87rem; color: rgba(255,255,255,0.4); line-height: 1.9;
}

.footer-col h4 {
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-roman);
  margin-bottom: 1.2rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none; font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-contact { display: flex; flex-direction: column; gap: 0.8rem; }
.contact-item {
  display: flex; align-items: center; gap: 0.7rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
}
.contact-item a { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-item a:hover { color: var(--gold-light); }
.contact-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

.social-row {
  display: flex; gap: 0.8rem; margin-top: 1rem;
}
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.25s;
  font-size: 0.85rem;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.2);
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.1em;
  opacity: 0.5;
}

/* ─── FLOATING WHATSAPP ──────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; left: 28px;
  z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
}

.wa-btn {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.25s;
  animation: pulse 2.5s infinite;
}
.wa-btn:hover { transform: scale(1.1); }
.wa-btn svg { width: 30px; height: 30px; }

@keyframes pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7); }
}

/* ─── MOBILE STICKY CTA ──────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: rgba(7,9,12,0.97) !important;
  border-top: 1px solid rgba(224,193,106,0.18) !important;
  padding: 0.6rem 0.9rem 0.8rem !important;
}
.mobile-cta-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.48);
  font-family: var(--font-ar);
}
.mobile-cta-btns {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0.5rem;
}
.mobile-btn-call {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 0.5rem;
  font-family: var(--font-ar);
  font-size: 0.9rem;
  border-radius: 6px;
  min-height: 50px;
  transition: background 0.2s;
}
.mobile-btn-call:hover { background: rgba(255,255,255,0.1); }
.mobile-btn-wa {
  background: #1FAF5B;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0.8rem;
  font-family: var(--font-ar);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 6px;
  min-height: 50px;
  box-shadow: 0 4px 16px rgba(31,175,91,0.35);
  transition: background 0.2s, box-shadow 0.2s;
}
.mobile-btn-wa:hover {
  background: #178a42;
  box-shadow: 0 6px 22px rgba(31,175,91,0.45);
}

/* ─── SCROLL REVEAL ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(.2,.8,.2,1), transform 0.8s cubic-bezier(.2,.8,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── TRUST STRIP ────────────────────────────────── */
.avail-dot {
  width: 7px; height: 7px;
  background: #2ECC71;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  animation: availPulse 2s infinite;
}
@keyframes availPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(46,204,113,0.5); }
  50%     { box-shadow: 0 0 0 5px rgba(46,204,113,0); }
}

.hero-avail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(46,204,113,0.1);
  border: 1px solid rgba(46,204,113,0.28);
  border-radius: 20px;
  padding: 0.28rem 0.9rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-ar);
}

.trust-strip {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(224,193,106,0.14);
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.8rem, 2.5vw, 3rem);
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  color: rgba(255,255,255,0.68);
  font-size: 0.82rem;
  font-family: var(--font-ar);
  white-space: nowrap;
}
.trust-item strong { color: var(--gold-light); font-weight: 600; }
.trust-sep {
  width: 1px; height: 14px;
  background: rgba(224,193,106,0.18);
  flex-shrink: 0;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(169,130,43,0.22);
  border-radius: 8px;
  padding: 0.55rem 1.1rem;
  margin-top: 1.2rem;
  box-shadow: 0 4px 16px rgba(23,26,30,0.06);
  flex-wrap: wrap;
  justify-content: center;
}
.rb-stars { color: #F9AB00; font-size: 1rem; letter-spacing: 0.05em; }
.rb-text { font-size: 0.8rem; color: var(--grey); font-family: var(--font-ar); }
.rb-text strong { color: var(--charcoal); }

/* ─── MOBILE NAV ─────────────────────────────────── */
.nav-mobile {
  display: none;
  position: fixed; top: 76px; right: 0; left: 0;
  background: rgba(10,10,10,0.97);
  padding: 1.5rem 5%;
  z-index: 998;
  border-bottom: 1px solid rgba(184,150,12,0.15);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.nav-mobile a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 1rem; font-family: var(--font-ar);
  display: block; padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-mobile-wa-btn {
  display: block !important;
  margin-top: 0.5rem !important;
  background: #1FAF5B !important;
  color: #fff !important;
  text-align: center !important;
  border-radius: 6px !important;
  padding: 0.85rem 1rem !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  border-bottom: none !important;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-brand {
    font-size: clamp(3.6rem, 13vw, 6.8rem);
  }

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

  .guarantees-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .guarantees-grid .guarantee-card:last-child {
    grid-column: 1 / -1;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }

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

  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }

  #about { grid-template-columns: 1fr; }
  .about-image { min-height: 340px; }

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

@media (max-width: 768px) {
  nav {
    height: 68px;
    padding: 0 1rem;
  }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .nav-mobile { top: 68px; }

  .hero {
    min-height: 86svh;
    padding: 6.8rem 1rem 3.7rem;
    align-items: flex-end;
  }

  .hero-bg { background-position: 42% center; }

  .hero::before { opacity: 0.22; }

  .hero-content {
    max-width: 100%;
    margin: 0;
    text-align: right;
  }

  .hero-brand {
    font-size: clamp(2.45rem, 11.5vw, 3.6rem);
    letter-spacing: 0.015em;
  }

  .hero-title-ar { font-size: clamp(1.55rem, 8vw, 2.4rem); }

  .hero p {
    font-size: 1rem;
    line-height: 1.85;
  }

  .hero-route {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.8rem;
  }

  .hero-btns { gap: 0.75rem; }
  .hero-scroll { display: none; }

  .services-grid,
  .why-grid,
  .testimonials-grid,
  .guarantees-grid {
    grid-template-columns: 1fr;
  }

  .trust-badges-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .tbadge-sep { display: none; }

  .service-card { min-height: auto; }
  .why-item { min-height: auto; }

  .about-image { min-height: 360px; }
  .about-text { padding: 3rem 4%; }
  .about-stats { grid-template-columns: 1fr 1fr; }

  .faq-list { margin-right: auto; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .mobile-cta { display: block; }
  body { padding-bottom: 108px !important; }

  .wa-float {
    display: flex !important;
    bottom: 112px !important;
    left: 16px !important;
  }

  .trust-strip { gap: 0.65rem 1.1rem; font-size: 0.78rem; }
  .reviews-badge { font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .hero { padding-top: 6.5rem; }

  .hero-eyebrow {
    letter-spacing: 0.18em;
    font-size: 0.65rem;
  }
  .hero-eyebrow::before { width: 2.5rem; }

  .hero-brand { font-size: clamp(2.35rem, 11vw, 3.35rem); }

  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }

  .about-stats { grid-template-columns: 1fr; }

  .trust-sep { display: none; }
  .hero-avail { font-size: 0.74rem; }
}

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

/* ── WHATSAPP MODAL ──────────────────────────────── */
.wa-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,9,12,0.72);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.wa-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.wa-modal {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.wa-modal-overlay.active .wa-modal {
  transform: translateY(0);
}
.wa-modal-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--grey);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.wa-modal-close:hover { background: var(--grey-light); }
.wa-modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.wa-modal-header svg { margin-bottom: 0.5rem; }
.wa-modal-header h3 {
  font-family: var(--font-ar);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.25rem;
}
.wa-modal-header p {
  font-size: 0.875rem;
  color: var(--grey);
}
.wa-modal-field {
  margin-bottom: 1.1rem;
}
.wa-modal-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.optional { font-weight: 400; color: var(--grey); }
.wa-modal-field input,
.wa-modal-field textarea {
  width: 100%;
  border: 1.5px solid var(--grey-light);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-ar);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--offwhite);
  outline: none;
  transition: border-color 0.2s;
  direction: rtl;
}
.wa-modal-field input:focus,
.wa-modal-field textarea:focus {
  border-color: var(--gold);
}
.wa-modal-field textarea { resize: none; }
.wa-modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.wa-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.wa-service-btn {
  border: 1.5px solid var(--grey-light);
  background: var(--offwhite);
  border-radius: 8px;
  padding: 0.55rem 0.5rem;
  font-family: var(--font-ar);
  font-size: 0.82rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.18s;
  text-align: center;
}
.wa-service-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.wa-service-btn.active {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--black);
  font-weight: 600;
}
.wa-modal-submit {
  width: 100%;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-ar);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  transition: background 0.2s, transform 0.15s;
}
.wa-modal-submit:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}
@media (max-width: 480px) {
  .wa-modal { padding: 1.5rem; }
  .wa-services-grid { grid-template-columns: 1fr 1fr; }
  .wa-modal-row { grid-template-columns: 1fr; }
}

/* ─── SOCIAL PROOF TOASTS ────────────────────────────────────────── */
.sp-container {
  position: fixed;
  bottom: 28px;
  z-index: 9995;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 340px;
  pointer-events: none;
}
.sp-pos-bottom-right { right: 24px; align-items: flex-end; }
.sp-pos-bottom-left  { left: 24px;  align-items: flex-start; }

.sp-toast {
  pointer-events: auto;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  width: 100%;
  background: rgba(252,251,247,0.97);
  border: 1px solid rgba(169,130,43,0.22);
  border-radius: 12px;
  box-shadow: var(--shadow-soft, 0 18px 50px rgba(7,9,12,0.18));
  padding: 0.85rem 0.95rem;
  direction: rtl;
  text-align: right;
  position: relative;
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.sp-toast.sp-show { opacity: 1; transform: translateY(0) scale(1); }
.sp-toast.sp-hide { opacity: 0; transform: translateY(10px) scale(0.97); }
.sp-toast:hover { box-shadow: var(--shadow-deep, 0 22px 60px rgba(7,9,12,0.26)); }

.sp-icon {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.sp-body { flex: 1; min-width: 0; }
.sp-text {
  font-family: var(--font-ar);
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--charcoal);
  margin: 0 0 0.2rem;
}
.sp-meta {
  font-family: var(--font-ar);
  font-size: 0.72rem;
  color: var(--grey);
}
.sp-close {
  position: absolute;
  top: 6px; left: 8px;
  width: 20px; height: 20px;
  border: none;
  background: transparent;
  color: var(--grey);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.sp-close:hover { background: rgba(0,0,0,0.06); color: var(--charcoal); }

@media (max-width: 768px) {
  .sp-container { bottom: 124px; max-width: calc(100% - 32px); }
  .sp-pos-bottom-right { right: 16px; }
  .sp-pos-bottom-left  { left: 16px; }
}
