/* =========================================================
   Firs1 Removals — Stylesheet
   Brand: Teal #166E91, Navy #2F2F4A, Orange #FF7A00
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --teal: #166E91;
  --teal-dark: #115773;
  --navy: #2F2F4A;
  --navy-dark: #1f1f33;
  --orange: #FF7A00;
  --orange-dark: #e56d00;
  --bg: #F4F6F8;
  --grey: #9AA3AB;
  --grey-light: #E6EAEE;
  --white: #FFFFFF;
  --text: #1d2433;
  --text-soft: #5b6472;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .08);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, .08), 0 2px 4px rgba(15, 23, 42, .04);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, .12), 0 4px 8px rgba(15, 23, 42, .06);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --container: 1180px;
  --gutter: clamp(20px, 4vw, 32px);

  --font-head: "Montserrat", "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }
button { font: inherit; cursor: pointer; }
ul { padding: 0; margin: 0; list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
p { margin: 0 0 1em; color: var(--text-soft); }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  font-size: .78rem;
  color: var(--teal);
  margin-bottom: .8rem;
}
.lead { font-size: 1.125rem; color: var(--text-soft); max-width: 60ch; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: clamp(56px, 8vw, 96px) 0; }
.section-light { background: var(--bg); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,.78); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}
.section-head p { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  text-align: center;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(255, 122, 0, .28);
}
.btn-primary:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(255, 122, 0, .35);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--grey-light);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-light {
  background: var(--white);
  color: var(--navy);
}
.btn-light:hover { background: var(--bg); color: var(--navy); }
.btn-block { width: 100%; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Top announcement bar ---------- */
.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, .88);
  font-size: .82rem;
  font-weight: 500;
  padding: 9px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  letter-spacing: .01em;
}
.top-bar .tb-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.top-bar .tb-check {
  width: 18px; height: 18px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .7rem;
}
.top-bar .tb-sep {
  color: rgba(255,255,255,.25);
  font-size: 1rem;
  line-height: 1;
}
@media (max-width: 600px) { .top-bar .tb-sep { display: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--grey-light);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
}
.brand img { height: 46px; width: auto; }
.brand-text { line-height: 1.1; }
.brand-text small {
  display: block;
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--navy);
  font-weight: 500;
  font-size: .96rem;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-head);
}
.nav-call:hover { color: var(--teal); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  position: relative;
  transition: transform .2s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }

@media (max-width: 920px) {
  .nav-links, .nav-call { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-light);
    padding: 12px var(--gutter) 24px;
    box-shadow: var(--shadow-md);
  }
  .nav.open .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--grey-light);
  }
  .nav.open .nav-call {
    display: inline-flex;
    margin-top: 16px;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 90px) 0 clamp(60px, 9vw, 110px);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(22,110,145,.10), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-copy h1 { margin-bottom: 18px; }
.hero-copy h1 span { color: var(--teal); }
.hero-copy .lead { margin-bottom: 28px; font-size: 1.18rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  align-items: center;
}
.hero-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--navy);
  font-size: .94rem;
}
.hero-trust .trust-item svg { color: var(--teal); flex-shrink: 0; }

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--navy);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  max-width: 280px;
}
.hero-badge .stars {
  color: var(--orange);
  font-size: .9rem;
  letter-spacing: 2px;
}
.hero-badge strong { color: var(--navy); font-family: var(--font-head); }
.hero-badge small { color: var(--text-soft); font-size: .8rem; }

/* ---------- Service cards ---------- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .cards-3 { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(22,110,145,.25);
}
.service-card .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(22,110,145,.10);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { margin-bottom: 18px; }
.service-card ul { margin-bottom: 22px; }
.service-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--text);
  font-size: .95rem;
}
.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}
.service-card .card-link {
  margin-top: auto;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Why Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
  border: 1px solid var(--grey-light);
}
.why-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.why-card p { font-size: .94rem; margin: 0; }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  border: 1px solid var(--grey-light);
}
.step .num {
  position: absolute;
  top: -22px; left: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 8px 18px rgba(255,122,0,.28);
}
.step h3 { margin-top: 14px; }

/* ---------- Reviews ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .reviews { grid-template-columns: 1fr; } }

.review {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--grey-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.review .stars { color: var(--orange); letter-spacing: 3px; margin-bottom: 12px; }
.review p { font-size: 1rem; color: var(--text); margin-bottom: 18px; }
.review .reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.review .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
}
.review .meta strong { display: block; color: var(--navy); font-family: var(--font-head); font-size: .95rem; }
.review .meta small { color: var(--text-soft); font-size: .82rem; }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .9rem;
  color: var(--text-soft);
  margin-top: 28px;
}
.google-badge .stars { color: var(--orange); letter-spacing: 1px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  color: var(--white);
  margin: 0 var(--gutter);
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.85); margin: 0; }
@media (max-width: 760px) {
  .cta-banner { grid-template-columns: 1fr; text-align: left; margin: 0 var(--gutter); }
}

/* ---------- Quote form ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) { .quote-grid { grid-template-columns: 1fr; } }

.quote-info h2 { margin-bottom: 14px; }
.quote-info ul { margin: 22px 0; }
.quote-info ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 14px;
  color: var(--text);
}
.quote-info ul li svg {
  position: absolute;
  left: 0; top: 4px;
  color: var(--teal);
}
.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 600;
  font-family: var(--font-head);
}
.contact-list .icon-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(22,110,145,.10);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.4vw, 40px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-light);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  color: var(--navy);
  margin-bottom: 6px;
  font-family: var(--font-head);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(22,110,145,.15);
}
.field textarea { min-height: 110px; resize: vertical; }
.field-hint { font-size: .82rem; color: var(--text-soft); margin-top: 4px; }
.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  display: none;
}
.form-status.success { display: block; background: #e8f5ee; color: #0f5132; border: 1px solid #b6dec5; }
.form-status.error   { display: block; background: #fdecec; color: #842029; border: 1px solid #f1c2c2; }

/* ---------- Coverage ---------- */
.coverage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) { .coverage { grid-template-columns: 1fr; } }
.coverage-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.coverage-image img { width: 100%; height: 100%; object-fit: cover; }
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.area-tags span {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .88rem;
  color: var(--navy);
  font-weight: 500;
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1d2542 100%);
  color: var(--white);
  padding: clamp(60px, 9vw, 110px) 0 clamp(60px, 8vw, 90px);
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,.82); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 14px;
}
.breadcrumbs a { color: rgba(255,255,255,.85); }

/* ---------- Service detail rows (services page) ---------- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.service-row:last-child { margin-bottom: 0; }
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
@media (max-width: 880px) {
  .service-row, .service-row.reverse { grid-template-columns: 1fr; direction: ltr; }
}
.service-row .image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.service-row .image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.service-row h2 { margin-bottom: 14px; }
.service-row .feature-list { margin: 18px 0 24px; }
.service-row .feature-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  color: var(--text);
}
.service-row .feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 16px; height: 9px;
  border-left: 2.5px solid var(--orange);
  border-bottom: 2.5px solid var(--orange);
  transform: rotate(-45deg);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.stat {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}
.stat small { color: var(--text-soft); font-size: .82rem; font-weight: 500; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 880px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  transition: transform .25s ease;
}
.gallery a { overflow: hidden; border-radius: var(--radius); display: block; }
.gallery a:hover img { transform: scale(1.04); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq details[open] {
  box-shadow: var(--shadow-sm);
  border-color: rgba(22,110,145,.3);
}
.faq summary {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--teal);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 12px; margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.78);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.site-footer .brand img { filter: brightness(0) invert(1); }
.site-footer .brand-text, .site-footer .brand-text small { color: var(--white); }
.site-footer p { color: rgba(255,255,255,.72); font-size: .94rem; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul li a {
  color: rgba(255,255,255,.78);
  font-size: .94rem;
}
.site-footer ul li a:hover { color: var(--orange); }
.footer-contact a { color: rgba(255,255,255,.85); display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.footer-contact svg { color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .86rem;
  color: rgba(255,255,255,.6);
}
.footer-bottom a { color: rgba(255,255,255,.78); }

/* ---------- Floating call button (mobile) ---------- */
.float-call {
  position: fixed;
  bottom: 18px; right: 18px;
  background: var(--orange);
  color: var(--white);
  width: 58px; height: 58px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(255,122,0,.4);
  z-index: 90;
}
.float-call:hover { color: var(--white); background: var(--orange-dark); }
@media (max-width: 720px) { .float-call { display: inline-flex; } }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.no-pad-top { padding-top: 0; }

/* ---------- Info block (contact page) ---------- */
.info-block {
  margin-top: 24px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
}
.info-block strong {
  display: block;
  font-family: var(--font-head);
  color: var(--navy);
  font-size: .92rem;
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.info-block p {
  margin: 0;
  font-size: .95rem;
  color: var(--text-soft);
}

/* ---------- Mobile optimisations ---------- */
@media (max-width: 720px) {
  /* Bigger touch targets on phones */
  .btn { padding: 15px 24px; font-size: 1rem; min-height: 48px; }
  .nav-links a { padding: 14px 0; font-size: 1.05rem; }
  .field input,
  .field select,
  .field textarea { font-size: 16px; padding: 14px 14px; } /* 16px stops iOS zoom */

  /* Hide expanded nav-call on mobile — it's huge */
  .nav-call { display: none !important; }
  .nav.open .nav-call {
    display: inline-flex !important;
    margin-top: 16px;
    justify-content: center;
    padding: 14px;
    background: var(--bg);
    border-radius: var(--radius-sm);
  }

  /* Hero tweaks for narrow screens */
  .hero { padding-top: 24px; padding-bottom: 48px; }
  .hero-trust { gap: 12px 18px; }
  .hero-trust .trust-item { font-size: .88rem; }
  .hero-badge { padding: 10px 14px; max-width: 220px; bottom: 14px; left: 14px; }
  .hero-badge strong { font-size: .95rem; }
  .hero-badge small { font-size: .72rem; }

  /* Reduce header height + brand wrap */
  .nav { height: auto; padding: 12px 0; gap: 12px; }
  .brand img { height: 38px; }
  .brand-text { font-size: 1rem; line-height: 1.05; }
  .brand-text small { font-size: .65rem; }

  /* Tighter section padding */
  section { padding: 48px 0; }
  .section-head { margin-bottom: 28px; }

  /* Service cards full-bleed on mobile */
  .service-card { padding: 22px; }
  .step { padding: 28px 22px; }
  .review { padding: 22px; }

  /* CTA banner stack */
  .cta-banner { padding: 28px 24px; gap: 20px; }
  .cta-banner h2 { font-size: 1.4rem; }

  /* Form card padding */
  .form-card { padding: 22px; }

  /* Top bar — compact */
  .top-bar { font-size: .72rem; padding: 8px 12px; gap: 6px 14px; }
  .top-bar .tb-check { width: 15px; height: 15px; font-size: .6rem; }

  /* Bigger floating call button */
  .float-call { width: 56px; height: 56px; bottom: 16px; right: 16px; }
}

@media (max-width: 420px) {
  .top-bar { font-size: .68rem; }
  .hero-actions .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
