/* =====================================================
   GLOBAL DESIGN TOKENS: Colours, shadows, radius, and reusable variables
   ===================================================== */
:root {
  --bg: #090d0b;
  --bg-2: #101613;
  --surface: #151d19;
  --surface-2: #1c2822;
  --surface-3: #22342b;
  --text: #f7faf7;
  --muted: #c7d2ca;
  --muted-2: #9ead9f;
  --line: rgba(255,255,255,.13);
  --line-strong: rgba(25,196,107,.36);
  --green: #19c46b;
  --green-soft: rgba(25,196,107,.14);
  --green-dark: #108c4a;
  --blue: #2563eb;
  --whatsapp: #25d366;
  --amber: #f59e0b;
  --shadow: 0 24px 70px rgba(0,0,0,.42);
  --shadow-soft: 0 14px 38px rgba(0,0,0,.28);
  --radius: 24px;
}

/* =====================================================
   BASE RESET & PAGE BACKGROUND: Shared defaults and dark premium backdrop
   ===================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 7%, rgba(25,196,107,.20), transparent 31rem),
    radial-gradient(circle at 86% 17%, rgba(245,158,11,.13), transparent 26rem),
    radial-gradient(circle at 50% 92%, rgba(37,99,235,.10), transparent 30rem),
    linear-gradient(180deg, #090d0b 0%, #111815 46%, #0b0f0d 100%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 74%);
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
a:hover, a:focus-visible { color: var(--amber); outline: none; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.section-pad { padding: 84px 0; position: relative; }
.soft-bg {
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(25,196,107,.055));
  border-block: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

/* =====================================================
   HEADER & NAVIGATION: Sticky top bar, logo, desktop menu, and mobile toggle
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9,13,11,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(0,0,0,.24);
}
.navbar { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 18px; }
.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--text);
}
.logo:hover { color: var(--text); }
.site-logo-img {
  width: clamp(72px, 8vw, 104px);
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 20px;
  padding: 8px 0;
}
.nav-menu { display: flex; align-items: center; gap: 16px; }
.nav-menu a { color: var(--muted); font-size: .82rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.nav-menu a:hover, .nav-menu a:focus-visible { color: var(--green); }
.nav-cta { color: #211300 !important; background: linear-gradient(180deg, #ffbd3f, var(--amber)); padding: 11px 16px; border-radius: 999px; box-shadow: 0 10px 24px rgba(245,158,11,.24); }
.nav-cta:hover { color: #211300 !important; transform: translateY(-1px); box-shadow: 0 14px 30px rgba(245,158,11,.32); }
.nav-toggle { display: none; align-items: center; gap: 9px; height: 42px; padding: 0 14px; border: 1px solid var(--green); background: var(--surface); border-radius: 12px; }
.nav-toggle-label { font-size: .75rem; font-weight: 800; letter-spacing: .08em; color: var(--text); text-transform: uppercase; }
.nav-toggle-icon { display: flex; flex-direction: column; gap: 4px; }
.nav-toggle-icon span { display: block; width: 22px; height: 2px; background: var(--text); }

/* =====================================================
   HERO SECTION: Main layout, heading scale, trust badge, and CTA buttons
   ===================================================== */

/* =====================================================
   HERO SECTION: Cinematic image-led header matching the supplied redesign reference
   ===================================================== */
.hero-redesign {
  position: relative;
  min-height: calc(100vh - 78px);
  padding: 0 0 42px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(119,255,0,.22);
  background: radial-gradient(circle at 50% 0%, #0c1a06 0%, #030603 62%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.36) 0%, rgba(0,0,0,.08) 42%, rgba(0,0,0,.22) 100%),
    linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.08) 52%, rgba(0,0,0,.58) 100%);
}
.hero-redesign::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 36%, rgba(119,255,0,.25), transparent 22rem),
    radial-gradient(circle at 77% 44%, rgba(119,255,0,.13), transparent 28rem),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.36) 100%);
  mix-blend-mode: screen;
  opacity: .8;
}
.hero-inner {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-copy {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding-top: clamp(6px, 2vw, 24px);
}
.hero-image-wrap {
  position: relative;
}
.hero-banner {
  display: block;
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  height: auto;
  margin: 0 0 -24px;
  transform: translateX(-50%);
}
.hero-trust.hero-trust-overlay {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 5vw, 56px);
  transform: translateX(-50%);
  z-index: 3;
  width: 75%;
  white-space: normal;
  text-align: center;
  margin: 0;
  padding: 8px 22px;
  border-radius: 999px;
  background: rgba(3, 6, 3, .45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.hero-copy h1 {
  margin: clamp(20px, 3vw, 40px) auto 0;
  color: #fff;
  font-size: clamp(1.7rem, 4.8vw, 3.6rem);
  line-height: 1.12;
  font-weight: 1000;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.hero-recycle-rate {
  margin: clamp(22px, 3vw, 32px) auto 0;
  color: #8cff00;
  font-size: clamp(.92rem, 2vw, 1.3rem);
  font-weight: 1000;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.hero-licence {
  margin: 1px auto clamp(36px, 5vw, 56px);
  color: #8cff00;
  font-size: clamp(.92rem, 2vw, 1.3rem);
  font-weight: 1000;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.hero-trust {
  width: min(100%, 980px);
  margin: clamp(22px, 3vw, 34px) auto clamp(22px, 3vw, 32px);
  color: #7cff00;
  font-weight: 1000;
  font-size: clamp(1.2rem, 3.5vw, 2.65rem);
  line-height: 1;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-trust .dot { color: var(--green); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-actions-redesign {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  width: min(100%, 940px);
  margin: 0 auto;
}
.hero-action-card {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 22px);
  padding: 12px clamp(12px, 1.6vw, 22px);
  border: 3px solid rgba(255,255,255,.34);
  border-radius: 16px;
  color: #fff;
  text-align: left;
  box-shadow: 0 18px 42px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.32), inset 0 -4px 18px rgba(0,0,0,.25);
  text-transform: uppercase;
  transform: translateZ(0);
}
.hero-action-card:hover,
.hero-action-card:focus-visible {
  color: #fff;
  transform: translateY(-3px);
  filter: brightness(1.08);
}
.hero-action-icon {
  flex: 0 0 auto;
  width: clamp(44px, 4.4vw, 62px);
  height: clamp(44px, 4.4vw, 62px);
  display: grid;
  place-items: center;
  border: 4px solid rgba(255,255,255,.95);
  border-radius: 999px;
  color: #fff;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 3px 0 rgba(0,0,0,.35);
}
.hero-action-text { display: grid; gap: 3px; }
.whatsapp-logo { width: 62%; height: 62%; fill: currentColor; display: block; }
.hero-action-icon-whatsapp { background: rgba(255,255,255,.08); }
.hero-action-text strong {
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.72rem);
  line-height: .95;
  font-weight: 1000;
  letter-spacing: -.025em;
  text-shadow: 0 3px 0 rgba(0,0,0,.38);
}
.hero-action-text small {
  color: #fff;
  font-size: clamp(.7rem, 1vw, .92rem);
  line-height: 1.1;
  font-weight: 800;
  text-transform: none;
  text-shadow: 0 2px 0 rgba(0,0,0,.3);
}
.hero-call { background: linear-gradient(180deg, #116dff 0%, #004ce8 100%); border-color: #54c8ff; box-shadow: 0 18px 42px rgba(0,0,0,.55), 0 0 24px rgba(37,99,235,.45), inset 0 1px 0 rgba(255,255,255,.35); }
.hero-whatsapp { background: linear-gradient(180deg, #199d16 0%, #086f08 100%); border-color: #75ff44; box-shadow: 0 18px 42px rgba(0,0,0,.55), 0 0 24px rgba(37,211,102,.38), inset 0 1px 0 rgba(255,255,255,.35); }
.hero-quote { background: linear-gradient(180deg, #ff990b 0%, #f27100 100%); border-color: #ffc343; box-shadow: 0 18px 42px rgba(0,0,0,.55), 0 0 24px rgba(245,158,11,.42), inset 0 1px 0 rgba(255,255,255,.35); }
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .035em;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.22), transparent 44%);
  pointer-events: none;
}
.btn:hover, .btn:focus-visible { color: #fff; transform: translateY(-2px); filter: brightness(1.06); }
.btn-call { background: linear-gradient(180deg, #4f86ff, var(--blue)); }
.btn-whatsapp { background: linear-gradient(180deg, #44e884, var(--whatsapp)); color: #042611; }
.btn-whatsapp:hover { color: #042611; }
.btn-quote { background: linear-gradient(180deg, #ffc45b, var(--amber)); color: #231604; }
.btn-quote:hover { color: #231604; }
.full-width { width: 100%; }

.hero-card, .service-card, .feature-grid article, .promo-card, .mini-card-grid article, .process-grid article, .licence-card, blockquote, .quote-form, .contact-card, .faq-list details {
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.028)), linear-gradient(145deg, var(--surface), rgba(34,52,43,.74));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.hero-card { padding: 22px; border-color: rgba(25,196,107,.24); }
.hero-card h2 { font-size: 1.05rem; color: var(--green); margin-bottom: 6px; }
.image-placeholder {
  min-height: 160px;
  border: 1px dashed rgba(25,196,107,.58);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.015)),
    repeating-linear-gradient(135deg, rgba(25,196,107,.09), rgba(25,196,107,.09) 10px, rgba(255,255,255,.035) 10px, rgba(255,255,255,.035) 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 18px;
  color: var(--muted);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.image-placeholder span { font-size: .72rem; color: var(--green); font-weight: 900; letter-spacing: .12em; }
.image-placeholder strong { color: var(--text); }
.hero-image { min-height: 330px; }

.section-heading { max-width: 850px; margin: 0 auto 38px; text-align: center; }
.section-heading.align-left { text-align: left; margin-inline: 0; }
.eyebrow { margin: 0 0 8px; color: var(--green); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
h2 { margin: 0 0 14px; font-size: clamp(1.7rem, 4vw, 3rem); line-height: 1.05; letter-spacing: -.035em; text-transform: uppercase; }
h3 { margin: 16px 0 8px; font-size: 1rem; text-transform: uppercase; letter-spacing: .02em; }
p { color: var(--muted); }
strong { color: var(--text); }

/* =====================================================
   WHY CHOOSE & PROMO CARDS: Trust benefit grid and promotional highlight cards
   ===================================================== */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-grid article {
  position: relative;
  overflow: hidden;
  padding: 22px 18px 20px;
  color: var(--text);
  font-weight: 850;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-align: center;
  border-color: rgba(25,196,107,.22);
  box-shadow: 0 18px 45px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--green);
  background: radial-gradient(circle at 35% 25%, rgba(255,255,255,.14), rgba(25,196,107,.11) 55%, rgba(10,111,61,.16));
  border: 1px solid rgba(25,196,107,.28);
  box-shadow: 0 0 24px rgba(25,196,107,.18), inset 0 1px 0 rgba(255,255,255,.12);
}
.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-grid article::after {
  content: "";
  position: absolute;
  top: -70%;
  left: -48%;
  width: 44%;
  height: 240%;
  transform: rotate(24deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.13), transparent);
  transition: left .55s ease;
}
.feature-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(25,196,107,.56);
  box-shadow: 0 24px 58px rgba(0,0,0,.34), 0 0 28px rgba(25,196,107,.13), inset 0 1px 0 rgba(255,255,255,.12);
}
.feature-grid article:hover .feature-icon {
  color: #fff;
  border-color: rgba(25,196,107,.62);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}
.feature-grid article:hover::after { left: 116%; }

.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 26px; }
.promo-card {
  position: relative;
  min-height: 190px;
  padding: 30px 24px 28px;
  color: var(--green);
  font-weight: 900;
  text-align: center;
  border-color: rgba(245,158,11,.28);
  background:
    radial-gradient(circle at 50% 0%, rgba(25,196,107,.15), transparent 42%),
    linear-gradient(180deg, rgba(245,158,11,.105), rgba(25,196,107,.06)),
    linear-gradient(145deg, #17211c, #111815);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.promo-card::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.1), transparent 38%, rgba(25,196,107,.08));
}
.promo-card > * { position: relative; z-index: 1; }
.promo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(25,196,107,.5);
  box-shadow: 0 24px 58px rgba(0,0,0,.36), 0 0 30px rgba(25,196,107,.12), inset 0 1px 0 rgba(255,255,255,.12);
}
.promo-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: linear-gradient(145deg, rgba(25,196,107,.18), rgba(245,158,11,.09));
  border: 1px solid rgba(25,196,107,.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 14px 28px rgba(0,0,0,.25);
}
.promo-icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.promo-card--wide {
  grid-column: 1 / -1;
  min-height: 172px;
  padding: 32px 40px;
}
.promo-card--wide .promo-icon { width: 64px; height: 64px; border-radius: 20px; }
.promo-card--wide .promo-icon svg { width: 38px; height: 38px; }
.how-it-works-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.how-it-works-cta .btn-quote {
  margin: 0 auto;
}
/* =====================================================
   SERVICE CARDS & CONTENT LAYOUTS: Waste, removals, process, gallery, and testimonial grids
   ===================================================== */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { padding: 16px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(25,196,107,.46); box-shadow: 0 22px 54px rgba(0,0,0,.34); }
.service-card .image-placeholder { min-height: 100px; }

.service-card > img {
  display: block;
  width: 100%;
  height: 110px;
  object-fit: contain;
  border-radius: 10px;
  background: #000201;
  border: 1px solid rgba(9,186,129,.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 24px rgba(25,196,107,.08);
  padding: 10px;
  margin-bottom: 15px;
}
.service-card:hover > img {
  border-color: rgba(9,186,129,.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 0 28px rgba(9,186,129,.12);
}

.service-card h3 { color: var(--text); text-align: center; }
.service-note { display: block; margin-top: 6px; color: var(--green); font-size: .72rem; letter-spacing: .08em; }

.collections-disposal-block {
  margin-top: 42px;
  padding: 28px;
  border: 1px solid rgba(25,196,107,.2);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)), linear-gradient(135deg, rgba(25,196,107,.1), rgba(9,186,129,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 22px 58px rgba(0,0,0,.22);
}
.compact-heading { margin-bottom: 22px; }
.compact-heading h2 { font-size: clamp(1.35rem, 2.4vw, 2rem); }
.collection-pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.collection-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid rgba(25,196,107,.34);
  border-radius: 999px;
  color: var(--text);
  font-weight: 850;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.025)), rgba(19,24,23,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 14px 34px rgba(0,0,0,.2), 0 0 28px rgba(25,196,107,.08);
  backdrop-filter: blur(12px);
}
.collection-pill-wide {
  border-radius: 26px;
  max-width: 680px;
}
.collection-pill small {
  display: inline-block;
  margin-left: 8px;
  color: var(--green);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tick-list { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 10px; }
.tick-list li { color: var(--muted); padding-left: 28px; position: relative; }
.tick-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }

.specialist-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.specialist-showcase .section-heading { margin-bottom: 22px; }
.specialist-card-grid {
  width: min(100%, 960px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
}
.specialist-list-card {
  position: relative;
  overflow: hidden;
  padding: 18px 20px;
  border: 1px solid rgba(25,196,107,.24);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.028)), linear-gradient(145deg, var(--surface), rgba(34,52,43,.74));
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,.08);
}
.specialist-list-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 0%, rgba(25,196,107,.16), transparent 34%);
  pointer-events: none;
}
.specialist-list-card .tick-list {
  position: relative;
  margin: 0;
}
.specialist-list-card .tick-list li {
  padding-top: 9px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.specialist-list-card .tick-list li:last-child { border-bottom: 0; }

.mini-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 20px; }
.mini-card-grid article { position: relative; min-height: 70px; display: flex; align-items: center; padding: 16px 16px 16px 46px; color: var(--text); font-weight: 850; border-color: rgba(25,196,107,.22); }
.mini-card-grid article::before { content: "✓"; position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; display: grid; place-items: center; border-radius: 999px; background: linear-gradient(135deg, var(--green), var(--green-dark)); color: #fff; font-size: .76rem; font-weight: 900; box-shadow: 0 0 20px rgba(25,196,107,.22); }
.commercial-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.highlight-copy { color: var(--text); padding: 18px; border-left: 4px solid var(--green); background: rgba(25,196,107,.08); border-radius: 14px; }
.tall { min-height: 460px; }
.medium { min-height: 240px; margin-bottom: 20px; }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.process-grid article { padding: 22px; text-align: center; transition: transform .2s ease, border-color .2s ease; }
.process-grid article:hover { transform: translateY(-3px); border-color: rgba(25,196,107,.42); }
.process-grid span { display: grid; place-items: center; width: 48px; height: 48px; margin: 0 auto 12px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--green-dark)); color: #fff; font-weight: 900; box-shadow: 0 12px 24px rgba(25,196,107,.18); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { min-height: 230px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 24px; }
blockquote { margin: 0; padding: 24px; }
blockquote p { color: var(--text); font-size: 1.05rem; }
cite { color: var(--green); font-weight: 800; font-style: normal; }

/* =====================================================
   AREAS COVERED POLISH: Premium location showcase and area chips
   ===================================================== */
.areas-showcase {
  position: relative;
  overflow: hidden;
  padding: 38px 26px;
  border: 1px solid rgba(25,196,107,.34);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 18% 10%, rgba(25,196,107,.23), transparent 22rem),
    radial-gradient(circle at 82% 18%, rgba(245,158,11,.16), transparent 20rem),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.028)),
    linear-gradient(145deg, #17231d, #0d1210);
  box-shadow: 0 28px 80px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.10);
}
.areas-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.08) 42%, transparent 58%);
  opacity: .45;
}
.areas-showcase .section-heading { position: relative; margin-bottom: 24px; }
.areas-showcase .section-heading h2 { text-shadow: 0 0 30px rgba(25,196,107,.18); }
.areas-showcase .section-heading p {
  max-width: 920px;
  margin-inline: auto;
  color: var(--text);
  font-weight: 850;
}
.area-chips {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.area-chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(25,196,107,.36);
  background: linear-gradient(180deg, rgba(25,196,107,.13), rgba(255,255,255,.035));
  color: var(--text);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .055em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 12px 26px rgba(0,0,0,.20);
}

/* =====================================================
   CUSTOMER REVIEW RATINGS: Visible star ratings and rating badges
   ===================================================== */
.review-form-title {
  margin: 30px auto 18px;
  text-align: center;
}
.review-stars {
  color: #ffc247;
  font-size: 1.35rem;
  letter-spacing: .10em;
  line-height: 1;
  margin-bottom: 14px;
  text-shadow: 0 0 18px rgba(245,158,11,.38), 0 1px 0 rgba(0,0,0,.35);
}

/* =====================================================
   FORMS, CONTACT CARDS, LICENCE CARD & FAQ: Inputs, consent, contact panels, and accordion styles
   ===================================================== */
.review-form, .quote-form { padding: 24px; display: grid; gap: 16px; }
.review-form { max-width: 760px; margin: 0 auto; }
.form-row { display: grid; gap: 7px; }
.form-row.full { grid-column: 1 / -1; }
label { color: var(--text); font-weight: 800; }
input, select, textarea { width: 100%; border: 1px solid var(--line); background: #0d1210; color: var(--text); border-radius: 12px; padding: 13px 14px; font: inherit; }
input:focus, select:focus, textarea:focus { border-color: var(--green); outline: 3px solid rgba(25,196,107,.18); }
input[type="date"] { color-scheme: dark; cursor: pointer; }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); cursor: pointer; }
small, .form-note { color: var(--muted); }
.hidden-field { display: none; }
.form-feedback {
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 700;
  font-size: .9rem;
}
.form-feedback ul { margin: 0; padding-left: 20px; }
.form-feedback.is-error { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.4); color: #fda4a4; }
.form-feedback.is-success { background: var(--green-soft); border: 1px solid rgba(25,196,107,.4); color: var(--green); }
.global-feedback {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 80;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 16px;
  padding: 16px 20px;
  font-weight: 800;
  text-align: center;
  box-shadow: var(--shadow);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
}
.global-feedback.is-error { border-color: rgba(239,68,68,.7); background: #2a1414; color: #fda4a4; }
.global-feedback.is-success { border-color: rgba(25,196,107,.7); background: #0d2018; color: var(--green); }
.thank-you-section { min-height: 60vh; display: flex; align-items: center; }
.thank-you-content { max-width: 720px; margin: 0 auto; text-align: center; }
.thank-you-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 2rem;
  margin-bottom: 20px;
}
.thank-you-message { color: var(--green); font-weight: 800; font-size: 1.15rem; }
.thank-you-actions { justify-content: center; margin-top: 28px; }
.consent { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .92rem; }
.consent input { width: auto; margin-top: 5px; }
.photo-preview-list { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.photo-preview-list:empty { display: none; }
.photo-preview-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--line);
  background: var(--green-soft);
  color: var(--green);
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: .88rem;
}
.photo-preview-item span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.photo-preview-remove {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: rgba(239,68,68,.16);
  color: #fda4a4;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}
.photo-preview-remove:hover { background: rgba(239,68,68,.3); }
.contact-cards { display: grid; gap: 12px; margin-bottom: 32px; }
.contact-card { padding: 18px; color: var(--text); display: grid; gap: 4px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.contact-card:hover { color: var(--text); transform: translateY(-2px); border-color: var(--green); box-shadow: 0 20px 44px rgba(0,0,0,.34); }
.contact-card span { color: var(--muted); }
.call-card { border-left: 5px solid var(--blue); }
.whatsapp-card { border-left: 5px solid var(--whatsapp); }
.licence-card { display: grid; grid-template-columns: 280px 1fr; gap: 24px; padding: 28px; align-items: center; border-color: rgba(25,196,107,.34); }
.licence-image { min-height: 220px; }
.faq-list { display: grid; gap: 12px; max-width: 920px; margin: 0 auto; }
.faq-list details { padding: 18px 20px; transition: border-color .18s ease, box-shadow .18s ease; }
.faq-list details[open] { border-color: rgba(25,196,107,.48); box-shadow: 0 18px 42px rgba(0,0,0,.3), inset 4px 0 0 rgba(25,196,107,.78); }
.faq-list summary { cursor: pointer; font-weight: 900; color: var(--text); }
.faq-list p { margin-bottom: 0; }
/* =====================================================
   FOOTER, MOBILE CTA & COOKIE BANNER: Footer layout, fixed mobile actions, and consent popup
   ===================================================== */
.charity-support-section {
  padding: 36px 0 64px;
  background:
    radial-gradient(circle at 50% 8%, rgba(25,196,107,.16), transparent 28rem),
    linear-gradient(180deg, rgba(13,18,16,.96), #070a08);
}
.charity-support-image {
  display: block;
  width: min(100%, 760px);
  height: auto;
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid rgba(25,196,107,.28);
  box-shadow: 0 28px 70px rgba(0,0,0,.48), 0 0 42px rgba(25,196,107,.12);
}
.site-footer { padding: 56px 0 86px; border-top: 1px solid var(--line); background: linear-gradient(180deg, #0b0f0d, #070a08); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
.footer-grid a { display: block; color: var(--muted); margin: 7px 0; }
.footer-grid a:hover { color: var(--amber); }
.footer-brand-image-link {
  width: min(100%, 260px);
  margin: 0 0 18px;
}
.footer-brand-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.36), 0 0 32px rgba(25,196,107,.14);
}
.footer-grid h3 { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; margin-top: 32px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: var(--muted); }
.mobile-cta-bar { display: none; }
.cookie-banner { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 70; max-width: 860px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 18px; box-shadow: var(--shadow); display: none; align-items: center; justify-content: space-between; gap: 16px; }
.cookie-banner.show { display: flex; }
.cookie-banner h2 { font-size: 1rem; margin: 0 0 4px; }
.cookie-banner p { margin: 0; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-btn { border: 0; border-radius: 999px; padding: 10px 15px; font-weight: 900; cursor: pointer; }
.cookie-accept { background: var(--green); color: #fff; }
.cookie-decline { background: transparent; color: var(--text); border: 1px solid var(--line); }

/* =====================================================
   RESPONSIVE LAYOUT: Tablet/mobile navigation and grid stacking
   ===================================================== */
@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .nav-menu { position: absolute; top: 78px; left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch; background: rgba(21,29,25,.98); border: 1px solid var(--line); border-radius: 18px; padding: 16px; box-shadow: var(--shadow); }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 11px 12px; }
  .hero-grid, .quote-grid, .two-column, .licence-card { grid-template-columns: 1fr; }
  .hero-redesign { min-height: auto; padding: 0 0 34px; }
  .hero-inner { min-height: auto; }
  .hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.72)); }
  .hero-actions-redesign { grid-template-columns: repeat(3, minmax(0, 1fr)); width: min(760px, 100%); gap: 10px; }
  .hero-action-card { min-height: 68px; justify-content: center; gap: 10px; padding: 10px 12px; border-width: 2px; }
  .hero-action-icon { width: 42px; height: 42px; border-width: 3px; font-size: 1.45rem; }
  .hero-action-text strong { font-size: clamp(.82rem, 2.45vw, 1.08rem); }
  .hero-action-text small { font-size: clamp(.62rem, 1.65vw, .78rem); }
  .reverse-mobile .image-placeholder { order: 2; }
  .feature-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid, .testimonial-grid, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
  .mini-card-grid, .commercial-card-grid, .specialist-card-grid { grid-template-columns: 1fr; }
}
/* =====================================================
   SMALL MOBILE LAYOUT: Single-column content, full-width CTAs, and bottom CTA bar
   ===================================================== */
@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1160px); }
  .section-pad { padding: 56px 0; }
  .feature-grid, .service-grid, .process-grid, .mini-card-grid, .commercial-card-grid, .specialist-card-grid { grid-template-columns: 1fr; }
  .collections-disposal-block { padding: 22px 14px; border-radius: 22px; }
  .collection-pill { width: 100%; min-height: 46px; padding: 12px 14px; }
  .collection-pill-wide { border-radius: 20px; }
  .collection-pill small { display: block; margin: 4px 0 0; }
  .feature-grid article { min-height: 118px; }
  .hero-actions .btn { width: 100%; }
  .hero-lit { margin-bottom: 25px; grid-template-columns: minmax(34px, .3fr) auto minmax(108px, .65fr); gap: 8px; }
  .hero-banner { margin: 0 0 0; }
  .hero-copy { padding-top: 10px; }
  .hero-copy h1 { margin-top: 6px; font-size: clamp(1.1rem, 5vw, 1.5rem); line-height: 1.06; letter-spacing: -.01em; }
  .hero-recycle-rate { margin: 8px auto 0; font-size: clamp(.58rem, 2.1vw, .72rem); }
  .hero-licence { margin: 0 auto 10px; font-size: clamp(.58rem, 2.1vw, .72rem); }

  .hero-trust { margin: 8px auto; letter-spacing: .025em; font-size: clamp(.8rem, 2.9vw, 1.05rem); }
  .hero-trust.hero-trust-overlay { bottom: 14px; width: 75%; padding: 6px 14px; font-size: clamp(.78rem, 3.1vw, 1rem); white-space: normal; }
  .hero-actions { margin-top: 12px; }
  .hero-actions-redesign { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; width: 100%; }
  .hero-action-card { min-height: 52px; border-radius: 12px; flex-direction: column; gap: 4px; padding: 6px 5px; text-align: center; }
  .hero-action-icon { width: 26px; height: 26px; border-width: 2px; font-size: .88rem; }
  .hero-action-text { gap: 0; }
  .hero-action-text strong { font-size: clamp(.58rem, 2.9vw, .76rem); line-height: 1; letter-spacing: 0; }
  .hero-action-text small { display: none; }
    .charity-support-section { padding: 24px 0 42px; }
  .charity-support-image { width: min(100%, 420px); border-radius: 18px; }
  .footer-brand-image-link { width: min(100%, 220px); margin-inline: auto; }
  .footer-grid > div:first-child { text-align: center; }
  .mobile-cta-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    transform: translateY(calc(100% + 20px));
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .mobile-cta-bar:not(.cta-hidden) {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-cta-bar.cta-hidden {
    transform: translateY(calc(100% + 20px));
    opacity: 0;
    pointer-events: none;
  }
  .mobile-cta-bar .hero-action-card { margin: 0; }
  .cookie-banner { flex-direction: column; align-items: stretch; bottom: 84px; }
  .footer-bottom { flex-direction: column; }
}

/* Centered feature-image layout for card-based service sections */
.stacked-feature-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stacked-feature-section .section-heading {
  margin-bottom: 22px;
}
.stacked-feature-section .section-heading p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.section-feature-placeholder {
  width: min(100%, 860px);
  margin: 0 auto 26px;
}
.cards-intro {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 16px;
  text-align: center;
  color: var(--muted);
}

.section-feature-image {
  display: block;
  width: min(100%, 860px);
  height: auto;
  max-height: 460px;
  object-fit: cover;
  margin: 0 auto 26px;
  border-radius: 20px;
  border: 1px solid rgba(25,196,107,.22);
  background: #000201;
  box-shadow: 0 18px 48px rgba(0,0,0,.34);
}

.gallery-grid img.gallery-item {
  display: block;
  width: 100%;
  min-height: 230px;
  height: 230px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(25,196,107,.20);
  background: #000201;
  box-shadow: 0 14px 36px rgba(0,0,0,.28);
}

.licence-card img.licence-image {
  display: block;
  width: 100%;
  min-height: 220px;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(25,196,107,.24);
  background: #000201;
  box-shadow: 0 14px 36px rgba(0,0,0,.28);
}


/* Waste clearance service cards: premium centered glow polish */
.service-grid .service-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  background:
    radial-gradient(circle at center, rgba(25,196,107,.20) 0%, rgba(25,196,107,.12) 34%, rgba(14,34,26,.98) 72%, #07110d 100%);
  border: 1px solid rgba(25,196,107,.30);
  box-shadow:
    0 20px 48px rgba(0,0,0,.38),
    0 0 22px rgba(25,196,107,.08),
    inset 0 1px 0 rgba(255,255,255,.065);
}

.service-grid .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.10), transparent 44%),
    linear-gradient(135deg, rgba(255,255,255,.075), transparent 42%, rgba(25,196,107,.065)),
    linear-gradient(180deg, rgba(255,255,255,.035), transparent 54%, rgba(25,196,107,.035));
  opacity: .92;
}

.service-grid .service-card > * {
  position: relative;
  z-index: 1;
}

.service-grid .service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(25,196,107,.62);
  box-shadow:
    0 24px 58px rgba(0,0,0,.42),
    0 0 38px rgba(25,196,107,.18),
    inset 0 1px 0 rgba(255,255,255,.085);
}

.service-grid .service-card > img,
.service-grid .service-card .service-image {
  display: block;
  width: 100%;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 16px;
  padding: 24px;
  box-sizing: border-box;
  border-radius: 12px;
  background: #000201;
  border: 1px solid rgba(25,196,107,.40);
  box-shadow:
    inset 0 0 34px rgba(25,196,107,.10),
    inset 0 1px 0 rgba(255,255,255,.07),
    0 0 26px rgba(25,196,107,.09);
}

.service-grid .service-card:hover > img,
.service-grid .service-card:hover .service-image {
  border-color: rgba(25,196,107,.68);
  box-shadow:
    inset 0 0 38px rgba(25,196,107,.14),
    inset 0 1px 0 rgba(255,255,255,.09),
    0 0 32px rgba(25,196,107,.16);
}


/* =====================================================
   REDUCED MOTION: Disable hover transforms, sweeps, and slide transitions
   for users who have requested reduced motion at the OS/browser level.
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .feature-grid article:hover,
  .promo-card:hover,
  .service-card:hover,
  .service-grid .service-card:hover,
  .process-grid article:hover,
  .contact-card:hover,
  .hero-action-card:hover,
  .hero-action-card:focus-visible,
  .nav-cta:hover,
  .btn:hover,
  .btn:focus-visible {
    transform: none;
  }
  .feature-grid article::after { left: -48%; }
  .mobile-cta-bar { transition: none; }
}

/* Mobile CTA visibility is controlled by JavaScript after the hero scroll point.
   Feature images keep the same filled 16:9 banner treatment on mobile. */
@media (max-width: 640px) {
  .section-feature-image.tall,
  .section-feature-image.medium {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: none;
    object-fit: cover;
    object-position: center center;
  }
}
@media (max-width: 768px) {

    .footer-brand-image-link {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .footer-brand-image {
        margin: 0 auto;
    }

}