/* ============================================================
   Sola Wash – v7  |  White + #2396CF  |  Traditional Layout
   ============================================================ */

:root {
  --blue:        #2396CF;
  --blue-dark:   #1A7EAF;
  --blue-deeper: #0F4A6E;
  --blue-light:  #EAF4FB;
  --white:       #FFFFFF;
  --off-white:   #F5F8FA;
  --black:       #1C1C1C;
  --dark:        #2D3748;
  --body:        #4A5568;
  --muted:       #8A9299;
  --border:      #E2E8EF;
  --border-dark: #C5D4DE;
  --nav-h:       72px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 44px; width: 44px; object-fit: contain; display: block; }
.nav-center {
  display: flex; align-items: center; gap: 2rem;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-center a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--body); transition: color 0.15s;
}
.nav-center a:hover,
.nav-center a.active { color: var(--blue); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-email {
  font-size: 0.82rem; font-weight: 500; color: var(--body);
  display: flex; align-items: center; gap: 5px; transition: color 0.15s;
}
.nav-email:hover { color: var(--blue); }
.nav-email svg { width: 14px; height: 14px; }
.nav-cta {
  background: var(--blue) !important; color: var(--white) !important;
  font-size: 0.85rem !important; font-weight: 600 !important;
  padding: 0.5rem 1.25rem; border-radius: 3px; transition: background 0.15s;
}
.nav-cta:hover { background: var(--blue-dark) !important; }

.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--dark); border-radius: 1px;
  transition: transform 0.28s, opacity 0.2s;
}
.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); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 580px;
  padding: calc(var(--nav-h) + 5rem) 5% 5rem;
  background-color: #0d1f12;
  background-image: url(../img/hero.jpg);
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(5, 25, 10, 0.38);
  z-index: 0;
}
.hero-inner {
  max-width: 1160px; margin: 0 auto;
  width: 100%; position: relative; z-index: 1;
}
.hero-content { max-width: 660px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 3px; margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800; line-height: 1.12;
  color: var(--white); margin-bottom: 1.1rem;
}
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.78);
  line-height: 1.8; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.18);
}
.ht-item { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.65); }
.ht-item svg { width: 13px; height: 13px; color: var(--blue); flex-shrink: 0; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary, .btn-gold {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue); color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: 3px; font-weight: 600; font-size: 0.9rem;
  transition: background 0.15s;
}
.btn-primary:hover, .btn-gold:hover { background: var(--blue-dark); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: 3px; font-weight: 600; font-size: 0.9rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.15s, background 0.15s;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--dark);
  padding: 0.75rem 1.75rem;
  border-radius: 3px; font-weight: 600; font-size: 0.9rem;
  border: 2px solid var(--border-dark);
  transition: border-color 0.15s, color 0.15s;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

/* ── TRUST STRIP ─────────────────────────────────────────── */
.trust-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 5%;
}
.trust-strip-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; text-align: center;
}
.ts-number { font-size: 1.55rem; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 0.2rem; }
.ts-label  { font-size: 0.78rem; color: var(--body); font-weight: 500; }

/* ── SECTIONS ─────────────────────────────────────────────── */
.section        { padding: 5rem 5%; }
.section-inner  { max-width: 1160px; margin: 0 auto; }
.section-center { text-align: center; }
.section-center .section-sub { margin-left: auto; margin-right: auto; }
.bg-ivory { background: var(--off-white); }

.eyebrow {
  display: block;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 0.8rem; color: var(--black);
}
.section-sub {
  font-size: 0.975rem; color: var(--body);
  max-width: 520px; line-height: 1.75; margin-bottom: 2.5rem;
}

/* ── SERVICE LIST (homepage) ─────────────────────────────── */
.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.sl-item {
  display: flex; gap: 1.5rem;
  padding: 2rem 1.5rem;
  align-items: flex-start;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.sl-item:hover { background: var(--off-white); }
.sl-item:nth-child(odd)          { border-right: 1px solid var(--border); }
.sl-item:nth-last-child(-n+2)    { border-bottom: none; }

.sl-icon {
  width: 44px; height: 44px;
  background: var(--blue-light); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
}
.sl-icon svg { width: 22px; height: 22px; }
.sl-body h3  { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 0.35rem; }
.sl-body > p { font-size: 0.875rem; color: var(--body); line-height: 1.65; margin-bottom: 0.75rem; }
.sl-features { margin-bottom: 0.85rem; }
.sl-features li {
  font-size: 0.82rem; color: var(--body);
  padding: 0.18rem 0; padding-left: 1.1rem; position: relative;
}
.sl-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--blue); font-weight: 700; font-size: 0.75rem;
}
.sl-link {
  color: var(--blue); font-size: 0.84rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px; transition: color 0.15s;
}
.sl-link:hover { color: var(--blue-dark); }

/* ── ABOUT PREVIEW STATS ─────────────────────────────────── */
.about-stats {
  display: flex; justify-content: center;
  gap: 4rem; margin: 2rem auto 0;
}
.as-item { text-align: center; }
.as-number {
  font-size: 2.4rem; font-weight: 800;
  color: var(--blue); line-height: 1; margin-bottom: 0.3rem;
}
.as-label {
  font-size: 0.8rem; font-weight: 600;
  color: var(--body); text-transform: uppercase; letter-spacing: 0.08em;
}

/* ── SERVICE CARDS GRID (homepage 4-col) ─────────────────── */
.sc-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.sc-card {
  border: 1px solid var(--border); border-radius: 3px;
  overflow: hidden; background: var(--white);
  display: flex; flex-direction: column;
}
.sc-card-img {
  height: 160px; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.sc-card-img svg { width: 52px; height: 52px; }
.sc-card-body { padding: 1.4rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.sc-card-body h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--black); margin-bottom: 0.6rem;
}
.sc-card-body p {
  font-size: 0.875rem; color: var(--body);
  line-height: 1.65; margin-bottom: 1.1rem; flex: 1;
}
.sc-features { margin-bottom: 1.1rem; flex: 1; }
.sc-features li {
  font-size: 0.83rem; color: var(--body);
  padding: 0.22rem 0; padding-left: 1.1rem; position: relative;
}
.sc-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--blue); font-weight: 700; font-size: 0.75rem;
}
.sc-card-link {
  color: var(--blue); font-size: 0.84rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px; transition: color 0.15s;
  margin-top: auto;
}
.sc-card-link:hover { color: var(--blue-dark); }

/* ── WHY CHOOSE US ───────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.why-card { border-top: 3px solid var(--blue); padding-top: 1.5rem; }
.why-icon {
  width: 44px; height: 44px;
  background: var(--blue-light); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; color: var(--blue);
}
.why-icon svg { width: 22px; height: 22px; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--black); }
.why-card p  { font-size: 0.875rem; color: var(--body); line-height: 1.65; }

/* ── PROCESS STEPS ───────────────────────────────────────── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; position: relative;
}
.steps-row::before {
  content: ''; position: absolute;
  top: 20px; left: 10%; right: 10%;
  height: 1px; background: var(--border-dark);
}
.step { text-align: center; position: relative; z-index: 1; }
.step-n {
  width: 40px; height: 40px;
  background: var(--blue); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem;
  margin: 0 auto 1rem;
}
.step h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--black); }
.step p  { font-size: 0.85rem; color: var(--body); line-height: 1.6; }

/* ── ABOUT SECTION ───────────────────────────────────────── */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-img-wrap {
  border-radius: 3px; overflow: hidden;
  aspect-ratio: 4/3; background: var(--blue-light);
  border: 1px solid var(--border-dark);
  position: relative;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.check-list { margin-top: 1.2rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.5rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--body);
}
.check-list li:last-child { border-bottom: none; }
.check-list .chk { color: var(--blue); font-weight: 800; font-size: 0.8rem; margin-top: 2px; flex-shrink: 0; }

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: var(--blue);
  border-radius: 3px; padding: 3.5rem 3rem;
  text-align: center; color: var(--white);
  max-width: 1160px; margin: 0 auto;
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 0.7rem; }
.cta-band p  { color: rgba(255,255,255,0.82); font-size: 0.975rem; max-width: 480px; margin: 0 auto 2rem; line-height: 1.7; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 2.5rem) 5% 2.5rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 1160px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800; margin-bottom: 0.6rem; color: var(--black);
}
.page-hero p { color: var(--body); font-size: 0.95rem; max-width: 520px; line-height: 1.7; }
.page-hero .eyebrow { color: var(--blue); }

.breadcrumb {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.72rem; color: var(--muted); margin-bottom: 0.8rem; font-weight: 500;
}
.breadcrumb a { color: var(--body); }
.breadcrumb a:hover { color: var(--blue); }

/* ── SERVICES FULL PAGE ──────────────────────────────────── */
.services-list { display: flex; flex-direction: column; }
.svc-row {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 2rem; padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.svc-row:last-child { border-bottom: none; }
.svc-icon {
  width: 56px; height: 56px;
  background: var(--blue-light); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0; margin-top: 3px;
}
.svc-icon svg { width: 26px; height: 26px; }
.svc-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--black); margin-bottom: 0.4rem; }
.svc-body > p { font-size: 0.9rem; color: var(--body); line-height: 1.7; margin-bottom: 1rem; max-width: 640px; }
.svc-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.25rem 2rem;
}
.svc-features li {
  font-size: 0.85rem; color: var(--body);
  padding: 0.2rem 0; padding-left: 1.1rem; position: relative;
}
.svc-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--blue); font-weight: 700; font-size: 0.75rem;
}

/* ── QUOTE STRIP ─────────────────────────────────────────── */
.quote-strip {
  background: var(--off-white);
  border: 1px solid var(--border); border-left: 4px solid var(--blue);
  border-radius: 3px; padding: 2rem 2.5rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.quote-strip h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--black); }
.quote-strip p  { font-size: 0.875rem; color: var(--body); }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 5rem; align-items: start;
}
.contact-info h2  { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.7rem; color: var(--black); }
.contact-info > p { color: var(--body); font-size: 0.9rem; line-height: 1.75; margin-bottom: 2rem; }
.ci-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.ci-item:last-of-type { border-bottom: none; }
.ci-icon {
  width: 40px; height: 40px; background: var(--blue-light);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--blue);
}
.ci-icon svg { width: 17px; height: 17px; }
.ci-item h4 { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--muted); margin-bottom: 2px; font-weight: 600; }
.ci-item a, .ci-item span { color: var(--dark); font-weight: 600; font-size: 0.9rem; transition: color 0.15s; }
.ci-item a:hover { color: var(--blue); }
.social-row { display: flex; gap: 0.6rem; margin-top: 1.5rem; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.5rem 0.9rem; border-radius: 3px;
  background: var(--off-white); border: 1px solid var(--border);
  color: var(--dark); font-size: 0.8rem; font-weight: 600;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.social-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.social-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.form-card {
  background: var(--white); border-radius: 3px;
  padding: 2.5rem; border: 1px solid var(--border);
}
.form-card h3      { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.35rem; color: var(--black); }
.form-card .fc-sub { color: var(--muted); font-size: 0.875rem; margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--dark); margin-bottom: 0.35rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border); border-radius: 3px;
  font-size: 0.9rem; font-family: 'Inter', system-ui, sans-serif;
  color: var(--dark); background: var(--white); outline: none;
  transition: border-color 0.18s, box-shadow 0.18s; -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #B0BECA; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(35,150,207,0.10);
}
.form-group textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.btn-submit {
  width: 100%; padding: 0.85rem;
  background: var(--blue); color: var(--white);
  border: none; border-radius: 3px;
  font-size: 0.925rem; font-weight: 700;
  cursor: pointer; font-family: 'Inter', system-ui, sans-serif;
  transition: background 0.15s; margin-top: 0.4rem;
}
.btn-submit:hover { background: var(--blue-dark); }
.btn-submit:active { opacity: 0.9; }
.form-success { display: none; text-align: center; padding: 3rem 1rem; }
.form-success .fs-icon {
  width: 52px; height: 52px; background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem; color: var(--blue);
}
.form-success .fs-icon svg { width: 26px; height: 26px; }
.form-success h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--black); }
.form-success p  { color: var(--body); font-size: 0.9rem; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--off-white);
  border-top: 3px solid var(--blue);
  padding: 3.5rem 5% 2rem;
  color: var(--dark);
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; max-width: 1160px; margin: 0 auto 2.5rem;
}
.footer-logo { display: inline-block; margin-bottom: 1rem; }
.footer-logo-img { height: 52px; width: auto; display: block; }
.footer-brand p { color: var(--body); font-size: 0.875rem; line-height: 1.75; max-width: 260px; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social a {
  width: 34px; height: 34px;
  background: var(--white); border: 1px solid var(--border-dark);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: var(--body);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.footer-social a:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.footer-social a svg { width: 15px; height: 15px; }
.footer-col h4 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 1rem; font-weight: 700; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a  { color: var(--body); font-size: 0.875rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  max-width: 1160px; margin: 0 auto;
  border-top: 1px solid var(--border-dark); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.78rem; color: var(--muted);
}

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity 0.4s ease, transform 0.4s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .about-split       { grid-template-columns: 1fr; }
  .contact-layout    { grid-template-columns: 1fr; }
  .footer-inner      { grid-template-columns: 1fr; gap: 2rem; }
  .steps-row::before { display: none; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .service-list      { grid-template-columns: 1fr; }
  .sl-item:nth-child(odd)       { border-right: none; }
  .sl-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .sl-item:last-child           { border-bottom: none; }
  .sc-card-grid      { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  nav { padding: 0 5%; }
  .nav-center, .nav-email { display: none; }
  .nav-cta { font-size: 0.78rem !important; padding: 0.42rem 0.9rem !important; }
  .nav-center.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    transform: none;
    background: var(--white); padding: 1.25rem 5%;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    gap: 1rem;
  }
  .hamburger { display: flex; }
  .section   { padding: 3.5rem 5%; }
  .hero      { padding: calc(var(--nav-h) + 2.5rem) 5% 2.5rem; }
  .form-row  { grid-template-columns: 1fr; }
  .cta-band  { padding: 2.5rem 1.75rem; }
  .quote-strip   { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .svc-row   { grid-template-columns: 1fr; gap: 1rem; }
  .svc-features { grid-template-columns: 1fr; }
  .sc-card-grid { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
  .about-stats  { gap: 2rem; }
  .as-number    { font-size: 1.9rem; }
}

/* ── LANGUAGE TOGGLE ─────────────────────────────────────── */
.lang-toggle {
  font-size: 0.8rem; font-weight: 700;
  color: var(--body);
  padding: 0.28rem 0.7rem;
  border: 1.5px solid var(--border-dark);
  border-radius: 3px;
  letter-spacing: 0.04em;
  transition: color 0.15s, border-color 0.15s;
}
.lang-toggle:hover { color: var(--blue); border-color: var(--blue); }

/* Mobile dropdown lang item (injected by JS) */
.nav-lang-mobile { display: none; }
@media (max-width: 640px) {
  .nav-lang-mobile { display: block; padding-top: 0.25rem; border-top: 1px solid var(--border); margin-top: 0.25rem; }
  .nav-lang-mobile .lang-toggle { font-size: 0.9rem; padding: 0; border: none; font-weight: 700; }
  .nav-lang-mobile .lang-toggle:hover { border: none; }
}

/* ── RTL / ARABIC ─────────────────────────────────────────── */
html[dir="rtl"] body {
  font-family: 'Cairo', system-ui, sans-serif;
}

/* Nav — flip direction */
html[dir="rtl"] nav             { flex-direction: row-reverse; }
html[dir="rtl"] .nav-center     { flex-direction: row-reverse; }
html[dir="rtl"] .nav-right      { flex-direction: row-reverse; }

/* List bullets — move checkmark to right */
html[dir="rtl"] .sl-features li,
html[dir="rtl"] .svc-features li,
html[dir="rtl"] .sc-features li {
  padding-left: 0;
  padding-right: 1.1rem;
}
html[dir="rtl"] .sl-features li::before,
html[dir="rtl"] .svc-features li::before,
html[dir="rtl"] .sc-features li::before {
  left: auto;
  right: 0;
}

/* Check list — flip item direction */
html[dir="rtl"] .check-list li { flex-direction: row-reverse; }

/* Quote strip — border on right */
html[dir="rtl"] .quote-strip {
  border-left: 1px solid var(--border);
  border-right: 4px solid var(--blue);
}

/* Inline flex rows — flip direction */
html[dir="rtl"] .hero-trust   { flex-direction: row-reverse; }
html[dir="rtl"] .hero-actions { flex-direction: row-reverse; }
html[dir="rtl"] .footer-social { flex-direction: row-reverse; }
html[dir="rtl"] .social-row   { flex-direction: row-reverse; }
html[dir="rtl"] .quote-strip  { flex-direction: row-reverse; }

/* Form submit button font */
html[dir="rtl"] .btn-submit {
  font-family: 'Cairo', system-ui, sans-serif;
}

/* Mobile menu — align text right */
html[dir="rtl"] .nav-center.open { text-align: right; }
