/* ============================================================
   MY 24/7 Recovery — Global stylesheet (style.css)
   Used by ALL pages. Page-specific styles live in their own
   files (about.css, contact.css, ...) and only add extras.
   Brand: #55b50d
   ============================================================ */

/* ---------- 1. Variables & reset ---------- */
:root {
  --brand: #55b50d;
  --brand-dark: #3f8a07;
  --brand-darker: #2f6a04;
  --brand-light: #eef8e4;
  --ink: #16211a;
  --ink-soft: #4b5a50;
  --bg: #ffffff;
  --bg-alt: #f4f8f1;
  --line: #e3eadd;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --shadow: 0 8px 28px rgba(22, 33, 26, .10);
  --shadow-lg: 0 16px 44px rgba(22, 33, 26, .16);
  --radius: 14px;
  --font-display: system-ui, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --header-h: 76px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--brand-dark); text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }

.container {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.alt-bg { background: var(--bg-alt); }

/* ---------- 2. Signature: hi-vis chevron strip ---------- */
/* Inspired by the rear markings of UK recovery trucks */
.chevron-strip {
  height: 8px;
  background: repeating-linear-gradient(
    -45deg,
    var(--brand) 0 14px,
    var(--ink) 14px 28px
  );
}

/* ---------- 3. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 1rem 1.9rem; font-size: 1.08rem; }

.btn-solid { background: var(--brand); color: #fff; }
.btn-solid:hover { background: var(--brand-dark); color: #fff; }
.btn-solid-white{background:#fff;color:#000;}

.btn-outline { border-color: var(--brand); color: var(--brand-dark); background: transparent; }
.btn-outline:hover { background: var(--brand); color: #fff; }

.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); color: #fff; }

.btn-white { background: #fff; color: var(--brand-darker); }
.btn-white:hover { background: var(--ink); color: #fff; }

/* Pulsing ring on the main call button */
.btn-pulse { position: relative; }
.btn-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid var(--brand);
  animation: pulse-ring 1.8s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* ---------- 4. Header / navigation ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  backdrop-filter: blur(10px);
  transition: transform .35s ease, box-shadow .35s ease;
}
.site-header.scrolled { box-shadow: 0 4px 18px rgba(22, 33, 26, .10); }
.site-header.hidden { transform: translateY(-100%); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand-logo { width: 64px; height: 64px; object-fit: contain; }
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
}
.brand-text strong { color: var(--brand); font-weight: 800; }

.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.main-nav ul { display: flex; gap: 1.4rem; }
.main-nav ul a {
  font-weight: 600;
  color: var(--ink);
  padding: .4rem 0;
  position: relative;
}
.main-nav ul a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 3px;
  border-radius: 2px;
  background: var(--brand);
  transition: width var(--transition);
}
.main-nav ul a:hover::after,
.main-nav ul a.active::after { width: 100%; }
.main-nav ul a.active { color: var(--brand-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: .5rem;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px; height: 3px;
  border-radius: 2px;
  background: var(--ink);
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- 5. Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 8px);
  background: linear-gradient(135deg, #18241b 0%, #1f3322 55%, #234023 100%);
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(85, 181, 13, .22), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(85, 181, 13, .12), transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 3rem;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}
.hero h1 { color: #fff; }
.hero .accent { color: var(--brand); }
.hero-sub {
  margin: 1.1rem 0 1.8rem;
  font-size: 1.12rem;
  color: #d6e2d4;
  max-width: 32rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(85, 181, 13, .16);
  border: 1px solid rgba(85, 181, 13, .45);
  color: #bff08e;
  font-weight: 600;
  font-size: .88rem;
  padding: .4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--brand);
  animation: dot-blink 1.4s ease-in-out infinite;
}
@keyframes dot-blink { 50% { opacity: .35; } }

.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 1.8rem;
  font-size: .92rem;
  color: #c4d6c2;
}
.hero-trust i { color: var(--brand); margin-right: .4rem; }

.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  height:auto;
  background: #2a3a2c; /* graceful placeholder until image added */
}

/* ---------- 6. Trust strip ---------- */
.trust-strip { background: var(--bg); border-bottom: 1px solid var(--line); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.6rem 0;
}
.trust-item { display: flex; align-items: center; gap: .9rem; }
.trust-item i {
  font-size: 1.5rem;
  color: var(--brand);
  background: var(--brand-light);
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  flex-shrink: 0;
}
.trust-item strong { display: block; font-family: var(--font-display); }
.trust-item span { font-size: .88rem; color: var(--ink-soft); }

/* ---------- 7. Section headings ---------- */
.section-head { text-align: center; max-width: 40rem; margin: 0 auto 2.8rem; }
.section-head p { color: var(--ink-soft); margin-top: .7rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--brand-dark);
  background: var(--brand-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .35rem .9rem;
  border-radius: 999px;
  margin-bottom: .9rem;
}

/* ---------- 8. Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(-45deg, var(--brand) 0 10px, var(--ink) 10px 20px);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--brand);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  margin-bottom: 1.1rem;
  box-shadow: 0 6px 16px rgba(85, 181, 13, .35);
}
.service-card h3 { margin-bottom: .55rem; }
.service-card p { color: var(--ink-soft); font-size: .95rem; }
.section-cta { text-align: center; margin-top: 2.4rem; }

/* ---------- 9. How it works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1.4rem;
  align-items: start;
}
.step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step-icon {
  position: relative;
  width: 70px; height: 70px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: var(--brand-dark);
  background: var(--brand-light);
}
.step-num {
  position: absolute;
  top: -6px; right: -6px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  display: grid;
  place-items: center;
}
.step h3 { margin-bottom: .45rem; }
.step p { color: var(--ink-soft); font-size: .93rem; }
.step-connector {
  align-self: center;
  color: var(--brand);
  font-size: 1.3rem;
  opacity: .6;
}

/* ---------- 10. Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3.5rem;
  align-items: center;
}
.why-content > p { color: var(--ink-soft); margin: .8rem 0 1.4rem; }
.check-list { margin-bottom: 1.8rem; display: grid; gap: .7rem; }
.check-list i { color: var(--brand); margin-right: .6rem; }
.why-media { position: relative; }
.why-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  height: auto;
  background: var(--bg-alt);
}
.why-card {
  position: absolute;
  bottom: -1.4rem;
  left: -1.4rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: .9rem;
}
.why-card i {
  font-size: 1.4rem;
  color: #fff;
  background: var(--brand);
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.why-card strong { display: block; font-family: var(--font-display); font-size: .95rem; }
.why-card span { font-size: .85rem; color: var(--ink-soft); }

/* ---------- 11. CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  color: #fff;
}
.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding: clamp(2.4rem, 5vw, 3.4rem) 0;
}
.cta-text h2 { color: #fff; margin-bottom: .35rem; }
.cta-text p { color: #ecf8df; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content:center; }

/* ---------- 12. Footer ---------- */
.site-footer { background: #16211a; color: #b8c6ba; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
}
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.brand-footer .brand-text { color: #fff; }
.footer-brand p { font-size: .92rem; margin: 1rem 0 1.2rem; }
.footer-social { display: flex; gap: .7rem; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transition: background var(--transition), transform var(--transition);
}
.footer-social a:hover { background: var(--brand); transform: translateY(-3px); }
.footer-links { display: grid; gap: .6rem; }
.footer-links a { color: #b8c6ba; transition: color var(--transition), padding-left var(--transition); }
.footer-links a:hover { color: var(--brand); padding-left: 4px; }
.footer-links i { font-size: .65rem; color: var(--brand); margin-right: .45rem; }
.footer-contact { display: grid; gap: .8rem; font-size: .94rem; }
.footer-contact i { color: var(--brand); width: 1.2rem; margin-right: .4rem; }
.footer-contact a { color: #b8c6ba; }
.footer-contact a:hover { color: var(--brand); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 1.1rem 0;
  font-size: .85rem;
  text-align: center;
}

/* ---------- 13. Floating call / WhatsApp buttons ---------- */
.floating-actions {
  position: fixed;
  right: 1.2rem;
  bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  z-index: 1100;
}
.fab {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.fab:hover { transform: scale(1.1); color: #fff; }
.fab-whatsapp { background: var(--whatsapp); }
.fab-call { background: var(--brand); animation: fab-pulse 2s ease-out infinite; }
@keyframes fab-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(85, 181, 13, .55); }
  70%  { box-shadow: 0 0 0 16px rgba(85, 181, 13, 0); }
  100% { box-shadow: 0 0 0 0 rgba(85, 181, 13, 0); }
}
.fab-label {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem .8rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.fab:hover .fab-label { opacity: 1; }

/* ---------- 14. Go-up button ---------- */
.go-up {
  position: fixed;
  left: 1.2rem;
  bottom: 1.4rem;
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 0;
  background: var(--ink);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition), background var(--transition);
  z-index: 1100;
}
.go-up.show { opacity: 1; visibility: visible; transform: translateY(0); }
.go-up:hover { background: var(--brand); }

/* ---------- 15. Mobile sticky call bar ---------- */
.mobile-call-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1050;
  box-shadow: 0 -4px 18px rgba(22, 33, 26, .18);
}
.mobile-call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.mcb-call { background: var(--brand); }
.mcb-wa { background: var(--whatsapp); }

/* ---------- 16. Scroll reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 17. Page hero (inner pages: about, services...) ----------
   Shared by all inner pages, so it lives here in style.css. */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(2.5rem, 6vw, 4rem)) 0 clamp(2.5rem, 6vw, 4rem);
  background:
    linear-gradient(135deg, rgba(24, 36, 27, .82) 0%, rgba(31, 51, 34, .78) 60%, rgba(35, 64, 35, .82) 100%),
    url("../images/878.jpg") center / cover no-repeat;
  color: #fff;
  text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #d6e2d4; max-width: 36rem; margin: .8rem auto 0; }
.breadcrumb {
  display: inline-flex;
  gap: .5rem;
  font-size: .88rem;
  color: #a9bda8;
  margin-bottom: .9rem;
}
.breadcrumb a { color: var(--brand); }

/* ---------- 17b. Google reviews ---------- */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin-top: .9rem;
  flex-wrap: wrap;
}
.rating-score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
}
.stars { color: #f5b50a; display: inline-flex; gap: .18rem; font-size: 1.05rem; }
.stars.small { font-size: .82rem; margin: .15rem 0 .6rem; display: inline-flex; }
.rating-source { color: var(--ink-soft); font-size: .92rem; }
.rating-source i { color: #4285f4; margin-right: .3rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.review-card p { color: var(--ink-soft); font-size: .94rem; }
.review-head {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .4rem;
}
.review-head > div { flex: 1; line-height: 1.3; }
.review-head strong { font-family: var(--font-display); font-size: .95rem; display: block; }
.review-date { font-size: .8rem; color: var(--ink-soft); }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.review-g { color: #4285f4; font-size: 1.1rem; }
.reviews-actions {
  display: flex;
  justify-content: center;
  gap: .9rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}

/* ---------- 17c. Video section (lite YouTube embeds) ---------- */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 100%;
  margin-inline: auto;
}
.video-card h3 { margin-top: .9rem; text-align: center; font-size: 1.05rem; }
.video-embed {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 20;
  border: 0;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-embed:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-embed img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .92;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
  transition: transform var(--transition), background var(--transition);
}
.play-btn i { margin-left: 4px; }
.video-embed:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--brand-dark);
}

/* ---------- 18. Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero-inner, .why-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media img { aspect-ratio: 16 / 9; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { transform: rotate(90deg); justify-self: center; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card { left: .8rem; bottom: .8rem; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.4rem 1.4rem;
    box-shadow: 0 14px 24px rgba(22, 33, 26, .12);
    transform: translateY(-130%);
    transition: transform var(--transition);
    z-index: -1;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav ul a {
    display: block;
    padding: .85rem 0;
    border-bottom: 1px solid var(--line);
  }
  .main-nav ul a::after { display: none; }
  .nav-call { margin-top: 1rem; justify-content: center; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .cta-inner { text-align: center; justify-content: center; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  /* On phones: show bottom call bar, hide floating bubbles to avoid clutter */
  .mobile-call-bar { display: flex; }
  .floating-actions { display: none; }
  .go-up { bottom: 5rem; }
  body { padding-bottom: 56px; } /* space for call bar */
}




/* ============================================================
   About Page =========================================== */

/* ---------- Story ---------- */
.story-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}
.story-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  background: var(--bg-alt);
}
.story-content > p { color: var(--ink-soft); margin: .8rem 0 0; }
.story-content .btn { margin-top: 1.6rem; }
.story-content h2 { margin-top: .2rem; }

/* ---------- Stats (could move to style.css if reused) ---------- */
.about-stats { border-block: 1px solid var(--line); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2.6rem 0;
  text-align: center;
}
.stat-num, .stat-suffix {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brand-dark);
  line-height: 1.1;
}
.stat-label {
  display: block;
  color: var(--ink-soft);
  font-size: .92rem;
  margin-top: .25rem;
}

/* ---------- Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin-inline: auto;
}
.value-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--brand); }
.value-card .service-icon { margin-inline: auto; }
.value-card p { color: var(--ink-soft); font-size: .95rem; }
.value-card h3 { margin-bottom: .5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr; max-width: 480px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================================
   Services Page =========================================== */

/* ---------- Detailed service cards ---------- */
.service-card-detail { scroll-margin-top: calc(var(--header-h) + 20px); } /* anchor links land below fixed header */
.service-list {
  margin-top: 1rem;
  display: grid;
  gap: .45rem;
  font-size: .92rem;
  color: var(--ink-soft);
}
.service-list i {
  color: var(--brand);
  font-size: .8rem;
  margin-right: .5rem;
}

/* ---------- Quick call strip ---------- */
.quick-call { border-block: 1px solid var(--line); }
.quick-call-inner {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.8rem 0;
  flex-wrap: wrap;
}
.quick-call-icon {
  font-size: 1.6rem;
  color: var(--brand);
  background: var(--brand-light);
  width: 58px; height: 58px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.quick-call-inner p { flex: 1; min-width: 240px; color: var(--ink-soft); }
.quick-call-inner strong { color: var(--ink); }

/* ---------- FAQ (native <details>, no JS needed) ---------- */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: grid;
  gap: .9rem;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item[open] { border-color: var(--brand); box-shadow: var(--shadow); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.3rem;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  list-style: none; /* hide default marker */
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
  color: var(--brand);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item[open] summary i { transform: rotate(180deg); }
.faq-item p {
  padding: 0 1.3rem 1.2rem;
  color: var(--ink-soft);
  font-size: .95rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  .quick-call-inner { text-align: center; justify-content: center; }
}


/* ============================================================
   Coverage page only (coverage.css)
   NOTE: .map-grid reuses patterns from .why-grid; if a map block
   appears on contact too, move .map-embed styles to style.css.
   ============================================================ */

/* ---------- Area pills ---------- */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  max-width: 880px;
  margin-inline: auto;
}
.area-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .5rem 1.1rem;
  font-weight: 600;
  font-size: .92rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.area-pill:hover { transform: translateY(-3px); border-color: var(--brand); box-shadow: var(--shadow); }
.area-pill i { color: var(--brand); font-size: .85rem; }
.area-fast { border-color: var(--brand); background: var(--brand-light); }
.area-badge {
  font-style: normal;
  font-size: .7rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  border-radius: 999px;
  padding: .1rem .5rem;
}
.areas-note { text-align: center; margin-top: 1.8rem; color: var(--ink-soft); }
.areas-note a { font-weight: 700; }

/* ---------- Map block ---------- */
.map-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3.5rem;
  align-items: center;
}
.map-content > p { color: var(--ink-soft); margin: .8rem 0 1.2rem; }
.map-content .btn { margin-top: 1.6rem; }
.map-embed a { position: relative; display: block; }
.map-embed img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  background: var(--bg);
  transition: transform var(--transition);
}
.map-embed a:hover img { transform: scale(1.02); }
.map-pin {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .88rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.map-pin i { color: var(--brand); margin-right: .3rem; }

/* ---------- Nationwide strip ---------- */
.nationwide-inner {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
}
.nationwide-inner .service-icon { margin: 0 auto 1.2rem; }
.nationwide-inner p { color: var(--ink-soft); margin: .8rem 0 1.6rem; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .map-grid { grid-template-columns: 1fr; gap: 2rem; }
}



/* ============================================================
   Contact page only (contact.css)
   NOTE: form field styles could move to style.css if a form
   ever appears on another page (e.g. quote form).
   ============================================================ */

/* ---------- Contact cards ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.contact-card {
  display: block;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  text-align: center;
  color: var(--ink);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--brand); }
.contact-card .service-icon { margin: 0 auto 1rem; }
.icon-wa { background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark)); box-shadow: 0 6px 16px rgba(37, 211, 102, .35); }
.contact-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  margin: .3rem 0;
}
.contact-hint { font-size: .88rem; color: var(--ink-soft); }
.contact-card-primary { border-color: var(--brand); background: var(--brand-light); }

/* ---------- Form + info layout ---------- */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
  align-items: start;
}
.form-intro { color: var(--ink-soft); margin: .8rem 0 1.6rem; }

/* ---------- Form fields ---------- */
.contact-form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: grid; gap: .35rem; }
.form-field label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .88rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: .96rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .75rem 1rem;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(85, 181, 13, .18);
}
.form-field textarea { resize: vertical; }
.contact-form .btn { justify-self: start; }

/* ---------- Info cards ---------- */
.contact-info { display: grid; gap: 1.5rem; }
.info-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}
.info-card h3 { margin-bottom: 1rem; }
.info-card h3 i { color: var(--brand); margin-right: .5rem; }
.hours-list { display: grid; gap: .6rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .95rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
  padding-bottom: .55rem;
}
.hours-list strong { color: var(--brand-dark); font-family: var(--font-display); }
.info-note { font-size: .88rem; color: var(--ink-soft); margin-top: .9rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}
@media (max-width: 860px) {
  .contact-main-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
.video-embed{aspect-ratio:16 / 29}
}