/* =============================================================
   Doha Movers & Packers — Pure CSS
   Navy #183159 · Cyan #16B1D0 · DM Sans
   ============================================================= */

/* ---- Variables -------------------------------------------- */
:root {
  --navy-950: #0B1A30;
  --navy-900: #102544;
  --navy-800: #183159;
  --navy-700: #21406E;
  --navy-600: #2C548F;
  --navy-300: #93A8C9;
  --navy-200: #BDCAE0;
  --navy-100: #DCE4F0;
  --navy-50:  #EEF2F9;

  --cyan-800: #0B6075;
  --cyan-700: #0E7C96;
  --cyan-600: #1296B2;
  --cyan-500: #16B1D0;
  --cyan-400: #45C4DD;
  --cyan-300: #7FD7E9;
  --cyan-100: #D7F1F7;
  --cyan-50:  #EBF8FB;

  --neutral-50:  #F6F8FA;
  --neutral-100: #EDF1F5;
  --neutral-200: #DFE5EC;
  --neutral-300: #C8D1DB;
  --neutral-500: #6B7787;
  --neutral-700: #333D4B;
  --neutral-900: #121821;

  --success-100: #D6F0E4;
  --success-600: #167A52;

  --text-strong:  var(--navy-900);
  --text-body:    var(--neutral-700);
  --text-muted:   var(--neutral-500);
  --surface-page: var(--neutral-50);
  --surface-card: #fff;
  --border-subtle: var(--neutral-200);
  --border-default: var(--neutral-300);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.13);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.18);

  --transition: 150ms ease;
  --font: 'DM Sans', system-ui, sans-serif;
  --container: 1200px;
  --gutter: 1.5rem;
}

/* ---- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font);
  color: var(--text-body); background: var(--surface-page);
  font-size: 1rem; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
[dir="rtl"] { font-family: 'Noto Kufi Arabic', var(--font); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5 { font-family: var(--font); color: var(--text-strong); margin: 0; line-height: 1.2; }
p { margin: 0; }
button, input, select, textarea { font-family: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
::selection { background: var(--cyan-100); color: var(--navy-900); }

/* ---- Layout ----------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section-alt { background: var(--surface-card); }

/* ---- Section head ----------------------------------------- */
.section-head { max-width: 60ch; margin-bottom: 2.5rem; }
.section-head h2 { font-size: clamp(1.6rem, 1.2rem + 2vw, 2.2rem); font-weight: 800; margin-top: .6rem; }
.section-sub { color: var(--text-muted); margin-top: .75rem; font-size: 1.05rem; }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* ---- Eyebrow ---------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--cyan-700);
}
.eyebrow::before { content: ''; width: 24px; height: 3px; background: var(--cyan-500); border-radius: 2px; }
[dir="rtl"] .eyebrow { letter-spacing: 0; }

/* ---- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: .65rem 1.4rem; border-radius: var(--radius-md);
  font-size: .95rem; font-weight: 600; cursor: pointer;
  border: 1.5px solid transparent; transition: var(--transition);
  text-decoration: none; white-space: nowrap; line-height: 1;
}
.btn-accent { background: var(--cyan-500); color: #fff; border-color: var(--cyan-500); }
.btn-accent:hover { background: var(--cyan-600); border-color: var(--cyan-600); }
.btn-primary { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.btn-primary:hover { background: var(--navy-900); border-color: var(--navy-900); }
.btn-outline { background: transparent; color: var(--navy-800); border-color: var(--border-default); }
.btn-outline:hover { background: var(--navy-50); border-color: var(--navy-300); }
.btn-outline-white { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline-white:hover { background: rgba(255,255,255,.22); }
.btn-wa { background: #25D366; color: #fff; border-color: #25D366; }
.btn-wa:hover { background: #1ebe5b; border-color: #1ebe5b; }
.btn-lg { padding: .8rem 1.8rem; font-size: 1rem; }
.btn-sm { padding: .45rem 1rem; font-size: .85rem; }
.btn-arrow svg { width: 18px; height: 18px; }
.w-full { width: 100%; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

/* ---- TopBar ----------------------------------------------- */
.topbar { background: var(--navy-950); color: var(--navy-100); font-size: .82rem; }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 42px; width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--gutter);
}
.topbar-item { display: inline-flex; align-items: center; gap: 6px; }
.topbar-phone { font-weight: 700; letter-spacing: .02em; color: var(--navy-100); }
.topbar-phone:hover { color: var(--cyan-300); }
@media (max-width: 680px) { .topbar-item:first-child { display: none; } }

/* ---- Nav -------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px) saturate(1.4);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; gap: 1rem;
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--gutter);
}

/* Brand / Logo */
.nav-brand {
  display: inline-flex; align-items: center; gap: 11px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo { height: 44px; width: auto; max-width: 200px; object-fit: contain; }

/* Nav links (desktop) */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  position: relative; padding: 8px 13px; font-size: .9rem; font-weight: 600;
  color: var(--navy-800); border-radius: var(--radius-sm); cursor: pointer;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 5px;
  text-decoration: none; white-space: nowrap;
}
.nav-link:hover { background: var(--navy-50); }
.nav-link.active { color: var(--cyan-700); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 1px; left: 13px; right: 13px;
  height: 2.5px; background: var(--cyan-500); border-radius: 2px;
}

/* Services dropdown */
.nav-has-drop { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 480px; background: var(--surface-card);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 1rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
}
[dir="rtl"] .dropdown { transform: translateX(50%) translateY(6px); left: auto; right: 50%; }
.nav-has-drop:hover .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
[dir="rtl"] .nav-has-drop:hover .dropdown { transform: translateX(50%) translateY(0); }
.dropdown-item {
  display: flex; align-items: flex-start; gap: 11px; padding: 11px;
  border-radius: var(--radius-md); cursor: pointer; transition: var(--transition);
  text-decoration: none; color: inherit;
}
.dropdown-item:hover { background: var(--navy-50); }
.dropdown-ico {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: var(--radius-sm);
  background: var(--cyan-50); color: var(--cyan-600);
  display: flex; align-items: center; justify-content: center;
}
.dropdown-ico svg { width: 20px; height: 20px; }
.dropdown-name { font-weight: 700; font-size: .88rem; color: var(--navy-900); }
.dropdown-desc { font-size: .78rem; color: var(--text-muted); margin-top: 2px; line-height: 1.4; }

/* Nav right (lang + quote + burger) */
.nav-right { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }

.nav-lang-btn { display: inline-flex; align-items: center; gap: 6px; }
.nav-lang-btn .lang-short { display: none; }
.nav-lang-ico { width: 15px; height: 15px; flex-shrink: 0; }

.nav-burger {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: 1px solid var(--border-default);
  background: var(--surface-card); border-radius: var(--radius-sm);
  color: var(--navy-800); cursor: pointer; flex-shrink: 0;
}
.nav-burger svg { width: 22px; height: 22px; }

/* Mobile nav — CTA inside drawer */
.nav-mobile-cta { display: none; }

@media (max-width: 900px) {
  .nav-links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface-card); padding: .75rem; border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg); max-height: calc(100vh - 74px); overflow-y: auto;
    transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-link { padding: 13px 12px; font-size: .95rem; }
  .nav-link.active::after { display: none; }
  .nav-link.active { background: var(--navy-50); }
  .nav-has-drop { position: static; }
  .dropdown {
    position: static; width: auto; min-width: 0;
    transform: none !important; opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; border: none; padding: 0 0 8px; grid-template-columns: 1fr;
  }
  /* Hide full quote button from nav-right; show compact lang code only */
  .nav-quote-btn { display: none; }
  .nav-lang-btn .lang-full { display: none; }
  .nav-lang-btn .lang-short { display: inline; }
  .nav-lang-btn { padding: .45rem .65rem; gap: 5px; }
  .nav-lang-ico { width: 14px; height: 14px; }
  .nav-burger { display: inline-flex; }
  /* Quote CTA appears inside the mobile drawer */
  .nav-mobile-cta {
    display: block; padding: .75rem 0 .25rem;
    margin-top: .5rem; border-top: 1px solid var(--border-subtle);
  }
}

@media (max-width: 480px) {
  .nav-inner { padding-inline: 1rem; }
  .nav-logo { height: 36px; max-width: 160px; }
}

/* ---- Hero ------------------------------------------------- */
.hero {
  background: linear-gradient(165deg, var(--navy-950) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  padding-block: clamp(3rem, 5vw, 5.5rem);
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center;
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--gutter);
}
.hero-copy { color: #fff; }
.hero-copy .eyebrow { color: var(--cyan-300); }
.hero-copy .eyebrow::before { background: var(--cyan-400); }
.hero-copy h1 { font-size: clamp(2rem, 1rem + 4vw, 3rem); font-weight: 800; color: #fff; margin-top: .75rem; letter-spacing: -.02em; line-height: 1.15; }
.hero-sub { margin-top: 1rem; font-weight: 600; font-size: .95rem; color: var(--cyan-300); letter-spacing: .03em; }
[dir="rtl"] .hero-sub { letter-spacing: 0; }
.hero-body { margin-top: .9rem; font-size: 1rem; color: var(--navy-100); max-width: 50ch; line-height: 1.65; }
.hero-btns { margin-top: 1.75rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 960px) { .hero-inner { grid-template-columns: 1fr; } }

/* Hero panel */
.hero-panel {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-xl);
  padding: 1.75rem; position: relative; overflow: hidden;
}
.hero-panel::before { content: ''; position: absolute; inset: 0 0 auto; height: 4px; background: var(--cyan-500); }
.hero-panel-eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--cyan-700); }
[dir="rtl"] .hero-panel-eyebrow { letter-spacing: 0; }
.hero-panel-title { font-size: 1.35rem; font-weight: 800; color: var(--navy-900); margin-top: .4rem; }
.hero-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-top: 1.25rem; }
.hero-tile {
  display: flex; align-items: center; gap: 10px; padding: 12px;
  border: 1.5px solid var(--border-subtle); border-radius: var(--radius-md);
  background: var(--surface-card); cursor: pointer; transition: var(--transition);
  text-align: start; color: inherit;
}
.hero-tile:hover { border-color: var(--cyan-400); background: var(--cyan-50); transform: translateY(-2px); }
.hero-tile-ico {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: var(--radius-sm);
  background: var(--cyan-50); color: var(--cyan-600);
  display: flex; align-items: center; justify-content: center;
}
.hero-tile:hover .hero-tile-ico { background: var(--cyan-500); color: #fff; }
.hero-tile-ico svg { width: 20px; height: 20px; }
.hero-tile-name { font-weight: 700; font-size: .85rem; color: var(--navy-900); flex: 1; }
.hero-tile-arrow { color: var(--cyan-600); opacity: 0; transition: var(--transition); flex-shrink: 0; }
.hero-tile-arrow svg { width: 14px; height: 14px; }
.hero-tile:hover .hero-tile-arrow { opacity: 1; }
[dir="rtl"] .hero-tile-arrow svg { transform: scaleX(-1); }
.hero-panel-trust {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; color: var(--navy-700);
  margin-top: 1.25rem;
}
.hero-panel-trust svg { color: var(--cyan-600); flex-shrink: 0; }
@media (max-width: 440px) { .hero-tiles { grid-template-columns: 1fr; } }

/* ---- Hero Slider ------------------------------------------ */
.hero-slider {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 3; background: var(--navy-900);
  flex-shrink: 0;
}
.slider-track { position: relative; width: 100%; height: 100%; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .65s ease;
}
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .75rem 1.1rem;
  background: linear-gradient(transparent, rgba(10,20,40,.75));
  color: #fff; font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
}
[dir="rtl"] .slide-caption { letter-spacing: 0; text-transform: none; }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.85); backdrop-filter: blur(4px);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--navy-800); transition: var(--transition); z-index: 2;
  box-shadow: var(--shadow-md);
}
.slider-btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.slider-btn svg { width: 18px; height: 18px; }
.slider-prev { left: 10px; }
.slider-next { right: 10px; }
[dir="rtl"] .slider-prev { left: auto; right: 10px; }
[dir="rtl"] .slider-next { right: auto; left: 10px; }
.slider-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 2;
}
.slider-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.5); border: none; cursor: pointer;
  padding: 0; transition: var(--transition);
}
.slider-dot.active { background: #fff; width: 20px; border-radius: 4px; }
@media (max-width: 960px) { .hero-slider { aspect-ratio: 16/9; } }

/* ---- Trust Strip ------------------------------------------ */
.trust-strip { background: var(--navy-900); }
.trust-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  padding-block: 2rem;
  max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter);
}
.trust-item { display: flex; flex-direction: column; gap: 4px; position: relative; padding-inline: 1rem; }
.trust-item + .trust-item::before {
  content: ''; position: absolute; inset-inline-start: 0; top: 4px; bottom: 4px;
  width: 1px; background: var(--navy-700);
}
.trust-val { font-size: clamp(1.6rem, 1.2rem + 2vw, 2.2rem); font-weight: 900; color: #fff; line-height: 1; }
.trust-lbl { font-size: .82rem; color: var(--navy-200); }
@media (max-width: 680px) {
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(odd)::before, .trust-item:nth-child(3)::before { display: none; }
}

/* ---- Benefits --------------------------------------------- */
.benefits-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.benefit-card {
  display: flex; gap: 1rem; padding: 1.25rem;
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); transition: var(--transition);
}
.section-alt .benefit-card { background: var(--neutral-50); }
.benefit-card:hover { border-color: var(--cyan-300); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit-ico {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: var(--radius-sm);
  background: var(--cyan-50); color: var(--cyan-600);
  display: flex; align-items: center; justify-content: center;
}
.benefit-ico svg { width: 21px; height: 21px; }
.benefit-title { font-weight: 700; font-size: .9rem; color: var(--navy-900); }
.benefit-desc { font-size: .82rem; color: var(--text-muted); margin-top: 3px; line-height: 1.45; }
@media (max-width: 540px) { .benefits-list { grid-template-columns: 1fr; } }

/* ---- Service Cards ---------------------------------------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc-card {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 1.5rem;
  transition: var(--transition); text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.svc-card:hover { border-color: var(--cyan-300); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.svc-card-ico {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--cyan-50); color: var(--cyan-600);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.svc-card-ico svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy-900); }
.svc-card p { font-size: .88rem; color: var(--text-muted); margin-top: .5rem; line-height: 1.55; flex: 1; }
.svc-card-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 1.25rem; font-size: .85rem; font-weight: 700; color: var(--cyan-700); }
.svc-card-cta svg { width: 15px; height: 15px; transition: transform var(--transition); }
.svc-card:hover .svc-card-cta svg { transform: translateX(3px); }
[dir="rtl"] .svc-card-cta svg { transform: scaleX(-1); }
[dir="rtl"] .svc-card:hover .svc-card-cta svg { transform: scaleX(-1) translateX(3px); }
@media (max-width: 880px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---- Areas ------------------------------------------------ */
.areas-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.area-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; background: var(--surface-card);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-pill);
  font-size: .88rem; font-weight: 600; color: var(--navy-800); transition: var(--transition);
}
.area-chip:hover { border-color: var(--cyan-400); background: var(--cyan-50); color: var(--cyan-800); }
.area-chip svg { width: 15px; height: 15px; color: var(--cyan-600); }
.area-chip-all { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.area-chip-all svg { color: var(--cyan-400); }

/* ---- FAQ -------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: .75rem; max-width: 820px; margin-inline: auto; }
.faq-item {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); overflow: hidden;
}
.faq-item.open { border-color: var(--cyan-300); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem; background: none; border: none; cursor: pointer;
  text-align: start; font-weight: 700; font-size: 1rem; color: var(--navy-900);
}
.faq-icon {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%;
  border: 1.5px solid var(--border-default);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-700); transition: var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-item.open .faq-icon { background: var(--cyan-500); border-color: var(--cyan-500); color: #fff; transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 250ms ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a p { padding: 0 1.4rem 1.4rem; color: var(--text-muted); line-height: 1.65; max-width: 68ch; }

/* ---- CTA Band --------------------------------------------- */
.cta-band {
  background: var(--navy-800); color: #fff;
  padding: clamp(2rem, 5vw, 3.5rem);
}
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  max-width: var(--container); margin-inline: auto;
}
.cta-band h2 { font-size: clamp(1.3rem, .8rem + 2.5vw, 2rem); font-weight: 800; color: #fff; max-width: 24ch; }
.cta-band p { color: var(--navy-100); margin-top: .6rem; font-size: 1rem; max-width: 42ch; }
.cta-band-btns { display: flex; gap: .8rem; flex-wrap: wrap; align-items: center; flex-shrink: 0; }
@media (max-width: 640px) { .cta-band-inner { flex-direction: column; align-items: flex-start; } }

/* ---- Sub-Hero (inner pages) ------------------------------- */
.sub-hero {
  background: var(--navy-900); color: #fff;
  padding-block: clamp(2.5rem, 4vw, 4rem);
  position: relative; overflow: hidden;
}
.sub-hero::after {
  content: ''; position: absolute; inset-block: 0; inset-inline-end: 0;
  width: 38%; background: linear-gradient(120deg, transparent, rgba(22,177,208,.1));
  pointer-events: none;
}
.sub-hero .container { position: relative; z-index: 1; }
.sub-hero .eyebrow { color: var(--cyan-300); }
.sub-hero .eyebrow::before { background: var(--cyan-400); }
.sub-hero h1 { font-size: clamp(1.7rem, 1rem + 3vw, 2.6rem); font-weight: 800; color: #fff; margin-top: .6rem; }
.sub-hero-body { font-size: 1.05rem; color: var(--navy-100); margin-top: 1rem; max-width: 55ch; line-height: 1.65; }
.breadcrumb { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; color: var(--navy-300); margin-bottom: .75rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--cyan-300); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 13px; height: 13px; opacity: .6; }

/* ---- Service Detail --------------------------------------- */
.sd-page { padding-block: clamp(2rem, 4vw, 4rem); }
.sd-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start;
  margin-top: 2rem;
}
.sd-main .eyebrow { margin-top: .5rem; }
.sd-main h1 { font-size: clamp(1.7rem, 1rem + 2.5vw, 2.4rem); font-weight: 800; margin-top: .6rem; }
.sd-lead { font-size: 1.05rem; color: var(--text-muted); margin-top: 1rem; line-height: 1.65; max-width: 60ch; }

.svc-hero-img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin-top: 1.75rem;
}

.svc-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.svc-gallery-item {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border-subtle);
}
.svc-gallery-item img {
  display: block; width: 100%;
  aspect-ratio: 4/3; object-fit: cover;
  transition: transform .4s ease;
}
.svc-gallery-item:hover img { transform: scale(1.04); }
.svc-gallery-caption {
  padding: .45rem .75rem;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--navy-700); background: var(--neutral-50);
}
@media (max-width: 600px) {
  .svc-gallery { grid-template-columns: 1fr; }
}

.sd-aside { position: sticky; top: 90px; }
.sd-aside-card {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm);
}
.sd-aside-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy-700); margin-bottom: 1rem; }
.sd-phone {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.2rem; font-weight: 700; color: var(--navy-900);
  padding: .75rem; background: var(--navy-50); border-radius: var(--radius-md);
}
.sd-phone:hover { color: var(--cyan-700); }
.sd-aside-divider { border: none; border-top: 1px solid var(--border-subtle); margin-block: 1.25rem; }
.sd-back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .88rem; font-weight: 600; color: var(--text-muted);
  transition: var(--transition);
}
.sd-back-link:hover { color: var(--cyan-700); }
[dir="rtl"] .sd-back-link svg { transform: scaleX(-1); }

/* Service detail content */
.sd-group { }
.sd-group + .sd-group { margin-top: 2rem; }
.sd-group-title {
  font-size: 1.15rem; font-weight: 700; color: var(--navy-900); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 9px;
}
.sd-group-title::before { content: ''; width: 4px; height: 20px; background: var(--cyan-500); border-radius: 2px; flex-shrink: 0; }

/* Checklist */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem 1.5rem; }
.checklist-lg .check-item { font-size: 1rem; padding: .6rem; }
.check-item { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; color: var(--navy-900); font-weight: 500; }
.check-tick {
  width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%;
  background: var(--cyan-50); color: var(--cyan-700);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.check-tick svg { width: 13px; height: 13px; }

/* Tags */
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-flex; align-items: center; padding: 5px 12px;
  background: var(--navy-50); border: 1px solid var(--navy-100);
  border-radius: var(--radius-pill); font-size: .83rem; font-weight: 600; color: var(--navy-800);
}
.why-card { background: var(--navy-50); border: 1px solid var(--navy-100); border-radius: var(--radius-lg); padding: 1.5rem; }
.why-card .checklist { grid-template-columns: 1fr; }

@media (max-width: 860px) {
  .sd-layout { grid-template-columns: 1fr; }
  .sd-aside { position: static; }
  .checklist { grid-template-columns: 1fr; }
}

/* ---- About ------------------------------------------------ */
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: start; }
.about-copy .about-p { font-size: 1.05rem; color: var(--text-body); line-height: 1.7; }
.about-copy .about-p + .about-p { margin-top: 1.25rem; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  padding: 1.75rem; background: var(--navy-900); border-radius: var(--radius-xl);
}
.about-stats .trust-item { padding-inline: .75rem; }
.about-stats .trust-val { font-size: clamp(1.4rem, 1rem + 2vw, 1.8rem); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.mv-card {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 2rem;
  position: relative; overflow: hidden;
}
.mv-card::before { content: ''; position: absolute; inset-block: 0; inset-inline-start: 0; width: 4px; background: var(--cyan-500); }
.mv-card-ico {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--navy-800); color: var(--cyan-400);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.mv-card-ico svg { width: 24px; height: 24px; }
.mv-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy-900); margin-bottom: .6rem; }
.mv-card p { font-size: .92rem; color: var(--text-muted); line-height: 1.6; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } .mv-grid { grid-template-columns: 1fr; } }

/* ---- Contact ---------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: start; }

.contact-card {
  background: var(--navy-900); border-radius: var(--radius-lg);
  padding: 2rem; margin-bottom: 1.25rem; color: #fff;
}
.contact-card h3 { font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 1.25rem; }
.contact-card h4 { font-size: .9rem; font-weight: 700; color: var(--navy-100); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .75rem; }
[dir="rtl"] .contact-card h4 { letter-spacing: 0; text-transform: none; }
.contact-card-sm { padding: 1.5rem; background: var(--navy-50); color: var(--navy-800); border-radius: var(--radius-lg); border: 1px solid var(--border-subtle); margin-bottom: 1.25rem; }
.contact-card-sm h4 { color: var(--navy-700); }

.contact-phone {
  display: flex; align-items: center; gap: 11px;
  font-size: 1.4rem; font-weight: 700; color: #fff;
  padding: .75rem; background: rgba(255,255,255,.08);
  border-radius: var(--radius-md); margin-bottom: .5rem;
  transition: var(--transition);
}
.contact-phone:hover { color: var(--cyan-300); }

.contact-hours-row { display: flex; align-items: center; gap: 9px; font-size: .95rem; color: var(--navy-700); }
.contact-hours-row svg { color: var(--cyan-600); }

.contact-form-col { }
.contact-form-card {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm);
}
.contact-form-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy-900); margin-bottom: 1.5rem; }

/* Form elements */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.field-label { font-size: .83rem; font-weight: 600; color: var(--text-strong); }
.field {
  width: 100%; height: 42px; padding: 0 .85rem;
  font-size: .95rem; color: var(--text-strong); background: var(--surface-card);
  border: 1.5px solid var(--border-default); border-radius: var(--radius-md);
  outline: none; transition: var(--transition);
}
.field:focus { border-color: var(--cyan-500); box-shadow: 0 0 0 3px rgba(22,177,208,.18); }
.field-ta { height: auto; padding: .75rem .85rem; resize: vertical; }
select.field {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7787' d='M0 0h12L6 8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2rem;
}
[dir="rtl"] select.field { background-position: left .9rem center; padding-right: .85rem; padding-left: 2rem; }
.form-success {
  display: none; background: var(--success-100); color: var(--success-600);
  padding: 1.25rem; border-radius: var(--radius-md); text-align: center; font-weight: 600;
}
.form-success.show { display: block; }
.contact-form-card form { display: flex; flex-direction: column; gap: 1.1rem; }

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ---- Footer ----------------------------------------------- */
.footer { background: var(--navy-950); color: var(--navy-200); }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.footer-brand-col { }
.footer-brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.footer-logo { width: 44px; height: 44px; object-fit: contain; filter: brightness(0) invert(1); opacity: .9; }
.footer-brand-a { font-size: 1.05rem; font-weight: 800; color: #fff; letter-spacing: -.01em; }
.footer-brand-b { font-size: .82rem; font-weight: 700; color: var(--cyan-400); }
.footer-blurb { font-size: .88rem; color: var(--navy-200); max-width: 36ch; line-height: 1.65; margin-top: 1rem; }
.footer-wa {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 1.25rem;
  font-size: .88rem; font-weight: 700; color: #fff;
  padding: .55rem 1.1rem; background: #25D366; border-radius: var(--radius-md);
  transition: var(--transition);
}
.footer-wa:hover { background: #1ebe5b; }
.footer-col h4 {
  font-size: .78rem; font-weight: 700; color: #fff; text-transform: uppercase;
  letter-spacing: .07em; margin-bottom: 1rem;
}
[dir="rtl"] .footer-col h4 { letter-spacing: 0; text-transform: none; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: .88rem; color: var(--navy-200); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--cyan-300); }
.footer-link-btn {
  background: none; border: none; cursor: pointer; padding: 0;
  font-size: .88rem; color: var(--navy-200); transition: var(--transition); text-align: start;
}
.footer-link-btn:hover { color: var(--cyan-300); }
.footer-bottom { border-top: 1px solid var(--navy-800); }
.footer-bottom .container { display: flex; align-items: center; justify-content: center; padding-block: 1.1rem; font-size: .8rem; color: var(--navy-300); }

@media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr 1fr; } .footer-brand-col { grid-column: 1/-1; } }
@media (max-width: 540px) { .footer-inner { grid-template-columns: 1fr; } }

/* ---- WhatsApp FAB ----------------------------------------- */
.wa-fab {
  position: fixed; bottom: 20px; inset-inline-end: 20px; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.45); transition: transform var(--transition);
}
.wa-fab:hover { transform: scale(1.07); }
.wa-fab svg { width: 30px; height: 30px; }

/* ---- Quote Modal ------------------------------------------ */
.quote-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(11,26,48,.7); backdrop-filter: blur(4px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: clamp(.5rem, 3vw, 2.5rem); overflow-y: auto;
  opacity: 0; visibility: hidden; transition: opacity .2s ease;
}
.quote-overlay.open { opacity: 1; visibility: visible; }
.modal {
  position: relative; width: 100%; max-width: 740px; background: var(--surface-card);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); overflow: hidden;
  margin-block: auto; transform: translateY(8px); transition: transform .25s ease;
}
.quote-overlay.open .modal { transform: translateY(0); }

.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.75rem; border-bottom: 1px solid var(--border-subtle);
}
.modal-title { font-size: 1.1rem; font-weight: 800; color: var(--navy-900); display: flex; align-items: center; gap: 9px; }
.modal-close {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle); background: var(--surface-card);
  color: var(--navy-700); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--navy-50); }
.modal-close svg { width: 18px; height: 18px; }

/* Step indicator */
.modal-steps { display: flex; padding: 1.4rem 1.75rem 0; gap: .5rem; }
.step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.step-dot {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700;
  border: 2px solid var(--border-default); color: var(--text-muted);
  transition: var(--transition);
}
.step.active .step-dot { background: var(--cyan-500); border-color: var(--cyan-500); color: #fff; }
.step.done .step-dot { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.step-label { font-size: .72rem; font-weight: 600; color: var(--text-muted); text-align: center; }
.step.active .step-label { color: var(--cyan-700); }
.step-line { flex: 1; height: 2px; background: var(--border-subtle); border-radius: 2px; margin-top: 14px; }
.step.done .step-line { background: var(--navy-800); }
.step.active .step-line { background: var(--cyan-300); }
.step:last-child .step-line { display: none; }

.modal-body { padding: 1.75rem; }
.modal-q { font-size: 1.1rem; font-weight: 800; color: var(--navy-900); margin-bottom: 1.5rem; }
.modal-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.75rem; border-top: 1px solid var(--border-subtle);
  background: var(--neutral-50);
}

/* Quote picker tiles */
.q-pick { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.q-tile {
  display: flex; align-items: center; gap: 12px; padding: 1.1rem;
  border: 1.5px solid var(--border-default); border-radius: var(--radius-md);
  background: var(--surface-card); cursor: pointer; transition: var(--transition); text-align: start;
}
.q-tile:hover { border-color: var(--cyan-400); transform: translateY(-2px); }
.q-tile.selected { border-color: var(--cyan-500); background: var(--cyan-50); box-shadow: 0 0 0 3px rgba(22,177,208,.18); }
.q-tile-ico {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: var(--radius-sm);
  background: var(--cyan-50); color: var(--cyan-600);
  display: flex; align-items: center; justify-content: center;
}
.q-tile.selected .q-tile-ico { background: var(--cyan-500); color: #fff; }
.q-tile-ico svg { width: 21px; height: 21px; }
.q-tile-name { font-weight: 700; font-size: .88rem; color: var(--navy-900); }
.q-tile-desc { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }

/* Quote fields */
.q-fields { display: flex; flex-direction: column; gap: 1.1rem; }
.q-fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.checkbox-label {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; color: var(--navy-800); cursor: pointer; font-weight: 500;
}
.checkbox-label input { width: 16px; height: 16px; accent-color: var(--cyan-500); cursor: pointer; }
.q-alert {
  background: #FBEDD3; border: 1px solid #E8A53A; color: #7A4F00;
  border-radius: var(--radius-md); padding: .75rem 1rem;
  font-size: .88rem; font-weight: 600; margin-bottom: 1.25rem;
}

/* Review summary */
.q-summary { background: var(--navy-50); border: 1px solid var(--navy-100); border-radius: var(--radius-md); padding: 1.25rem; }
.q-summary-row { display: flex; justify-content: space-between; gap: 1rem; padding-block: .6rem; border-bottom: 1px dashed var(--navy-200); }
.q-summary-row:last-child { border-bottom: none; }
.q-summary-k { font-size: .82rem; color: var(--text-muted); font-weight: 600; }
.q-summary-v { font-size: .88rem; color: var(--navy-900); font-weight: 600; text-align: end; }

/* Done state */
.q-done { text-align: center; padding: 2rem 1.5rem; }
.q-done-ico { width: 72px; height: 72px; margin: 0 auto 1.5rem; border-radius: 50%; background: var(--success-100); color: var(--success-600); display: flex; align-items: center; justify-content: center; }
.q-done-ico svg { width: 38px; height: 38px; }
.q-done h3 { font-size: 1.4rem; font-weight: 800; color: var(--navy-900); margin-bottom: .6rem; }
.q-done p { color: var(--text-muted); max-width: 42ch; margin: 0 auto 1.75rem; line-height: 1.65; }

@media (max-width: 580px) { .q-pick, .q-fields-row, .checkbox-grid { grid-template-columns: 1fr; } }
