/* ============================================================
   Room Service — Public Website
   Warm brand palette · AR/EN RTL/LTR · Responsive
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Noto+Sans+Arabic:wght@400;500;600;700;800&display=swap');

/* ── Brand Variables ───────────────────────────────────────── */
:root {
  /* Brand — Eggplant / Bone / Bronco */
  --primary:        #52353D;   /* Eggplant */
  --primary-light:  #6E4C55;
  --primary-dark:   #3A2027;
  --secondary:      #D3C8B0;   /* Bone */
  --tertiary:       #D3C8B0;   /* alias of secondary */
  --accent:         #AB9B8C;   /* Bronco */

  /* Brand gradient — used ONLY in hero, splash, onboarding */
  --brand-gradient: linear-gradient(135deg, #52353D 0%, #AB9B8C 50%, #D3C8B0 100%);

  --bg:             #FCF9F4;
  --surface:        #FFFFFF;
  --surface-alt:    #F6F3EE;
  --surface-soft:   #F0EAE0;

  --ink:            #1C1C19;
  --ink-sec:        #4F4446;
  --ink-ter:        #8E8078;

  --line:           #E6DED3;
  --line-soft:      #EDE7DE;

  --success:        #617A55;
  --warning:        #BA8B49;
  --danger:         #A14F4F;
  --info:           #4A7FA5;

  --shadow-xs:  0 2px 8px  rgba(82,53,61,0.06);
  --shadow-sm:  0 4px 16px rgba(82,53,61,0.08);
  --shadow:     0 12px 40px rgba(82,53,61,0.10);
  --shadow-lg:  0 24px 64px rgba(82,53,61,0.14);

  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-2xl: 36px;
  --r-pill:999px;

  --nav-h: 112px;
  --container: 1200px;
  --gap: 32px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans","Noto Sans Arabic",sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }
ul { list-style: none; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── Typography ─────────────────────────────────────────────── */
.display { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
.h1      { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.025em; }
.h2      { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; line-height: 1.3; letter-spacing: -0.02em; }
.h3      { font-size: 1.2rem; font-weight: 700; }
.lead    { font-size: 1.1rem; font-weight: 400; color: var(--ink-sec); line-height: 1.7; }
.caption { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink-ter); }
.muted   { color: var(--ink-ter); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--r-pill);
  font-size: 0.95rem; font-weight: 700; line-height: 1;
  transition: all 0.2s ease; white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 20px rgba(82,53,61,0.22);
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 6px 28px rgba(82,53,61,0.30); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--surface); color: var(--primary);
  border: 2px solid var(--line);
}
.btn-secondary:hover { border-color: var(--tertiary); background: var(--surface-alt); }

.btn-ghost {
  background: transparent; color: var(--ink-sec);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { background: var(--surface-alt); color: var(--ink); }

.btn-accent {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 20px rgba(186,139,73,0.28);
}
.btn-accent:hover { filter: brightness(1.08); }

.btn-danger {
  background: var(--danger); color: #fff;
}
.btn-danger:hover { filter: brightness(0.92); }

.btn-sm  { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg  { padding: 16px 36px; font-size: 1.05rem; }
.btn-xl  { padding: 18px 44px; font-size: 1.1rem; }
.btn-full{ width: 100%; }

.btn[disabled], .btn.loading {
  opacity: 0.6; pointer-events: none;
}
.btn .spinner-sm { animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; inset-inline: 0; z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(252,249,244,0.95);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-xs);
}
.navbar .container {
  display: flex; align-items: center; gap: 32px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-brand img.site-logo { height: 80px; width: auto; }
@media (max-width: 768px) {
  .nav-brand img.site-logo { height: 56px; }
}
.nav-brand-name {
  font-size: 1.15rem; font-weight: 800;
  color: var(--primary); letter-spacing: -0.02em;
}
/* Whatsapp pill in nav */
.nav-wa-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 0.84rem; font-weight: 700;
  background: rgba(37,211,102,0.1);
  color: #128C40;
  border: 1.5px solid rgba(37,211,102,0.3);
  transition: all 0.15s;
}
.nav-wa-pill:hover { background: #25D366; color: #fff; border-color: #25D366; }
.nav-wa-pill svg { width: 16px; height: 16px; }
@media (max-width: 900px) { .nav-wa-pill .label { display: none; } }
.nav-links {
  display: flex; align-items: center; gap: 6px;
  flex: 1;
}
.nav-link {
  padding: 7px 12px;
  border-radius: var(--r-pill);
  font-size: 0.88rem; font-weight: 600;
  color: var(--ink-sec);
  transition: all 0.15s;
}
.nav-link:hover { color: var(--primary); background: var(--surface-soft); }
.nav-link.active { color: var(--primary); background: var(--surface-alt); }
.nav-actions {
  display: flex; align-items: center; gap: 8px; margin-inline-start: auto;
}
.nav-lang-btn {
  padding: 7px 13px;
  border-radius: var(--r-pill);
  font-size: 0.82rem; font-weight: 700;
  border: 1.5px solid var(--line);
  color: var(--ink-sec);
  background: var(--surface);
  transition: all 0.15s;
}
.nav-lang-btn:hover { border-color: var(--tertiary); background: var(--surface-alt); }

.nav-user-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 14px 5px 6px;
  border-radius: var(--r-pill);
  background: var(--surface-alt);
  border: 1.5px solid var(--line);
  cursor: pointer; position: relative;
  font-size: 0.86rem; font-weight: 700;
  color: var(--ink);
  transition: background 0.15s;
}
.nav-user-pill:hover { background: var(--surface-soft); }
.nav-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800;
  flex-shrink: 0;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px); inset-inline-end: 0;
  min-width: 180px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: none;
  z-index: 100;
}
.nav-dropdown.open { display: block; }
.nav-dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px;
  font-size: 0.88rem; font-weight: 600; color: var(--ink);
  transition: background 0.12s;
  cursor: pointer;
}
.nav-dropdown-item:hover { background: var(--surface-alt); }
.nav-dropdown-item.danger { color: var(--danger); }
.nav-dropdown-sep { height: 1px; background: var(--line); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: var(--r-sm);
  transition: background 0.15s;
}
.hamburger:hover { background: var(--surface-alt); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: var(--nav-h); inset-inline: 0;
  background: var(--surface); z-index: 800;
  padding: 20px 24px 28px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-link {
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: 1rem; font-weight: 600; color: var(--ink);
  transition: background 0.12s;
  cursor: pointer;
}
.mobile-menu-link:hover { background: var(--surface-alt); }
.mobile-menu-sep { height: 1px; background: var(--line); margin: 8px 0; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  padding-top: var(--nav-h);
  min-height: 100svh;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 32px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  min-height: calc(100svh - var(--nav-h));
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--brand-gradient);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(ellipse 80% 60% at 10% 100%, rgba(58,32,39,0.18), transparent 60%);
  pointer-events: none;
}
.hero-watermark {
  position: absolute;
  top: 50%; inset-inline-end: -120px;
  transform: translateY(-50%);
  width: 640px; height: 640px;
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}
.hero-watermark img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); }
.hero-content {
  position: relative; z-index: 1;
  padding: 80px 0 80px 0;
  color: #fff;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: var(--r-pill);
  font-size: 0.82rem; font-weight: 700; color: #fff;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-headline {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 22px;
  white-space: pre-line;
  text-shadow: 0 2px 24px rgba(58,32,39,0.18);
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.92);
  line-height: 1.75; max-width: 480px;
  margin-bottom: 38px;
}
.hero-cta-row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
  margin-bottom: 48px;
}
.hero-cta-row .btn-primary {
  background: #fff; color: var(--primary);
  box-shadow: 0 8px 32px rgba(58,32,39,0.28);
}
.hero-cta-row .btn-primary:hover { background: #fff; color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(58,32,39,0.36); }
.hero-cta-row .btn-secondary {
  background: rgba(255,255,255,0.12); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
}
.hero-cta-row .btn-secondary:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.6); }
.hero-trust {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.83rem; font-weight: 700; color: rgba(255,255,255,0.92);
}
.hero-trust-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 4px rgba(211,200,176,0.25);
}
.hero-visual {
  position: relative; z-index: 1;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 0;
}
.hero-image-wrap {
  position: relative;
  width: 100%; max-width: 540px;
}
.hero-image-main {
  width: 100%; height: 520px;
  object-fit: cover;
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-lg);
}
.hero-badge-card {
  position: absolute;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
}
.hero-badge-card.top-start {
  top: 40px; inset-inline-start: -32px;
}
.hero-badge-card.bottom-end {
  bottom: 50px; inset-inline-end: -32px;
}
.hero-badge-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-badge-icon.green  { background: #EAF2E6; }
.hero-badge-icon.gold   { background: #FDF3E0; }
.hero-badge-icon.blue   { background: #E3EEF7; }
.hero-badge-title { font-size: 0.95rem; font-weight: 800; color: var(--ink); }
.hero-badge-sub   { font-size: 0.75rem; color: var(--ink-ter); font-weight: 500; }

/* ── WhatsApp hero badge (on hero image) ─────────────────────────────── */
.hero-whatsapp-badge {
  position: absolute;
  left: 50%; bottom: -22px;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-radius: 999px;
  padding: 12px 22px 12px 16px;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.38);
  text-decoration: none;
  font-weight: 700;
  max-width: 88%;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
  z-index: 3;
}
.hero-whatsapp-badge:hover { transform: translateX(-50%) translateY(-2px); box-shadow: 0 18px 40px rgba(37,211,102,0.5); }
.hero-whatsapp-icon {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  flex-shrink: 0;
}
.hero-whatsapp-text { display: flex; flex-direction: column; line-height: 1.1; }
.hero-whatsapp-title { font-size: 0.92rem; font-weight: 800; }
.hero-whatsapp-sub   { font-size: 0.72rem; font-weight: 500; opacity: 0.92; }
.hero-whatsapp-arrow { font-size: 1.4rem; opacity: 0.85; margin-inline-start: 4px; }
[dir="rtl"] .hero-whatsapp-arrow { transform: scaleX(-1); }

/* ── WhatsApp floating action button ─────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 22px;
  inset-inline-end: 22px;
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px 12px 14px;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 9000;
  transition: transform .2s ease, box-shadow .2s ease;
  animation: whatsapp-pulse 2.4s ease-out infinite;
}
.whatsapp-fab:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(37,211,102,0.55); }
.whatsapp-fab-icon {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
}
.whatsapp-fab-label { padding-inline-end: 4px; }

@keyframes whatsapp-pulse {
  0%   { box-shadow: 0 14px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 14px 30px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 14px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 640px) {
  .whatsapp-fab-label { display: none; }
  .whatsapp-fab { padding: 10px; }
  .hero-whatsapp-badge { font-size: 0.85rem; padding: 10px 16px 10px 12px; }
  .hero-whatsapp-sub { display: none; }
}
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600; color: var(--ink-ter);
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{ transform:translateX(-50%) translateY(0); } 50%{ transform:translateX(-50%) translateY(6px); } }

/* ── Stats Bar ───────────────────────────────────────────────── */
.stats-bar {
  background: var(--primary);
  padding: 40px 0;
}
.stats-bar .container {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; color: #fff;
  letter-spacing: -0.03em; line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* ── Section base ────────────────────────────────────────────── */
section { padding: 96px 0; }
.section-header {
  text-align: center; margin-bottom: 56px;
}
.section-header .caption { margin-bottom: 10px; }
.section-header .h1 { margin-bottom: 14px; }
.section-header .lead { max-width: 580px; margin-inline: auto; }

/* ── Services Section ────────────────────────────────────────── */
.services-section { background: var(--surface); }
.category-tabs {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 40px;
}
.cat-tab {
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: 0.86rem; font-weight: 700;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink-sec);
  transition: all 0.15s;
}
.cat-tab:hover { border-color: var(--tertiary); background: var(--surface-soft); }
.cat-tab.active {
  background: var(--primary); color: #fff;
  border-color: var(--primary);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service-card-img {
  width: 100%; height: 200px;
  object-fit: cover;
  background: var(--surface-soft);
}
.service-card-img-placeholder {
  width: 100%; height: 200px;
  background: var(--surface-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.service-card-body { padding: 20px; }
.service-card-cat {
  font-size: 0.74rem; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.service-card-name {
  font-size: 1.05rem; font-weight: 800; color: var(--ink);
  margin-bottom: 8px;
}
.service-card-desc {
  font-size: 0.83rem; color: var(--ink-sec); line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 4px;
}
.service-card-price {
  font-size: 0.8rem; color: var(--ink-ter); font-weight: 600;
}
.service-card-price strong { font-size: 1.15rem; color: var(--primary); font-weight: 800; }
.service-card-duration {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.78rem; color: var(--ink-ter); font-weight: 600;
}

/* ── How it Works ────────────────────────────────────────────── */
.how-section { background: var(--bg); }
.steps-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; align-items: start;
  position: relative;
}
.steps-row::before {
  content: "";
  position: absolute;
  top: 56px; inset-inline-start: calc(16.66% + 32px); inset-inline-end: calc(16.66% + 32px);
  height: 2px; background: var(--line);
}
.step-item {
  text-align: center; position: relative;
}
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(82,53,61,0.20);
  position: relative; z-index: 1;
}
.step-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 24px;
  position: relative; z-index: 1;
  box-shadow: var(--shadow-sm);
}
.step-title {
  font-size: 1.05rem; font-weight: 800; margin-bottom: 10px;
  color: var(--ink);
}
.step-body { font-size: 0.88rem; color: var(--ink-sec); line-height: 1.7; }

/* ── Why Us ──────────────────────────────────────────────────── */
.why-section { background: var(--surface); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--surface-alt);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: box-shadow 0.2s;
}
.why-card:hover { box-shadow: var(--shadow-sm); }
.why-icon {
  width: 52px; height: 52px;
  background: var(--surface);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  box-shadow: var(--shadow-xs);
}
.why-title { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.why-body  { font-size: 0.85rem; color: var(--ink-sec); line-height: 1.65; }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-section { background: var(--bg); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover { box-shadow: var(--shadow-sm); }
.testimonial-stars {
  display: flex; gap: 3px; margin-bottom: 14px; color: var(--accent);
  font-size: 1rem;
}
.testimonial-text {
  font-size: 0.9rem; color: var(--ink-sec); line-height: 1.75;
  margin-bottom: 20px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 800; font-size: 0.9rem; }
.testimonial-meta { font-size: 0.76rem; color: var(--ink-ter); }

/* ── About ───────────────────────────────────────────────────── */
.about-section { background: var(--surface); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-image {
  width: 100%; height: 480px;
  object-fit: cover;
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -24px; inset-inline-end: -24px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 160px;
}
.about-badge-num  { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.about-badge-text { font-size: 0.78rem; font-weight: 600; opacity: 0.75; margin-top: 4px; }
.about-content .caption { margin-bottom: 12px; }
.about-content .h1 { margin-bottom: 16px; }
.about-content .lead { margin-bottom: 20px; }
.about-content p { font-size: 0.92rem; color: var(--ink-sec); line-height: 1.8; margin-bottom: 16px; }
.about-bullets {
  margin: 28px 0;
  display: flex; flex-direction: column; gap: 14px;
}
.about-bullet {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem;
}
.about-bullet-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 7px;
}

/* ── App CTA ─────────────────────────────────────────────────── */
.app-cta-section {
  background: var(--primary);
  padding: 80px 0;
}
.app-cta-section .container {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 48px;
}
.app-cta-text .h1 { color: #fff; margin-bottom: 12px; }
.app-cta-text .lead { color: rgba(255,255,255,0.7); }
.app-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.app-store-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--r-lg);
  color: #fff; font-weight: 700; font-size: 0.9rem;
  transition: background 0.15s;
}
.app-store-btn:hover { background: rgba(255,255,255,0.20); }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--primary-dark);
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.75);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand-name { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer-tagline    { font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }
.footer-socials    { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  transition: background 0.15s;
}
.social-icon:hover { background: rgba(255,255,255,0.16); }
.footer-heading { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.footer-link, .footer-links li {
  font-size: 0.87rem; padding: 4px 0;
  color: rgba(255,255,255,0.68);
  transition: color 0.12s; cursor: pointer;
}
.footer-link:hover, .footer-links li:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; padding: 4px 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
}
.footer-bottom-links { display: flex; gap: 20px; }

/* ── Auth Modal ──────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(28,28,25,0.55);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--surface);
  border-radius: var(--r-2xl);
  padding: 40px;
  width: 100%; max-width: 420px;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.25s ease;
  position: relative;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute; top: 16px; inset-inline-end: 16px;
  width: 32px; height: 32px;
  border-radius: var(--r-pill);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--ink-ter);
  transition: all 0.12s;
}
.modal-close:hover { background: var(--surface-soft); color: var(--ink); }
.modal-icon {
  width: 64px; height: 64px; border-radius: var(--r-xl);
  background: var(--surface-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 24px;
}
.modal-title { font-size: 1.4rem; font-weight: 800; text-align: center; margin-bottom: 6px; }
.modal-sub   { font-size: 0.88rem; color: var(--ink-ter); text-align: center; margin-bottom: 28px; }

/* Form elements */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.84rem; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.form-input {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  font-size: 0.95rem; color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(82,53,61,0.09);
}
.form-input.error { border-color: var(--danger); }
.form-error { font-size: 0.78rem; color: var(--danger); font-weight: 600; margin-top: 5px; }
.form-hint  { font-size: 0.78rem; color: var(--ink-ter); margin-top: 5px; }

/* OTP input */
.otp-input {
  letter-spacing: 0.5em; font-size: 1.5rem; font-weight: 800;
  text-align: center;
}
.otp-timer { text-align: center; font-size: 0.83rem; color: var(--ink-ter); margin-top: 12px; }
.otp-resend { color: var(--primary); font-weight: 700; cursor: pointer; }
.otp-resend:disabled { color: var(--ink-ter); cursor: default; }

/* Stars rating */
.stars-input { display: flex; gap: 8px; justify-content: center; margin-bottom: 20px; }
.star-btn { font-size: 2rem; cursor: pointer; transition: transform 0.1s; color: var(--line); }
.star-btn.active { color: var(--accent); }
.star-btn:hover  { transform: scale(1.2); }

/* ── Booking Wizard ──────────────────────────────────────────── */
.wizard-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(28,28,25,0.5);
  backdrop-filter: blur(6px);
  display: flex; align-items: flex-end; justify-content: center;
  animation: fadeIn 0.2s ease;
}
@media (min-width: 768px) {
  .wizard-overlay { align-items: center; }
}
.wizard-sheet {
  background: var(--surface);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
  width: 100%; max-width: 620px;
  max-height: 92svh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: slideUpSheet 0.3s ease;
}
@media (min-width: 768px) {
  .wizard-sheet { border-radius: var(--r-2xl); max-height: 88svh; }
}
@keyframes slideUpSheet { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.wizard-header {
  padding: 24px 28px 0;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  position: sticky; top: 0; background: var(--surface); z-index: 1;
}
.wizard-title-wrap {}
.wizard-title    { font-size: 1.15rem; font-weight: 800; }
.wizard-step-label { font-size: 0.78rem; color: var(--ink-ter); font-weight: 600; margin-top: 3px; }
.wizard-progress {
  display: flex; gap: 6px; margin-top: 16px;
  padding: 0 28px 16px;
  border-bottom: 1px solid var(--line);
}
.wizard-dot {
  height: 4px; flex: 1; border-radius: 4px;
  background: var(--line);
  transition: background 0.3s;
}
.wizard-dot.done   { background: var(--success); }
.wizard-dot.active { background: var(--primary); }

.wizard-body { padding: 28px; }
.wizard-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--line);
  display: flex; gap: 12px;
  position: sticky; bottom: 0; background: var(--surface);
}

/* Booking review rows */
.review-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--line-soft);
  gap: 16px;
}
.review-row:last-child { border-bottom: none; }
.review-row-label { font-size: 0.82rem; color: var(--ink-ter); font-weight: 600; flex-shrink: 0; }
.review-row-value { font-size: 0.9rem; font-weight: 700; color: var(--ink); text-align: end; }
.review-total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0 0;
  margin-top: 4px;
}
.review-total-label { font-size: 1rem; font-weight: 800; }
.review-total-price { font-size: 1.4rem; font-weight: 800; color: var(--primary); }

.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.payment-option {
  border: 2px solid var(--line);
  border-radius: var(--r-lg);
  padding: 16px;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}
.payment-option:hover { border-color: var(--tertiary); background: var(--surface-alt); }
.payment-option.selected { border-color: var(--primary); background: rgba(82,53,61,0.05); }
.payment-option-icon { font-size: 1.8rem; margin-bottom: 8px; }
.payment-option-label { font-size: 0.88rem; font-weight: 700; }

/* Address cards */
.address-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.address-option {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: var(--r-lg);
  cursor: pointer; transition: all 0.15s;
}
.address-option:hover { border-color: var(--tertiary); background: var(--surface-alt); }
.address-option.selected { border-color: var(--primary); background: rgba(82,53,61,0.05); }
.address-option-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--surface-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.address-option-text { flex: 1; }
.address-option-title { font-weight: 800; font-size: 0.9rem; }
.address-option-sub   { font-size: 0.78rem; color: var(--ink-ter); }
.address-radio { width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--primary); }

/* ── My Bookings View ────────────────────────────────────────── */
.page-view { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 80px; min-height: 100svh; }
.page-view .container {}
.page-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 6px; }
.page-sub   { color: var(--ink-ter); margin-bottom: 36px; }

.bookings-list { display: flex; flex-direction: column; gap: 16px; }
.booking-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 22px 24px;
  display: flex; align-items: flex-start; gap: 18px;
  transition: box-shadow 0.15s;
  cursor: pointer;
}
.booking-card:hover { box-shadow: var(--shadow-sm); }
.booking-card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--surface-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.booking-card-body { flex: 1; min-width: 0; }
.booking-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.booking-card-name { font-weight: 800; font-size: 0.98rem; }
.booking-card-number { font-size: 0.78rem; color: var(--ink-ter); margin-bottom: 8px; }
.booking-card-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.booking-card-date { font-size: 0.82rem; color: var(--ink-sec); display: flex; align-items: center; gap: 5px; }
.booking-card-price { font-weight: 800; font-size: 0.98rem; color: var(--primary); }
.booking-card-actions { display: flex; gap: 8px; margin-top: 14px; }

/* Status badges */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: var(--r-pill);
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.04em;
  white-space: nowrap;
}
.badge-pending     { background: #FEF3C7; color: #92400E; }
.badge-confirmed   { background: #DBEAFE; color: #1E40AF; }
.badge-assigned    { background: #EDE9FE; color: #5B21B6; }
.badge-on_the_way  { background: #FEF3C7; color: #B45309; }
.badge-in_progress { background: #DCFCE7; color: #166534; }
.badge-completed   { background: #D1FAE5; color: #065F46; }
.badge-cancelled   { background: #FEE2E2; color: #991B1B; }

/* ── Profile View ────────────────────────────────────────────── */
.profile-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 36px;
  max-width: 520px;
}
.profile-avatar-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin-bottom: 32px;
}
.profile-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 800;
}
.profile-name  { font-size: 1.2rem; font-weight: 800; }
.profile-phone { font-size: 0.85rem; color: var(--ink-ter); }

/* ── Empty State ─────────────────────────────────────────────── */
.empty-state {
  text-align: center; padding: 64px 24px;
}
.empty-state-icon { font-size: 3.5rem; margin-bottom: 16px; }
.empty-state-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.empty-state-body  { font-size: 0.88rem; color: var(--ink-ter); margin-bottom: 24px; }

/* ── Toast ───────────────────────────────────────────────────── */
.toast-container {
  position: fixed; bottom: 28px; inset-inline-end: 24px;
  z-index: 2000;
  display: flex; flex-direction: column; gap: 10px;
  max-width: 340px;
}
.toast {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  animation: toastIn 0.25s ease;
  font-size: 0.86rem;
}
@keyframes toastIn { from { transform: translateX(20px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.toast-icon { font-size: 1.2rem; flex-shrink: 0; }
.toast-body { flex: 1; }
.toast-title { font-weight: 800; margin-bottom: 2px; }
.toast-msg   { color: var(--ink-sec); }
.toast-close { cursor: pointer; color: var(--ink-ter); margin-inline-start: auto; flex-shrink: 0; }
.toast.success .toast-icon { color: var(--success); }
.toast.error   .toast-icon { color: var(--danger); }
.toast.info    .toast-icon { color: var(--info); }

/* ── Page Loader ─────────────────────────────────────────────── */
.page-loader {
  display: flex; align-items: center; justify-content: center;
  min-height: 40vh;
}
.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--line);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* ── Section Dividers ────────────────────────────────────────── */
.divider { height: 1px; background: var(--line); margin: 0; }

/* ── Skeleton loader ─────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--surface-alt) 25%, var(--surface-soft) 50%, var(--surface-alt) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--r-md);
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ── Misc ────────────────────────────────────────────────────── */
.show-more-wrap { text-align: center; margin-top: 40px; }
.promo-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: rgba(97,122,85,0.1); color: var(--success);
  border: 1.5px solid rgba(97,122,85,0.2);
  border-radius: var(--r-pill); font-size: 0.82rem; font-weight: 700;
}
.promo-input-row { display: flex; gap: 8px; }
.promo-input-row .form-input { flex: 1; }

/* ── Success screen ──────────────────────────────────────────── */
.booking-success-screen {
  text-align: center; padding: 40px 28px;
}
.success-icon-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(97,122,85,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; margin: 0 auto 24px;
}
.booking-success-screen .h2 { margin-bottom: 12px; }
.booking-success-screen .lead { margin-bottom: 28px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-headline { font-size: clamp(2rem, 4.5vw, 3.2rem); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 60px 0 80px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { display: none; }
  .app-cta-section .container { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .steps-row::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar .container { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 80px; }
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-headline { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .hero-sub { font-size: 0.97rem; }
  .hero-cta-row .btn-lg { padding: 14px 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .modal { padding: 28px 24px; }
  .wizard-body { padding: 20px; }
  .wizard-header { padding: 20px 20px 0; padding-bottom: 16px; }
  .wizard-footer { padding: 16px 20px; }
}

@media (max-width: 480px) {
  :root { --gap: 16px; }
  .container { padding-inline: 16px; }
  .stats-bar .container { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .payment-options { grid-template-columns: 1fr; }
}

/* ── RTL tweaks ──────────────────────────────────────────────── */
[dir="rtl"] .hero-badge-card.top-start     { inset-inline-start: -28px; }
[dir="rtl"] .hero-badge-card.bottom-end    { inset-inline-end:   -28px; }
[dir="rtl"] .nav-dropdown { inset-inline-end: 0; inset-inline-start: auto; }

/* ── Booking Detail ────────────────────────────────────────────── */
.bd-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; margin-bottom: 28px;
}
.bd-num { font-size: 0.82rem; color: var(--ink-ter); font-weight: 600; margin-bottom: 6px; }
.bd-title { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.025em; color: var(--primary); }
.bd-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 24px;
  margin-bottom: 18px;
}
.bd-card-title {
  font-size: 0.78rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--accent);
  margin-bottom: 16px;
}
.bd-timeline {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 8px; position: relative; padding: 0 12px;
}
.bd-timeline::before {
  content: ""; position: absolute; top: 16px;
  inset-inline-start: 36px; inset-inline-end: 36px;
  height: 2px; background: var(--line); z-index: 0;
}
.bd-step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative; z-index: 1; flex: 1;
}
.bd-step-dot {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800; color: var(--ink-ter);
}
.bd-step.done .bd-step-dot { background: var(--success); border-color: var(--success); color: #fff; }
.bd-step.active .bd-step-dot { box-shadow: 0 0 0 4px rgba(94,138,71,0.18); }
.bd-step-label { font-size: 0.72rem; font-weight: 700; color: var(--ink-sec); text-align: center; }
.bd-step.done .bd-step-label { color: var(--ink); }
.bd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.bd-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.bd-row:last-child { border-bottom: none; }
.bd-row span { color: var(--ink-ter); }
.bd-row strong { color: var(--ink); font-weight: 700; text-align: end; }
.bd-row.bd-total { padding-top: 14px; }
.bd-row.bd-total strong { color: var(--primary); font-size: 1.1rem; }
.bd-worker { display: flex; align-items: center; gap: 14px; }
.bd-worker-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800;
}
.bd-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
@media (max-width: 768px) {
  .bd-grid { grid-template-columns: 1fr; }
  .bd-timeline { flex-wrap: wrap; gap: 14px; }
  .bd-timeline::before { display: none; }
}

/* ── Addresses ─────────────────────────────────────────────────── */
.addr-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.addr-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
}
.addr-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--surface-soft, #F0EAE0);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.addr-body { flex: 1; min-width: 0; }
.addr-title { font-weight: 800; font-size: 0.95rem; margin-bottom: 3px; }
.addr-sub { font-size: 0.82rem; color: var(--ink-ter); }
.addr-form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 24px;
  max-width: 500px;
}
.addr-form-title { font-weight: 800; font-size: 1.05rem; margin-bottom: 18px; }

/* ── Notifications ─────────────────────────────────────────────── */
.notif-list { display: flex; flex-direction: column; gap: 10px; }
.notif-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 16px 18px;
  display: flex; align-items: flex-start; gap: 14px;
  position: relative;
}
.notif-item.unread { border-color: var(--accent); background: rgba(186,139,73,0.04); }
.notif-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--surface-soft, #F0EAE0);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.notif-body { flex: 1; min-width: 0; }
.notif-title { font-weight: 800; font-size: 0.93rem; margin-bottom: 4px; }
.notif-text { font-size: 0.84rem; color: var(--ink-sec); line-height: 1.55; margin-bottom: 6px; }
.notif-time { font-size: 0.72rem; color: var(--ink-ter); font-weight: 600; }
.notif-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 6px;
}

/* ── Brand logo helpers ─────────────────────────────────────── */
.site-logo { height: 40px; width: auto; display: block; }
.site-logo--sm { height: 28px; }
.site-logo--lg { height: 64px; }
.site-logo--invert { filter: brightness(0) invert(1); }
.site-logo-symbol { width: 56px; height: 56px; display: block; }

/* ── WhatsApp Floating Action Button ────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 24px; inset-inline-end: 24px;
  z-index: 90;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: #25D366;
  color: #fff;
  border-radius: var(--r-pill);
  font-weight: 700; font-size: 0.92rem;
  box-shadow: 0 10px 32px rgba(37,211,102,0.36), 0 4px 12px rgba(0,0,0,0.10);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.wa-fab:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 14px 40px rgba(37,211,102,0.5), 0 4px 12px rgba(0,0,0,0.12); }
.wa-fab svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-fab-label { white-space: nowrap; }
@media (max-width: 640px) {
  .wa-fab { padding: 14px; }
  .wa-fab-label { display: none; }
}
.wa-fab::before {
  content: "";
  position: absolute; inset: -4px;
  border-radius: var(--r-pill);
  background: rgba(37,211,102,0.4);
  z-index: -1;
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(0.95); opacity: 0.7; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

/* ── Request Service form (lead capture) ────────────────────── */
.lead-page {
  max-width: 720px;
  margin: 48px auto;
  padding: 0 24px;
}
.lead-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.lead-card.compact { padding: 28px; }
.lead-eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 10px;
}
.lead-title { font-size: 1.6rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.lead-sub   { color: var(--ink-sec); margin-bottom: 28px; }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .lead-form { grid-template-columns: 1fr; } }
.lead-field { display: flex; flex-direction: column; gap: 6px; }
.lead-field label { font-size: 0.85rem; font-weight: 700; color: var(--ink-sec); }
.lead-field input,
.lead-field select,
.lead-field textarea {
  padding: 12px 14px;
  background: var(--surface-alt);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color 0.15s, background 0.15s;
}
.lead-field textarea { min-height: 110px; resize: vertical; }
.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--surface);
}
.lead-actions { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }
.lead-success {
  background: rgba(97,122,85,0.08);
  border: 1px solid rgba(97,122,85,0.3);
  color: var(--success);
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-weight: 700;
}
.lead-strip {
  background: var(--brand-gradient);
  border-radius: var(--r-2xl);
  padding: 40px;
  margin: 48px 0;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}
.lead-strip h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
.lead-strip p { opacity: 0.92; }
.lead-strip .btn-primary { background: #fff; color: var(--primary); }
.lead-strip .btn-primary:hover { color: var(--primary-dark); }
@media (max-width: 640px) {
  .lead-strip { grid-template-columns: 1fr; padding: 28px; }
}

/* ── Page header (shared) ───────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, rgba(82,53,61,0.05), rgba(171,155,140,0.08));
  border-bottom: 1px solid var(--line);
  padding: 64px 0 48px;
  margin-top: var(--nav-h);
}
.page-header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.page-header .eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--primary);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.page-header p { color: var(--ink-sec); max-width: 640px; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 32px auto 80px; padding: 0 24px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700; color: var(--ink);
  font-size: 1rem;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--surface-alt); }
.faq-q-icon { transition: transform 0.2s; color: var(--accent); }
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px 22px;
  color: var(--ink-sec);
  line-height: 1.75;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ── Long-form policy pages ────────────────────────────────── */
.policy-body {
  max-width: 760px;
  margin: 32px auto 80px;
  padding: 0 24px;
  color: var(--ink-sec);
  line-height: 1.85;
}
.policy-body h2 { font-size: 1.3rem; font-weight: 800; color: var(--primary); margin: 32px 0 12px; }
.policy-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin: 22px 0 8px; }
.policy-body p, .policy-body li { font-size: 0.98rem; }
.policy-body ul { padding-inline-start: 22px; margin: 8px 0 16px; list-style: disc; }
