:root{
  /* ================= BASE ================= */
  --bg-main: #f2f3f1;
  --bg-panel: #ffffff;
  --bg-hero-texture: #e1e4df;

  /* ================= GREENS ================= */

  /* STRONG GREEN – actions & conversion */
  --green-strong-top: #355f54;
  --green-strong:     #2f5d50;

  /* SOFT GREEN – structure & navigation */
  --green-soft-top:   #3f7266;
  --green-soft:       #3a6b5e;

  /* LIGHT GREEN – trust / separators */
  --green-light:      #e3ebe7;

  /* ================= GOLD CTA ================= */
  --gold: #d4af37;
  --gold-dark: #b8962e;

  /* ================= TEXT ================= */
  --text-main: #243028;
  --text-muted: #5f6b62;
  --text-hero: #1e2a22;
  --text-on-green: #f5f7f6;

  /* ================= UI ================= */
  --border: rgba(0,0,0,.12);
  --radius: 10px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
}

.container{
  width: min(1200px, 94%);
  margin: 0 auto;
}

/* ======================================================
   A11Y HELPERS (Lighthouse-safe)
   ====================================================== */

.visually-hidden{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

/* Skip link: hidden until focused */
.skip-link{
  position:absolute;
  left:-9999px;
  top:8px;
  z-index:10000;

  padding:10px 14px;
  border-radius:10px;

  background:#ffffff;
  color:#1f1f1f;
  font-weight:800;
  text-decoration:none;

  box-shadow:0 12px 30px rgba(0,0,0,.22);
}

.skip-link:focus,
.skip-link:focus-visible{
  left:12px;
  outline:3px solid var(--gold);
  outline-offset:3px;
}

/* ======================================================
   FOCUS STYLES (links/buttons/summary)
   ====================================================== */

/* Prefer :focus-visible to avoid mouse outlines */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline:3px solid var(--gold);
  outline-offset:3px;
}

/* Make sure links inside green bars show a clear focus ring */
.nav a:focus-visible,
.nav-mobile-panel a:focus-visible,
.footer-nav a:focus-visible,
.sticky-phone-link:focus-visible,
.btn:focus-visible{
  outline:3px solid var(--gold);
  outline-offset:3px;
  text-decoration:none;
}

/* ======================================================
   LANGUAGE PICKER (DESKTOP) — LOOK LIKE NORMAL LINKS
   ====================================================== */

.language-picker{
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
}

.language-picker-desktop a{
  color: var(--text-on-green);
  text-decoration:none;
  font-weight:600;
  opacity:.9;
  padding:0;            /* no button feel */
  border-radius:0;      /* no pill */
  background:none;      /* no button background */
}

.language-picker-desktop a:hover{
  opacity:1;
  text-decoration:underline;
}

/* Optional: highlight current language WITHOUT button styling */
.language-picker-desktop a[aria-current="true"]{
  opacity:1;
  text-decoration:underline;
}

/* Hide desktop language picker on mobile */
@media (max-width: 800px){
  .language-picker-desktop{ display:none; }
}


/* ======================================================
   HEADER BARS
   ====================================================== */

.bar{
  border-bottom: 1px solid rgba(0,0,0,.15);
}

.bar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 0;
  gap:20px;
}

/* ===== BAR 1: CONTACT (STRONG GREEN) ===== */

.bar-contact{
  background: linear-gradient(
    180deg,
    var(--green-strong-top),
    var(--green-strong)
  );
  color: var(--text-on-green);
  font-size:18px;
}

.bar-contact .left{
  font-weight:700;
}

.bar-contact .right{
  display:flex;
  gap:16px;
  align-items:center;
}

.phone{
  font-weight:800;
  font-size:20px;
  color: var(--text-on-green);
}

/* ===== BAR 2: LOGO + NAV (SOFT GREEN) ===== */

.bar-nav{
  background: linear-gradient(
    180deg,
    var(--green-soft-top),
    var(--green-soft)
  );
}

.logo{
  display:flex;
  gap:12px;
  align-items:center;
}

.logo-mark{
  width:44px;
  height:44px;
  border-radius:50%;
  background:#ffffff;
}

.logo-text span{
  display:block;
  color: var(--text-on-green);
}

.logo-name{
  font-weight:700;
  letter-spacing:.3px;
}

.logo-tag{
  font-size:12px;
  opacity:.85;
}

/* NAV */
.nav{
  display:flex;
  gap:26px;
}

.nav a{
  color: var(--text-on-green);
  text-decoration:none;
  font-weight:600;
  opacity:.9;
}

.nav a:hover{
  opacity:1;
  text-decoration:underline;
}

/* ===== BAR 3: TRUST STRIP (LIGHT GREEN) ===== */

.bar-trust{
  background: var(--green-light);
  font-size:13px;
}

.trust-inner{
  justify-content:center;
  gap:26px;
  color: var(--text-muted);
}

/* ======================================================
   HEADER → HERO SEPARATOR
   ====================================================== */

.hero-separator{
  height:4px;
  background: var(--green-soft);
  border-bottom: 1px solid rgba(0,0,0,.15);
}

/* ======================================================
   HERO
   ====================================================== */

.hero{
  position:relative;
  min-height:420px;
  background:
    repeating-linear-gradient(
      45deg,
      #e4e7e3,
      #e4e7e3 12px,
      #dfe3de 12px,
      #dfe3de 24px
    );
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url("/images/hero-scrap-faded.png");
  background-repeat:no-repeat;
  background-size: cover;
  background-position: center;
  opacity:0.45;
  z-index:1;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(242,243,241,1) 0%,
      rgba(242,243,241,.45) 15%,
      rgba(242,243,241,0) 32%,
      rgba(242,243,241,0) 68%,
      rgba(242,243,241,.45) 85%,
      rgba(242,243,241,1) 100%
    );
  z-index:2;
}

.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
  padding:70px 0;
  z-index:3;
}

/* ======================================================
   HERO FORM (STRONG GREEN)
   ====================================================== */

.hero-form{
  background: linear-gradient(
    180deg,
    var(--green-strong-top),
    var(--green-strong)
  );
  padding:28px;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}

.hero-form h2{
  margin:0 0 10px;
  text-align:center;
  font-weight:800;
  color: var(--text-on-green);
}

.hero-form form{
  display:grid;
  gap:12px;
}

.hero-form input,
.hero-form select{
  padding:12px;
  border-radius:8px;
  border:none;
  font-size:15px;
  background:#ffffff;
  color:#1f1f1f;
}

.hero-form input::placeholder{
  color:#666;
}

.hero-form input:focus,
.hero-form select:focus{
  outline:none;
  box-shadow: 0 0 0 2px rgba(212,175,55,.45);
}

/* ======================================================
   HERO TEXT (NEUTRAL)
   ====================================================== */

.hero-text{
  max-width:560px;
}

.hero-text h1{
  font-size:38px;
  line-height:1.15;
  font-weight:700;
  color: var(--text-hero);
}

.hero-text p{
  margin-top:14px;
  font-size:18px;
  line-height:1.6;
  font-weight:500;
  color: var(--text-hero);
}

.hero-text ul{
  margin-top:20px;
  padding-left:18px;
}

.hero-text li{
  margin-bottom:10px;
  font-size:17px;
  font-weight:500;
  color: var(--text-hero);
}

/* ======================================================
   BUTTONS
   ====================================================== */

.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:8px;
  font-weight:800;
  border:none;
  cursor:pointer;
}

.btn-gold{
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  color:#1f1f1f;
}

.btn.full{
  width:100%;
  text-align:center;
}

.btn.half{
  width:50%;
  text-align:center;
  margin: 0 auto;
  display: block;
}

/* ======================================================
   TOP BAR QUICK FORM
   ====================================================== */

.top-quick-form{
  display:flex;
  gap:8px;
  align-items:center;
}

.top-quick-form input{
  height:36px;
  width:120px;
  padding:6px 8px;
  border-radius:6px;
  border:none;
  font-size:14px;
  font-weight:600;
  background:#ffffff;
  color:#1f1f1f;
}

.top-quick-form input::placeholder{
  color:#777;
}

.top-quick-form input:focus{
  outline:none;
  box-shadow: 0 0 0 2px rgba(212,175,55,.35);
}

/* ======================================================
   SECTION THEMES (PASS B)
   ====================================================== */

/* STRONG GREEN — conversion / action */
.section-green-strong{
  background: linear-gradient(
    180deg,
    var(--green-strong-top),
    var(--green-strong)
  );
  color: var(--text-on-green);
}

.section-green-strong h1,
.section-green-strong h2,
.section-green-strong h3,
.section-green-strong p,
.section-green-strong li{
  color: var(--text-on-green);
}

/* SOFT GREEN — trust / framing */
.section-green-soft{
  background: linear-gradient(
    180deg,
    var(--green-soft-top),
    var(--green-soft)
  );
  color: var(--text-on-green);
}

.section-green-soft h1,
.section-green-soft h2,
.section-green-soft h3{
  color: var(--text-on-green);
}

/* LIGHT / WHITE — reading & SEO */
.section-light{
  background: var(--bg-panel);
  color: var(--text-main);
}

/* Cards inside green sections stay white */
.section-green-strong .fact-card,
.section-green-strong .service-card,
.section-green-strong .trust-card,
.section-green-soft .fact-card,
.section-green-soft .service-card,
.section-green-soft .trust-card{
  background: var(--bg-panel);
  color: var(--text-main);
}

/* ======================================================
   UNIVERSAL SECTION STRUCTURE (FINAL)
   ====================================================== */

/* ======================================================
   UNIVERSAL SECTION = CARD (FINAL)
   ====================================================== */

.section{
  max-width: 1200px;
  margin: 25px auto;
  padding: 0;              /* IMPORTANT */
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  overflow: hidden;        /* keeps header clipped */
}

.section .container{
  padding: 5px;
}


/* SECTION HEADER BAR */
.section-header{
  background: linear-gradient(
    180deg,
    var(--green-strong-top),
    var(--green-strong)
  );
  color: var(--text-on-green);

  padding: 18px 24px;

  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.section-header h2{
  margin: 0;
  font-weight: 800;
  font-size: 1.6rem;
}

/* ======================================================
   SECTION IMAGE ROW (2 IMAGE STRIP) – FINAL
   ====================================================== */

/* Header stays above everything */
.section-header{
  position: relative;
  z-index: 2;
  padding-bottom: 20px; /* physical space below header */
}

/* Image row container */
.section .section-image-row{
  display: grid;
  grid-template-columns: 1fr 1fr;   /* desktop = 2 images */
  gap: 0;
  position: relative;
  z-index: 1;

  /* visual separation inside card */
  border-top: 10px solid var(--bg-panel);
}

/* Images – SHRUNK + CONTROLLED */
.section .section-image-row img{
  width: 100%;
  max-height: 260px;               /* 👈 SHRINKED */
  height: 2260px;
  object-fit: cover;
  object-position: center top;     /* show top of image */
  display: block;
}

/* Divider between images */
.section .section-image-row img:first-child{
  border-right: 1px solid rgba(0,0,0,.08);
}

/* ======================
   MOBILE BEHAVIOUR
   ====================== */
@media (max-width: 700px){

  .section .section-image-row{
    grid-template-columns: 1fr;    /* stack on mobile */
  }

  .section .section-image-row img{
    height: 180px;
    max-height: 180px;
  }

  .section .section-image-row img:first-child{
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }
}



/* =========================
   FAQ – FORCE CARD STYLES
   ========================= */

section.faq .faq-list{
  display: grid;
  gap: 20px;
  padding: 20px;
}

section.faq .faq-card{
  background: #ffffff !important;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.15);
  box-shadow: 0 12px 28px rgba(0,0,0,.15);
  overflow: hidden;
}

section.faq .faq-question{
  background: linear-gradient(180deg,#355f54,#2f5d50) !important;
  color: #f5f7f6 !important;
  padding: 14px 18px;
  font-weight: 800;
  display: block;
}

section.faq .faq-answer{
  background: #ffffff !important;
  padding: 16px 18px;
  color: #243028;
  line-height: 1.6;
  display: block;
}

section.faq .faq-cta{
  text-align: center;
  margin-top: 12px;
}



.section-header{
  padding-bottom: 22px;
}

/* ======================================================
   AREA COVERAGE GRID (MAIN COLLECTION AREAS)
   ====================================================== */

.areas-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 20px;
  margin: 20px 0;
}

/* Individual area card */
.area-card{
  background: #ffffff;
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;

  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

/* Card text */
.area-card p{
  margin: 0;
  font-weight: 600;
  color: var(--text-main);
}

/* ======================
   TABLET
   ====================== */
@media (max-width: 900px){
  .areas-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ======================
   MOBILE
   ====================== */
@media (max-width: 600px){
  .areas-grid{
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   SERVICES GRID (3 CARDS WITH IMAGES)
   ====================================================== */

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 20px 0;
}

/* Service card */
.service-card{
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;

  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
  text-align: center;
}

/* Service image */
.service-card img{
  width: 100%;
  height: 180px;              /* controlled height */
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Card content */
.service-card h3{
  margin: 16px 14px 8px;
  font-weight: 700;
  color: var(--text-main);
}

.service-card p{
  margin: 0 14px 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ======================
   TABLET
   ====================== */
@media (max-width: 900px){
  .services-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ======================
   MOBILE
   ====================== */
@media (max-width: 600px){
  .services-grid{
    grid-template-columns: 1fr;
  }

  .service-card img{
    height: 160px;
  }
}

/* ======================================================
   VEHICLE TYPES – GREEN CARDS WITH SQUARE IMAGES
   ====================================================== */

.vehicle-type-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* all in one row */
  gap: 20px;
  margin: 22px 0;
}

/* Individual card */
.vehicle-type-card{
  background: linear-gradient(
    180deg,
    var(--green-soft-top),
    var(--green-soft)
  );
  border-radius: var(--radius);
  text-align: center;
  padding: 16px;

  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  color: var(--text-on-green);
}

/* Square image */
.vehicle-type-card img{
  width: 100%;
  aspect-ratio: 1 / 1;        /* perfect square */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
  display: block;
}

/* Text */
.vehicle-type-card p{
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-on-green);
}

/* ======================
   TABLET
   ====================== */
@media (max-width: 900px){
  .vehicle-type-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ======================
   MOBILE
   ====================== */
@media (max-width: 600px){
  .vehicle-type-grid{
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   REVIEWS GRID – WHITE TRUST CARDS
   ====================================================== */

.reviews-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 22px 0;
}

/* Individual review card */
.review-card{
  background: #ffffff;
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;

  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

/* Stars */
.review-stars{
  font-size: 2.2rem;
  margin: 0 0 10px;
}

/* Text spacing */
.review-card p{
  margin: 6px 0;
  color: var(--text-main);
}

/* ======================
   MOBILE
   ====================== */
@media (max-width: 700px){
  .reviews-grid{
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   LICENSE & COMPLIANCE – GREEN CARDS
   ====================================================== */

.license-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 22px 0;
}

/* Individual license card */
.license-card{
  background: linear-gradient(
    180deg,
    var(--green-soft-top),
    var(--green-soft)
  );
  color: var(--text-on-green);

  border-radius: var(--radius);
  padding: 20px;

  box-shadow: 0 10px 26px rgba(0,0,0,.12);
}

/* Text */
.license-card p{
  margin: 6px 0;
  color: var(--text-on-green);
  font-size: 0.95rem;
}

/* Widget card alignment */
.license-card-widget{
  display: flex;
  justify-content: center;
  align-items: center;
}

/* iframe styling */
.license-card iframe{
  width: 100%;
  max-width: 330px;
  height: 210px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 6px;
  background: #ffffff;
}

/* ======================
   TABLET
   ====================== */
@media (max-width: 900px){
  .license-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ======================
   MOBILE
   ====================== */
@media (max-width: 600px){
  .license-grid{
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   FOOTER – MATCHES HEADER STYLE
   ====================================================== */

.site-footer{
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ---------- TOP FOOTER (SOFT GREEN) ---------- */
.footer-top{
  background: linear-gradient(
    180deg,
    var(--green-soft-top),
    var(--green-soft)
  );
  padding: 18px 0;
}

/* Footer nav */
.footer-nav ul{
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav li{
  margin: 0;
}

.footer-nav a{
  color: var(--text-on-green);
  text-decoration: none;
  font-weight: 700;
  opacity: 0.95;
}

.footer-nav a:hover{
  text-decoration: underline;
  opacity: 1;
}

/* ---------- BOTTOM FOOTER (STRONG GREEN) ---------- */
.footer-bottom{
  background: linear-gradient(
    180deg,
    var(--green-strong-top),
    var(--green-strong)
  );
  padding: 26px 0 22px;
  text-align: center;
}

/* Footer text */
.footer-bottom p{
  margin: 8px 0;
  color: var(--text-on-green);
  font-size: 0.95rem;
}

/* Footer links (phone/email) */
.footer-bottom a{
  color: var(--text-on-green);
  font-weight: 700;
  text-decoration: none;
}

.footer-bottom a:hover{
  text-decoration: underline;
}

/* ---------- MOBILE ---------- */
@media (max-width: 600px){
  .footer-nav ul{
    gap: 16px;
  }

  .footer-bottom{
    padding: 22px 0 20px;
  }
}

/* ======================================================
   STICKY PHONE BUTTON – BOTTOM RIGHT (GOLD CTA)
   ====================================================== */

.sticky-phone-bar{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

/* Button */
.sticky-phone-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 20px;
  border-radius: 999px;

  background: linear-gradient(
    180deg,
    var(--gold),
    var(--gold-dark)
  );

  color: #1f1f1f; /* dark text for gold contrast */
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;

  box-shadow: 0 12px 30px rgba(0,0,0,.28);
}

/* Hover */
.sticky-phone-link:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,.35);
}

/* Active / tap */
.sticky-phone-link:active{
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

/* ======================
   MOBILE ADJUSTMENTS
   ====================== */
@media (max-width: 600px){
  .sticky-phone-bar{
    bottom: 14px;
    right: 14px;
  }

  .sticky-phone-link{
    font-size: 0.95rem;
    padding: 13px 18px;
  }
}

/* ======================================================
   FINAL CTA – CENTRED FOCUS SECTION
   ====================================================== */

.final-cta{
  text-align: center;
}

/* Constrain and centre content */
.final-cta .container{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Heading */
.final-cta h2{
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
}

/* Paragraph */
.final-cta p{
  max-width: 680px;   /* keeps lines readable */
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Button */
.final-cta .btn{
  margin-top: 10px;
}

/* ======================================================
   TESTIMONIALS – WHITE FEATURE CARDS
   ====================================================== */

.testimonial-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 22px 0;
}

/* Card */
.testimonial-card{
  background: #ffffff;
  border-radius: var(--radius);
  padding: 26px 24px;

  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
}

/* Quote styling */
.testimonial-card blockquote{
  margin: 0;
  padding: 0;
  position: relative;
}

/* Big readable text */
.testimonial-card blockquote p{
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 500;
  font-style: italic;          /* 👈 fancy */
  color: var(--text-main);
  margin: 0 0 14px;
}


/* Author */
.testimonial-card footer{
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* Decorative quote mark */
.testimonial-card blockquote::before{
  content: "“";
  position: absolute;
  top: -10px;
  left: -6px;
  font-size: 3.5rem;
  color: var(--green-light);
  font-family: Georgia, serif;
  line-height: 1;
}

/* ======================
   TABLET
   ====================== */
@media (max-width: 900px){
  .testimonial-list{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ======================
   MOBILE
   ====================== */
@media (max-width: 600px){
  .testimonial-list{
    grid-template-columns: 1fr;
  }

  .testimonial-card{
    padding: 22px 20px;
  }

  .testimonial-card blockquote p{
    font-size: 1.05rem;
  }
}

/* ======================================================
   STEPS SECTION – 3 GREEN CARDS WITH EMOJIS
   ====================================================== */

.steps-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* one row desktop */
  gap: 22px;
  margin: 22px 0;
}

/* Step card */
.step-card{
  background: linear-gradient(
    180deg,
    var(--green-soft-top),
    var(--green-soft)
  );
  color: var(--text-on-green);

  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;

  box-shadow: 0 10px 26px rgba(0,0,0,.12);
}

/* Big emoji icon */
.step-icon{
  font-size: 6rem;          /* BIG emoji */
  margin-bottom: 12px;
}

/* Step heading */
.step-card h3{
  margin: 8px 0 10px;
  font-weight: 800;
  color: var(--text-on-green);
}

/* Step text */
.step-card p{
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-on-green);
}

/* ======================
   TABLET
   ====================== */
@media (max-width: 900px){
  .steps-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ======================
   MOBILE
   ====================== */
@media (max-width: 600px){
  .steps-grid{
    grid-template-columns: 1fr;
  }

  .step-icon{
    font-size: 2.6rem;
  }
}

/* ======================================================
   TRUST SECTION – LARGE WHITE CARDS
   ====================================================== */

.trust-box-row{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 24px 0;
}

/* Trust card */
.trust-card{
  background: #ffffff;
  border-radius: var(--radius);
  padding: 28px 26px;

  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.08);
}

/* List reset */
.trust-points{
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Each trust line */
.trust-points li{
  display: flex;
  align-items: center;
  gap: 14px;

  font-size: 1.1rem;      /* BIGGER TEXT */
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-main);
}

/* Remove bottom margin on last item */
.trust-points li:last-child{
  margin-bottom: 0;
}

/* Icon */
.trust-icon{
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ======================
   TABLET / MOBILE
   ====================== */
@media (max-width: 800px){
  .trust-box-row{
    grid-template-columns: 1fr;
  }

  .trust-card{
    padding: 24px 22px;
  }

  .trust-points li{
    font-size: 1.05rem;
  }
}

/* ======================================================
   MAIN VIDEO CARD – FULL WIDTH, RESPONSIVE
   ====================================================== */

/* Video card uses existing service-card styling */
.service-video-card{
  max-width: 900px;        /* keeps it readable */
  margin: 0 auto;          /* centre the card */
}

/* Responsive video wrapper */
.video-wrapper{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;    /* modern, clean */
  overflow: hidden;
}

/* Fallback for older browsers */
@supports not (aspect-ratio: 16 / 9){
  .video-wrapper{
    padding-top: 56.25%;   /* 16:9 fallback */
  }
}

/* Iframe fills the wrapper */
.video-wrapper iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Description text */
.service-video-card p{
  margin: 16px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
}

/* ======================================================
   SECTION IMAGE ROW – BASE (CACHE SAFE)
   Desktop: 2 images
   Mobile: 1 image
   ====================================================== */

.section-image-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;

  /* SINGLE SOURCE OF TRUTH FOR HEIGHT */
  height: 260px;

  border-top: 10px solid var(--bg-panel);
}

/* Both image slots fill the row */
.section-image-row img,
.section-image-row .section-image-bg{
  width: 100%;
  height: 100%;
}

/* Primary image */
.section-image-row img{
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Secondary image container (background) */
.section-image-bg{
  background-size: cover;
  background-position: center top;
}

/* ======================================================
   DESKTOP: LOAD SECOND IMAGE PER SECTION
   (modifier classes only – no layout duplication)
   ====================================================== */

@media (min-width: 701px){

/* Intro section */
.image-intro .section-image-bg{
  background-image: url("/images/depolution.png");
}

/* FAQ section */
.image-faq .section-image-bg{
  background-image: url("/images/faq2.png");
}

/* Compliance section */
.image-compliance .section-image-bg{
  background-image: url("/images/distruction2.png");
}


}

/* ======================================================
   MOBILE: SINGLE IMAGE ONLY (SECOND NEVER LOADED)
   ====================================================== */

@media (max-width: 700px){
  .section-image-row{
    grid-template-columns: 1fr;
    height: 220px;
  }

  .section-image-bg{
    display: none;
  }
}

/* ======================================================
   MOBILE NAV (NO JS) – DESKTOP NAV HIDES ON MOBILE
   ====================================================== */

.nav-mobile{ display: none; }

/* Desktop nav stays as-is above 800px */
@media (max-width: 800px){

  /* Hide long desktop nav */
  .bar-nav .nav{
    display: none;
  }

  /* Show mobile menu */
  .nav-mobile{
    display: block;
    margin-left: auto;
  }

  .nav-mobile summary{
    list-style: none;
    cursor: pointer;

    padding: 10px 14px;
    border-radius: 10px;

    background: rgba(255,255,255,.12);
    color: var(--text-on-green);
    font-weight: 800;
    user-select: none;
  }

  .nav-mobile summary::-webkit-details-marker{
    display: none;
  }

  .nav-mobile[open] summary{
    background: rgba(255,255,255,.18);
  }

  /* Dropdown panel */
  .nav-mobile-panel{
    margin-top: 10px;
    padding: 12px;

    border-radius: 12px;
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.16);

    display: grid;
    gap: 10px;
  }

  .nav-mobile-panel a{
    color: var(--text-on-green);
    text-decoration: none;
    font-weight: 700;

    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,.10);
  }

  .nav-mobile-panel a:hover{
    background: rgba(255,255,255,.16);
    text-decoration: none;
  }

  .nav-mobile-divider{
    height: 1px;
    background: rgba(255,255,255,.20);
    margin: 6px 0;
  }
}

/* ======================================================
   TOP CONTACT BAR – MOBILE CLEANUP
   ====================================================== */

@media (max-width: 700px){

  /* Stack bar content cleanly */
  .bar-contact .bar-inner{
    justify-content: center;
    padding: 12px 0;
  }

  /* Remove left promo text */
  .bar-contact .left{
    display: none;
  }

  /* Remove phone number (sticky CTA handles calls) */
  .bar-contact .phone{
    display: none;
  }

  /* Right side becomes full width */
  .bar-contact .right{
    width: 100%;
    justify-content: center;
  }

  /* Quick form stretches nicely */
  .top-quick-form{
    width: 100%;
    justify-content: center;
  }

  .top-quick-form input{
    width: 45%;
    max-width: 160px;
  }

 
}

/* ======================================================
   TOP CONTACT BAR – MOBILE (FORCE SINGLE ROW)
   ====================================================== */

@media (max-width: 700px){

  /* Remove left promo */
  .bar-contact .left{
    display: none;
  }

  /* Remove phone (sticky CTA handles calls) */
  .bar-contact .phone{
    display: none;
  }

  /* One-row layout */
  .bar-contact .bar-inner{
    padding: 10px 0;
  }

  .bar-contact .right{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: nowrap; /* 🔒 THIS IS THE KEY */
  }

  /* Quick form stays inline */
  .top-quick-form{
    display: flex;
    flex: 1;
    gap: 6px;
  }

  .top-quick-form input{
    flex: 1;
    min-width: 0; /* prevents overflow push */
    height: 38px;
  }

  /* Button stays on same row */
  .bar-contact .btn{
    flex-shrink: 0;
    padding: 10px 12px;
    font-size: 0.85rem;
    white-space: nowrap;
  }
}

/* ======================================================
   HERO – MOBILE REORDER (TEXT FIRST, FORM SECOND)
   ====================================================== */

@media (max-width: 700px){

  /* Stack hero into one column */
  .hero-inner{
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0;
  }

  /* TEXT FIRST */
  .hero-text{
    order: 1;
    max-width: 100%;
    text-align: center;
  }

  .hero-text h1{
    font-size: 2rem;
  }

  .hero-text p{
    font-size: 1rem;
  }

  .hero-text ul{
    text-align: left;
    max-width: 420px;
    margin: 18px auto 0;
  }

  /* FORM SECOND */
  .hero-form{
    order: 2;
    max-width: 100%;
    padding: 24px;
  }

  .hero-form h2{
    font-size: 1.4rem;
  }
}

/* ======================================================
   STICKY TOP CONTACT BAR
   ====================================================== */

.bar-contact{
  position: sticky;
  top: 0;
  z-index: 1000;

  /* keeps it readable when stuck */
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

/* Prevent content hiding under sticky bar */
.hero{
  scroll-margin-top: 70px; /* adjust if bar height changes */
}

/* Mobile refinement (lighter shadow) */
@media (max-width: 700px){
  .bar-contact{
    box-shadow: 0 1px 6px rgba(0,0,0,.10);
  }
}

:root{
  /* ================= BASE ================= */
  --bg-main: #f2f3f1;
  --bg-panel: #ffffff;
  --bg-hero-texture: #e1e4df;

  /* ================= GREENS ================= */

  /* STRONG GREEN – actions & conversion */
  --green-strong-top: #355f54;
  --green-strong:     #2f5d50;

  /* SOFT GREEN – structure & navigation */
  --green-soft-top:   #3f7266;
  --green-soft:       #3a6b5e;

  /* LIGHT GREEN – trust / separators */
  --green-light:      #e3ebe7;

  /* ================= GOLD CTA ================= */
  --gold: #d4af37;
  --gold-dark: #b8962e;

  /* ================= TEXT ================= */
  --text-main: #243028;
  --text-muted: #5f6b62;
  --text-hero: #1e2a22;
  --text-on-green: #f5f7f6;

  /* ================= UI ================= */
  --border: rgba(0,0,0,.12);
  --radius: 10px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
}

.container{
  width: min(1200px, 94%);
  margin: 0 auto;
}

/* ======================================================
   HEADER BARS
   ====================================================== */

.bar{
  border-bottom: 1px solid rgba(0,0,0,.15);
}

.bar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 0;
  gap:20px;
}

/* ===== BAR 1: CONTACT (STRONG GREEN) ===== */

.bar-contact{
  background: linear-gradient(
    180deg,
    var(--green-strong-top),
    var(--green-strong)
  );
  color: var(--text-on-green);
  font-size:18px;
}

.bar-contact .left{
  font-weight:700;
}

.bar-contact .right{
  display:flex;
  gap:16px;
  align-items:center;
}

.phone{
  font-weight:800;
  font-size:20px;
  color: var(--text-on-green);
}

/* ===== BAR 2: LOGO + NAV (SOFT GREEN) ===== */

.bar-nav{
  background: linear-gradient(
    180deg,
    var(--green-soft-top),
    var(--green-soft)
  );
}

.logo{
  display:flex;
  gap:12px;
  align-items:center;
}

.logo-mark{
  width:44px;
  height:44px;
  border-radius:50%;
  background-color:#ffffff; /* or your green if preferred */
background-image: url("/favicon-32x32.png"); /* your cropped image */
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
  flex-shrink:0;
}

.logo-text span{
  display:block;
  color: var(--text-on-green);
}

.logo-name{
  font-weight:700;
  letter-spacing:.3px;
}

.logo-tag{
  font-size:12px;
  opacity:.85;
}

/* NAV */
.nav{
  display:flex;
  gap:26px;
}

.nav a{
  color: var(--text-on-green);
  text-decoration:none;
  font-weight:600;
  opacity:.9;
}

.nav a:hover{
  opacity:1;
  text-decoration:underline;
}

/* ===== BAR 3: TRUST STRIP (LIGHT GREEN) ===== */

.bar-trust{
  background: var(--green-light);
  font-size:13px;
}

.trust-inner{
  justify-content:center;
  gap:26px;
  color: var(--text-muted);
}

/* ======================================================
   HEADER → HERO SEPARATOR
   ====================================================== */

.hero-separator{
  height:4px;
  background: var(--green-soft);
  border-bottom: 1px solid rgba(0,0,0,.15);
}

/* ======================================================
   HERO
   ====================================================== */

.hero{
  position:relative;
  min-height:420px;
  background:
    repeating-linear-gradient(
      45deg,
      #e4e7e3,
      #e4e7e3 12px,
      #dfe3de 12px,
      #dfe3de 24px
    );
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
 background-image: url("/images/hero-scrap-faded.png");
  background-repeat:no-repeat;
  background-size: cover;
  background-position: center;
  opacity:0.45;
  z-index:1;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(242,243,241,1) 0%,
      rgba(242,243,241,.45) 15%,
      rgba(242,243,241,0) 32%,
      rgba(242,243,241,0) 68%,
      rgba(242,243,241,.45) 85%,
      rgba(242,243,241,1) 100%
    );
  z-index:2;
}

.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
  padding:70px 0;
  z-index:3;
}

/* ======================================================
   HERO FORM (STRONG GREEN)
   ====================================================== */

.hero-form{
  background: linear-gradient(
    180deg,
    var(--green-strong-top),
    var(--green-strong)
  );
  padding:28px;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}

.hero-form h2{
  margin:0 0 10px;
  text-align:center;
  font-weight:800;
  color: var(--text-on-green);
}

.hero-form form{
  display:grid;
  gap:12px;
}

.hero-form input,
.hero-form select{
  padding:12px;
  border-radius:8px;
  border:none;
  font-size:15px;
  background:#ffffff;
  color:#1f1f1f;
}

.hero-form input::placeholder{
  color:#666;
}

.hero-form input:focus,
.hero-form select:focus{
  outline:none;
  box-shadow: 0 0 0 2px rgba(212,175,55,.45);
}

/* ======================================================
   HERO TEXT (NEUTRAL)
   ====================================================== */

.hero-text{
  max-width:560px;
}

.hero-text h1{
  font-size:38px;
  line-height:1.15;
  font-weight:700;
  color: var(--text-hero);
}

.hero-text p{
  margin-top:14px;
  font-size:18px;
  line-height:1.6;
  font-weight:500;
  color: var(--text-hero);
}

.hero-text ul{
  margin-top:20px;
  padding-left:18px;
}

.hero-text li{
  margin-bottom:10px;
  font-size:17px;
  font-weight:500;
  color: var(--text-hero);
}

/* ======================================================
   BUTTONS
   ====================================================== */

.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:8px;
  font-weight:800;
  border:none;
  cursor:pointer;
}

.btn-gold{
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  color:#1f1f1f;
}

.btn.full{
  width:100%;
  text-align:center;
}

.btn.half{
  width:50%;
  text-align:center;
  margin: 0 auto;
  display: block;
}

/* ======================================================
   TOP BAR QUICK FORM
   ====================================================== */

.top-quick-form{
  display:flex;
  gap:8px;
  align-items:center;
}

.top-quick-form input{
  height:36px;
  width:120px;
  padding:6px 8px;
  border-radius:6px;
  border:none;
  font-size:14px;
  font-weight:600;
  background:#ffffff;
  color:#1f1f1f;
}

.top-quick-form input::placeholder{
  color:#777;
}

.top-quick-form input:focus{
  outline:none;
  box-shadow: 0 0 0 2px rgba(212,175,55,.35);
}

/* ======================================================
   SECTION THEMES (PASS B)
   ====================================================== */

/* STRONG GREEN — conversion / action */
.section-green-strong{
  background: linear-gradient(
    180deg,
    var(--green-strong-top),
    var(--green-strong)
  );
  color: var(--text-on-green);
}

.section-green-strong h1,
.section-green-strong h2,
.section-green-strong h3,
.section-green-strong p,
.section-green-strong li{
  color: var(--text-on-green);
}

/* SOFT GREEN — trust / framing */
.section-green-soft{
  background: linear-gradient(
    180deg,
    var(--green-soft-top),
    var(--green-soft)
  );
  color: var(--text-on-green);
}

.section-green-soft h1,
.section-green-soft h2,
.section-green-soft h3{
  color: var(--text-on-green);
}

/* LIGHT / WHITE — reading & SEO */
.section-light{
  background: var(--bg-panel);
  color: var(--text-main);
}

/* Cards inside green sections stay white */
.section-green-strong .fact-card,
.section-green-strong .service-card,
.section-green-strong .trust-card,
.section-green-soft .fact-card,
.section-green-soft .service-card,
.section-green-soft .trust-card{
  background: var(--bg-panel);
  color: var(--text-main);
}

/* ======================================================
   UNIVERSAL SECTION STRUCTURE (FINAL)
   ====================================================== */

/* ======================================================
   UNIVERSAL SECTION = CARD (FINAL)
   ====================================================== */

.section{
  max-width: 1200px;
  margin: 25px auto;
  padding: 0;              /* IMPORTANT */
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  overflow: hidden;        /* keeps header clipped */
}

.section .container{
  padding: 5px;
}


/* SECTION HEADER BAR */
.section-header{
  background: linear-gradient(
    180deg,
    var(--green-strong-top),
    var(--green-strong)
  );
  color: var(--text-on-green);

  padding: 18px 24px;

  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.section-header h2{
  margin: 0;
  font-weight: 800;
  font-size: 1.6rem;
}

/* ======================================================
   SECTION IMAGE ROW (2 IMAGE STRIP) – FINAL
   ====================================================== */

/* Header stays above everything */
.section-header{
  position: relative;
  z-index: 2;
  padding-bottom: 20px; /* physical space below header */
}

/* Image row container */
.section .section-image-row{
  display: grid;
  grid-template-columns: 1fr 1fr;   /* desktop = 2 images */
  gap: 0;
  position: relative;
  z-index: 1;

  /* visual separation inside card */
  border-top: 10px solid var(--bg-panel);
}

/* Images – SHRUNK + CONTROLLED */
.section .section-image-row img{
  width: 100%;
  max-height: 260px;               /* 👈 SHRINKED */
  height: 2260px;
  object-fit: cover;
  object-position: center top;     /* show top of image */
  display: block;
}

/* Divider between images */
.section .section-image-row img:first-child{
  border-right: 1px solid rgba(0,0,0,.08);
}

/* ======================
   MOBILE BEHAVIOUR
   ====================== */
@media (max-width: 700px){

  .section .section-image-row{
    grid-template-columns: 1fr;    /* stack on mobile */
  }

  .section .section-image-row img{
    height: 180px;
    max-height: 180px;
  }

  .section .section-image-row img:first-child{
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }
}



/* =========================
   FAQ – FORCE CARD STYLES
   ========================= */

section.faq .faq-list{
  display: grid;
  gap: 20px;
  padding: 20px;
}

section.faq .faq-card{
  background: #ffffff !important;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.15);
  box-shadow: 0 12px 28px rgba(0,0,0,.15);
  overflow: hidden;
}

section.faq .faq-question{
  background: linear-gradient(180deg,#355f54,#2f5d50) !important;
  color: #f5f7f6 !important;
  padding: 14px 18px;
  font-weight: 800;
  display: block;
}

section.faq .faq-answer{
  background: #ffffff !important;
  padding: 16px 18px;
  color: #243028;
  line-height: 1.6;
  display: block;
}

section.faq .faq-cta{
  text-align: center;
  margin-top: 12px;
}



.section-header{
  padding-bottom: 22px;
}

/* ======================================================
   AREA COVERAGE GRID (MAIN COLLECTION AREAS)
   ====================================================== */

.areas-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 20px;
  margin: 20px 0;
}

/* Individual area card */
.area-card{
  background: #ffffff;
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;

  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

/* Card text */
.area-card p{
  margin: 0;
  font-weight: 600;
  color: var(--text-main);
}

/* ======================
   TABLET
   ====================== */
@media (max-width: 900px){
  .areas-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ======================
   MOBILE
   ====================== */
@media (max-width: 600px){
  .areas-grid{
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   SERVICES GRID (3 CARDS WITH IMAGES)
   ====================================================== */

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 20px 0;
}

/* Service card */
.service-card{
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;

  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
  text-align: center;
}

/* Service image */
.service-card img{
  width: 100%;
  height: 180px;              /* controlled height */
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Card content */
.service-card h3{
  margin: 16px 14px 8px;
  font-weight: 700;
  color: var(--text-main);
}

.service-card p{
  margin: 0 14px 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ======================
   TABLET
   ====================== */
@media (max-width: 900px){
  .services-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ======================
   MOBILE
   ====================== */
@media (max-width: 600px){
  .services-grid{
    grid-template-columns: 1fr;
  }

  .service-card img{
    height: 160px;
  }
}

/* ======================================================
   VEHICLE TYPES – GREEN CARDS WITH SQUARE IMAGES
   ====================================================== */

.vehicle-type-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* all in one row */
  gap: 20px;
  margin: 22px 0;
}

/* Individual card */
.vehicle-type-card{
  background: linear-gradient(
    180deg,
    var(--green-soft-top),
    var(--green-soft)
  );
  border-radius: var(--radius);
  text-align: center;
  padding: 16px;

  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  color: var(--text-on-green);
}

/* Square image */
.vehicle-type-card img{
  width: 100%;
  aspect-ratio: 1 / 1;        /* perfect square */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
  display: block;
}

/* Text */
.vehicle-type-card p{
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-on-green);
}

/* ======================
   TABLET
   ====================== */
@media (max-width: 900px){
  .vehicle-type-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ======================
   MOBILE
   ====================== */
@media (max-width: 600px){
  .vehicle-type-grid{
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   REVIEWS GRID – WHITE TRUST CARDS
   ====================================================== */

.reviews-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 22px 0;
}

/* Individual review card */
.review-card{
  background: #ffffff;
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;

  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

/* Stars */
.review-stars{
  font-size: 2.2rem;
  margin: 0 0 10px;
}

/* Text spacing */
.review-card p{
  margin: 6px 0;
  color: var(--text-main);
}

/* ======================
   MOBILE
   ====================== */
@media (max-width: 700px){
  .reviews-grid{
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   LICENSE & COMPLIANCE – GREEN CARDS
   ====================================================== */

.license-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 22px 0;
}

/* Individual license card */
.license-card{
  background: linear-gradient(
    180deg,
    var(--green-soft-top),
    var(--green-soft)
  );
  color: var(--text-on-green);

  border-radius: var(--radius);
  padding: 20px;

  box-shadow: 0 10px 26px rgba(0,0,0,.12);
}

/* Text */
.license-card p{
  margin: 6px 0;
  color: var(--text-on-green);
  font-size: 0.95rem;
}

/* Widget card alignment */
.license-card-widget{
  display: flex;
  justify-content: center;
  align-items: center;
}

/* iframe styling */
.license-card iframe{
  width: 100%;
  max-width: 330px;
  height: 210px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 6px;
  background: #ffffff;
}

/* ======================
   TABLET
   ====================== */
@media (max-width: 900px){
  .license-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ======================
   MOBILE
   ====================== */
@media (max-width: 600px){
  .license-grid{
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   FOOTER – MATCHES HEADER STYLE
   ====================================================== */

.site-footer{
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ---------- TOP FOOTER (SOFT GREEN) ---------- */
.footer-top{
  background: linear-gradient(
    180deg,
    var(--green-soft-top),
    var(--green-soft)
  );
  padding: 18px 0;
}

/* Footer nav */
.footer-nav ul{
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav li{
  margin: 0;
}

.footer-nav a{
  color: var(--text-on-green);
  text-decoration: none;
  font-weight: 700;
  opacity: 0.95;
}

.footer-nav a:hover{
  text-decoration: underline;
  opacity: 1;
}

/* ---------- BOTTOM FOOTER (STRONG GREEN) ---------- */
.footer-bottom{
  background: linear-gradient(
    180deg,
    var(--green-strong-top),
    var(--green-strong)
  );
  padding: 26px 0 22px;
  text-align: center;
}

/* Footer text */
.footer-bottom p{
  margin: 8px 0;
  color: var(--text-on-green);
  font-size: 0.95rem;
}

/* Footer links (phone/email) */
.footer-bottom a{
  color: var(--text-on-green);
  font-weight: 700;
  text-decoration: none;
}

.footer-bottom a:hover{
  text-decoration: underline;
}

/* ---------- MOBILE ---------- */
@media (max-width: 600px){
  .footer-nav ul{
    gap: 16px;
  }

  .footer-bottom{
    padding: 22px 0 20px;
  }
}

/* ======================================================
   STICKY PHONE BUTTON – BOTTOM RIGHT (GOLD CTA)
   ====================================================== */

.sticky-phone-bar{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

/* Button */
.sticky-phone-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 20px;
  border-radius: 999px;

  background: linear-gradient(
    180deg,
    var(--gold),
    var(--gold-dark)
  );

  color: #1f1f1f; /* dark text for gold contrast */
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;

  box-shadow: 0 12px 30px rgba(0,0,0,.28);
}

/* Hover */
.sticky-phone-link:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,.35);
}

/* Active / tap */
.sticky-phone-link:active{
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

/* ======================
   MOBILE ADJUSTMENTS
   ====================== */
@media (max-width: 600px){
  .sticky-phone-bar{
    bottom: 14px;
    right: 14px;
  }

  .sticky-phone-link{
    font-size: 0.95rem;
    padding: 13px 18px;
  }
}

/* ======================================================
   FINAL CTA – CENTRED FOCUS SECTION
   ====================================================== */

.final-cta{
  text-align: center;
}

/* Constrain and centre content */
.final-cta .container{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Heading */
.final-cta h2{
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
}

/* Paragraph */
.final-cta p{
  max-width: 680px;   /* keeps lines readable */
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Button */
.final-cta .btn{
  margin-top: 10px;
}

/* ======================================================
   TESTIMONIALS – WHITE FEATURE CARDS
   ====================================================== */

.testimonial-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 22px 0;
}

/* Card */
.testimonial-card{
  background: #ffffff;
  border-radius: var(--radius);
  padding: 26px 24px;

  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
}

/* Quote styling */
.testimonial-card blockquote{
  margin: 0;
  padding: 0;
  position: relative;
}

/* Big readable text */
.testimonial-card blockquote p{
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 500;
  font-style: italic;          /* 👈 fancy */
  color: var(--text-main);
  margin: 0 0 14px;
}


/* Author */
.testimonial-card footer{
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* Decorative quote mark */
.testimonial-card blockquote::before{
  content: "“";
  position: absolute;
  top: -10px;
  left: -6px;
  font-size: 3.5rem;
  color: var(--green-light);
  font-family: Georgia, serif;
  line-height: 1;
}

/* ======================
   TABLET
   ====================== */
@media (max-width: 900px){
  .testimonial-list{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ======================
   MOBILE
   ====================== */
@media (max-width: 600px){
  .testimonial-list{
    grid-template-columns: 1fr;
  }

  .testimonial-card{
    padding: 22px 20px;
  }

  .testimonial-card blockquote p{
    font-size: 1.05rem;
  }
}

/* ======================================================
   STEPS SECTION – 3 GREEN CARDS WITH EMOJIS
   ====================================================== */

.steps-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* one row desktop */
  gap: 22px;
  margin: 22px 0;
}

/* Step card */
.step-card{
  background: linear-gradient(
    180deg,
    var(--green-soft-top),
    var(--green-soft)
  );
  color: var(--text-on-green);

  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;

  box-shadow: 0 10px 26px rgba(0,0,0,.12);
}

/* Big emoji icon */
.step-icon{
  font-size: 6rem;          /* BIG emoji */
  margin-bottom: 12px;
}

/* Step heading */
.step-card h3{
  margin: 8px 0 10px;
  font-weight: 800;
  color: var(--text-on-green);
}

/* Step text */
.step-card p{
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-on-green);
}

/* ======================
   TABLET
   ====================== */
@media (max-width: 900px){
  .steps-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ======================
   MOBILE
   ====================== */
@media (max-width: 600px){
  .steps-grid{
    grid-template-columns: 1fr;
  }

  .step-icon{
    font-size: 2.6rem;
  }
}

/* ======================================================
   TRUST SECTION – LARGE WHITE CARDS
   ====================================================== */

.trust-box-row{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 24px 0;
}

/* Trust card */
.trust-card{
  background: #ffffff;
  border-radius: var(--radius);
  padding: 28px 26px;

  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.08);
}

/* List reset */
.trust-points{
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Each trust line */
.trust-points li{
  display: flex;
  align-items: center;
  gap: 14px;

  font-size: 1.1rem;      /* BIGGER TEXT */
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-main);
}

/* Remove bottom margin on last item */
.trust-points li:last-child{
  margin-bottom: 0;
}

/* Icon */
.trust-icon{
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ======================
   TABLET / MOBILE
   ====================== */
@media (max-width: 800px){
  .trust-box-row{
    grid-template-columns: 1fr;
  }

  .trust-card{
    padding: 24px 22px;
  }

  .trust-points li{
    font-size: 1.05rem;
  }
}

/* ======================================================
   MAIN VIDEO CARD – FULL WIDTH, RESPONSIVE
   ====================================================== */

/* Video card uses existing service-card styling */
.service-video-card{
  max-width: 900px;        /* keeps it readable */
  margin: 0 auto;          /* centre the card */
}

/* Responsive video wrapper */
.video-wrapper{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;    /* modern, clean */
  overflow: hidden;
}

/* Fallback for older browsers */
@supports not (aspect-ratio: 16 / 9){
  .video-wrapper{
    padding-top: 56.25%;   /* 16:9 fallback */
  }
}

/* Iframe fills the wrapper */
.video-wrapper iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Description text */
.service-video-card p{
  margin: 16px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
}

/* ======================================================
   SECTION IMAGE ROW – BASE (CACHE SAFE)
   Desktop: 2 images
   Mobile: 1 image
   ====================================================== */

.section-image-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;

  /* SINGLE SOURCE OF TRUTH FOR HEIGHT */
  height: 260px;

  border-top: 10px solid var(--bg-panel);
}

/* Both image slots fill the row */
.section-image-row img,
.section-image-row .section-image-bg{
  width: 100%;
  height: 100%;
}

/* Primary image */
.section-image-row img{
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Secondary image container (background) */
.section-image-bg{
  background-size: cover;
  background-position: center top;
}

/* ======================================================
   DESKTOP: LOAD SECOND IMAGE PER SECTION
   (modifier classes only – no layout duplication)
   ====================================================== */

@media (min-width: 701px){

/* Intro section */
.image-intro .section-image-bg{
  background-image: url("/images/depolution.png");
}

/* FAQ section */
.image-faq .section-image-bg{
  background-image: url("/images/faq2.png");
}

/* Compliance section */
.image-compliance .section-image-bg{
  background-image: url("/images/distruction2.png");
}


/* ======================================================
   MOBILE: SINGLE IMAGE ONLY (SECOND NEVER LOADED)
   ====================================================== */

@media (max-width: 700px){
  .section-image-row{
    grid-template-columns: 1fr;
    height: 220px;
  }

  .section-image-bg{
    display: none;
  }
}

/* ======================================================
   MOBILE NAV (NO JS) – DESKTOP NAV HIDES ON MOBILE
   ====================================================== */

.nav-mobile{ display: none; }

/* Desktop nav stays as-is above 800px */
@media (max-width: 800px){

  /* Hide long desktop nav */
  .bar-nav .nav{
    display: none;
  }

  /* Show mobile menu */
  .nav-mobile{
    display: block;
    margin-left: auto;
  }

  .nav-mobile summary{
    list-style: none;
    cursor: pointer;

    padding: 10px 14px;
    border-radius: 10px;

    background: rgba(255,255,255,.12);
    color: var(--text-on-green);
    font-weight: 800;
    user-select: none;
  }

  .nav-mobile summary::-webkit-details-marker{
    display: none;
  }

  .nav-mobile[open] summary{
    background: rgba(255,255,255,.18);
  }

  /* Dropdown panel */
  .nav-mobile-panel{
    margin-top: 10px;
    padding: 12px;

    border-radius: 12px;
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.16);

    display: grid;
    gap: 10px;
  }

  .nav-mobile-panel a{
    color: var(--text-on-green);
    text-decoration: none;
    font-weight: 700;

    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,.10);
  }

  .nav-mobile-panel a:hover{
    background: rgba(255,255,255,.16);
    text-decoration: none;
  }

  .nav-mobile-divider{
    height: 1px;
    background: rgba(255,255,255,.20);
    margin: 6px 0;
  }
}

/* ======================================================
   TOP CONTACT BAR – MOBILE CLEANUP
   ====================================================== */

@media (max-width: 700px){

  /* Stack bar content cleanly */
  .bar-contact .bar-inner{
    justify-content: center;
    padding: 12px 0;
  }

  /* Remove left promo text */
  .bar-contact .left{
    display: none;
  }

  /* Remove phone number (sticky CTA handles calls) */
  .bar-contact .phone{
    display: none;
  }

  /* Right side becomes full width */
  .bar-contact .right{
    width: 100%;
    justify-content: center;
  }

  /* Quick form stretches nicely */
  .top-quick-form{
    width: 100%;
    justify-content: center;
  }

  .top-quick-form input{
    width: 45%;
    max-width: 160px;
  }

 
}

/* ======================================================
   TOP CONTACT BAR – MOBILE (FORCE SINGLE ROW)
   ====================================================== */

@media (max-width: 700px){

  /* Remove left promo */
  .bar-contact .left{
    display: none;
  }

  /* Remove phone (sticky CTA handles calls) */
  .bar-contact .phone{
    display: none;
  }

  /* One-row layout */
  .bar-contact .bar-inner{
    padding: 10px 0;
  }

  .bar-contact .right{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: nowrap; /* 🔒 THIS IS THE KEY */
  }

  /* Quick form stays inline */
  .top-quick-form{
    display: flex;
    flex: 1;
    gap: 6px;
  }

  .top-quick-form input{
    flex: 1;
    min-width: 0; /* prevents overflow push */
    height: 38px;
  }

  /* Button stays on same row */
  .bar-contact .btn{
    flex-shrink: 0;
    padding: 10px 12px;
    font-size: 0.85rem;
    white-space: nowrap;
  }
}

/* ======================================================
   HERO – MOBILE REORDER (TEXT FIRST, FORM SECOND)
   ====================================================== */

@media (max-width: 700px){

  /* Stack hero into one column */
  .hero-inner{
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0;
  }

  /* TEXT FIRST */
  .hero-text{
    order: 1;
    max-width: 100%;
    text-align: center;
  }

  .hero-text h1{
    font-size: 2rem;
  }

  .hero-text p{
    font-size: 1rem;
  }

  .hero-text ul{
    text-align: left;
    max-width: 420px;
    margin: 18px auto 0;
  }

  /* FORM SECOND */
  .hero-form{
    order: 2;
    max-width: 100%;
    padding: 24px;
  }

  .hero-form h2{
    font-size: 1.4rem;
  }
}

/* ======================================================
   STICKY TOP CONTACT BAR
   ====================================================== */

.bar-contact{
  position: sticky;
  top: 0;
  z-index: 1000;

  /* keeps it readable when stuck */
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

/* Prevent content hiding under sticky bar */
.hero{
  scroll-margin-top: 70px; /* adjust if bar height changes */
}

/* Mobile refinement (lighter shadow) */
@media (max-width: 700px){
  .bar-contact{
    box-shadow: 0 1px 6px rgba(0,0,0,.10);
  }
}

/* ======================================================
   MOBILE MENU – FULL WIDTH DROPDOWN (FINAL FIX)
   ====================================================== */

@media (max-width: 800px){

  /* Make bar the positioning context */
  .bar-nav{
    position: relative;
    overflow: visible;
  }

  /* Keep the button itself normal */
  .nav-mobile{
    position: static;
  }

  /* Dropdown panel spans FULL bar width */
  .nav-mobile-panel{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    width: 100%;            /* 🔑 FULL WIDTH */
    max-width: none;

    background: linear-gradient(
      180deg,
      var(--green-soft-top),
      var(--green-soft)
    );

    padding: 16px;
    border-radius: 0 0 12px 12px;

    box-shadow: 0 12px 30px rgba(0,0,0,.25);
    z-index: 2000;

    display: grid;
    gap: 12px;
  }

  /* Links fill width nicely */
  .nav-mobile-panel a{
    display: block;
    width: 100%;

    color: var(--text-on-green);
    text-decoration: none;
    font-weight: 700;

    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(255,255,255,.14);
  }

  .nav-mobile-panel a:hover{
    background: rgba(255,255,255,.22);
  }

  .nav-mobile-divider{
    height: 1px;
    background: rgba(255,255,255,.25);
    margin: 8px 0;
  }
}

/* ================= CONTACT FORM ================= */

.contact-form{
  max-width:680px;
  margin:0 auto;
  background:#ffffff;
  padding:28px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

/* form groups */
.contact-form .form-group{
  margin-bottom:18px;
}

/* labels */
.contact-form label{
  display:block;
  font-weight:700;
  font-size:18px;
  margin-bottom:6px;
  color:#243028;
}

/* inputs + textarea */
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px;
  border-radius:10px;
  border:1px solid #d6ddd9;
  font-size:15px;
  background:#f9faf9;
  transition:border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

/* focus states */
.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:var(--green-strong);
  background:#ffffff;
  box-shadow:0 0 0 3px rgba(47,93,80,0.15);
}

/* textarea specifics */
.contact-form textarea{
  resize:vertical;
  min-height:140px;
}

/* submit button spacing */
.contact-form button{
  margin-top:10px;
  font-size:15px;
}

/* mobile tweaks */
@media (max-width:640px){
  .contact-form{
    padding:22px 18px;
  }
}

.logo-tag,
.nav a,
.footer-nav a{
  color: #f5f7f6;
  opacity: 1;
}

.btn-gold{
  color:#111; /* keep dark */
}
.btn-gold:focus-visible{
  outline: 3px solid #fff; /* high contrast focus */
}
