:root {
  --color-navy-900: #000000;
  --color-navy-800: #1a1a1a;
  --color-navy-700: #2e2e2e;
  --color-teal-500: #2f9c29;
  --color-teal-600: #24801f;
  --color-coral-500: #2f9c29;
  --color-coral-600: #24801f;
  --color-coral-700: #1b6617;
  --color-bg-light: #f6f8f6;
  --color-bg-white: #ffffff;
  --color-bg-tint: #e9f7e7;
  --color-text: #111111;
  --color-text-muted: #4d4d4d;
  --color-border: #e0e0e0;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(11, 13, 10, 0.12);
  --ink: #0b0d0a;
  --ink-soft: #14170f;
  --paper: #f6f7f2;
  --paper-dim: #eceee6;
  --green: #2fa62e;
  --green-deep: #1f7a20;
  --green-bright: #57d24a;
  --radius-lg: 16px;
  --radius-md: 12px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --primary-green: #1b9a3e;
  --primary-green-hover: #157a31;
  --border-color-muted: #e2e8f0;

  /* ---- Typography ---- */
  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  /* ---- Radius & shadow ---- */
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --shadow-soft: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
  --shadow-card: 0 0.75rem 2rem rgba(0, 0, 0, 0.12);
}

/* =============== BASE =============== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg-white);
  font-size: 1rem;
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
.brand-summit,
.brand-skips {
  font-family: var(--font-display);
}

a {
  text-decoration: none;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.25rem);
  color: var(--color-navy-900);
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

.section-lead {
  color: var(--color-text-muted);
  max-width: 46rem;
  font-size: 1.0625rem;
}

section {
  scroll-margin-top: 90px;
}

/* =============== TOP UTILITY BAR =============== */
.top-bar {
  background-color: var(--color-navy-900);
  color: #cccccc;
  font-size: 0.85rem;
}
.top-bar-link {
  color: #cccccc;
}
.top-bar-link:hover {
  color: var(--color-coral-500);
}
.top-bar-hours {
  color: #999999;
}

/* =============== NAVBAR =============== */
.main-nav {
  background-color: var(--color-bg-white);
  box-shadow: var(--shadow-soft);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar-brand,
.footer-brand {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  display: inline-flex;
}
.brand-summit {
  color: var(--color-navy-900);
}
.brand-skips {
  color: var(--color-coral-500);
}

.main-nav .nav-link {
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.85rem;
  transition: color 0.2s ease;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--color-teal-600);
}

.nav-phone {
  font-weight: 700;
  color: var(--color-navy-900);
  white-space: nowrap;
}
.nav-phone:hover {
  color: var(--color-coral-500);
}

.btn-cta {
  background-color: var(--color-coral-500);
  border: 1px solid var(--color-coral-500);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-md);
  transition:
    transform 0.15s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn-cta:hover {
  background-color: var(--color-coral-600);
  border-color: var(--color-coral-600);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(47, 156, 41, 0.35);
}
.btn-arrow::after {
  content: "→";
  margin-left: 0.5rem;
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}
@keyframes gentle-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.btn-cta.book-skip-bounce {
  animation: gentle-bounce 1.8s ease-in-out infinite;
}
.btn-cta.book-skip-bounce:hover {
  animation-play-state: paused;
}
/* =============== HERO =============== */
.hero {
  position: relative;
  background-image: url("/assets/images/1235.png");
  background-size: cover;
  /* background:
    linear-gradient(
      120deg,
      rgba(0, 0, 0, 0.94) 15%,
      rgba(26, 26, 26, 0.75) 60%,
      rgba(47, 156, 41, 0.55) 100%
    ),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1600" height="900"><rect width="1600" height="900" fill="%231A1A1A"/></svg>'); */
  background-size: cover;
  background-position: center;

  color: #fff;
  padding-top: 4.5rem;
  padding-bottom: 6.5rem;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -20%;
  width: 45rem;
  height: 45rem;
  background: radial-gradient(
    circle,
    rgba(47, 156, 41, 0.35) 0%,
    rgba(47, 156, 41, 0) 70%
  );
  pointer-events: none;
}

.hero-eyebrow {
  color: var(--color-teal-500);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 1.4rem + 3vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: #dddddd;
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: #eeeeee;
}
.hero-checklist i {
  color: var(--color-coral-500);
  font-size: 1.05rem;
  margin-top: 0.15rem;
}

/* .trust-strip {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 3rem;
  padding: 1rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #EEEEEE;
}
.trust-strip i { color: var(--color-teal-500); margin-right: 0.4rem; } */

/* =============== QUOTE FLOATING CARD =============== */
.quote-section {
  margin-top: -5.5rem;
  position: relative;
  z-index: 5;
  padding-bottom: 3rem;
}

.quote-card {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2.25rem 2rem;
  max-width: 30rem;
  text-align: center;
}

.quote-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-navy-900);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.quote-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.quote-input {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  height: 100%;
}
.quote-input:focus {
  border-color: var(--color-teal-500);
  box-shadow: 0 0 0 0.2rem rgba(47, 156, 41, 0.2);
}

.quote-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 1rem 0;
}
.quote-divider::before,
.quote-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--color-border);
}
.quote-divider span {
  padding: 0 0.75rem;
}

.btn-outline-quote {
  border: 1.5px solid var(--color-border);
  color: var(--color-navy-800);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  padding: 0.55rem 0.5rem;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}
.btn-outline-quote:hover {
  border-color: var(--color-teal-500);
  background-color: var(--color-bg-tint);
  color: var(--color-teal-600);
}

/* =============== FEATURE STRIP =============== */
.feature-strip {
  background-color: var(--color-teal-600);
  color: #fff;
  padding: 1.5rem 0;
}
.feature-strip .col-6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.feature-strip i {
  font-size: 1.5rem;
}

/* =============== INTRO SECTION =============== */
.section-intro {
  padding: 4.5rem 0 3rem;
  background-color: var(--color-bg-white);
}
.section-intro .section-lead {
  margin: 0 auto;
}

/* =============== WASTE ACCEPTED/REJECTED =============== */
.section-waste {
  padding: 3rem 0 4.5rem;
  background-color: var(--color-bg-white);
}

.waste-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--color-border);
}

.waste-accepted {
  background-color: var(--color-bg-tint);
  border-color: rgba(47, 156, 41, 0.25);
}
.waste-accepted h3 {
  color: var(--color-teal-600);
}
.waste-accepted i:first-child {
  color: var(--color-teal-500);
}

.waste-rejected {
  background-color: #ff150005;
  border-color: #ff150045;
}
.waste-rejected h3 {
  color: var(--color-text);
}

.waste-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.waste-card ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.95rem;
}
.waste-accepted ul li i {
  color: var(--color-teal-500);
}
.waste-rejected ul li i {
  color: var(--color-text);
  font-weight: 700;
}

.waste-note {
  max-width: 60rem;
  background-color: #fff7e8;
  border: 1px solid #f3dfa6;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #6b5314;
}
.waste-note i {
  color: #c99a1e;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* =============== SKIP SIZES =============== */
.section-sizes {
  padding: 4.5rem 0;
  background-color: var(--color-bg-light);
}

.size-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    position: relative;
}

.size-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

/* ---- Image area ---- */
.size-img-wrap {
    width: 100%;
    background-color: var(--color-bg-light);
    border-bottom: 1px solid #f7f7f7;
    overflow: hidden;
}
.size-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.size-img-wrap1 {
    width: 100%;
    border-bottom: 1px solid #f7f7f7;
    overflow: hidden;
}
.size-img-wrap1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
 .size-body {
        padding: 1.25rem 1.25rem 1.5rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        }

        .size-badge {
        display: inline-block;
        background-color: var(--color-bg-tint);
        color: var(--color-teal-600);
        font-weight: 700;
        font-size: 0.8rem;
        padding: 0.25rem 0.65rem;
        border-radius: 2rem;
        margin-bottom: 0.75rem;
        width: fit-content;
        }

        .size-card h3 {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 1.15rem;
        line-height: 1.3;
        color: var(--color-navy-900);
        margin-bottom: 0.6rem;
        }

        .size-label {
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--color-text-muted);
        font-weight: 700;
        font-size: 0.72rem;
        margin-bottom: 0.35rem;
        }

        .size-desc {
        font-size: 0.85rem;
        color: var(--color-text-muted);
        margin-bottom: 1rem;
        }

        .size-bags {
        display: inline-flex;
        align-items: center;
        width: fit-content;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--color-navy-800);
        background-color: var(--color-bg-light);
        border: 1px solid var(--color-border);
        border-radius: 2rem;
        padding: 0.3rem 0.75rem;
        margin-bottom: 0.9rem;
        }
        .size-bags i {
        color: var(--color-teal-500);
        margin-right: 0.35rem;
        }

        .size-divider {
        border: none;
        border-top: 1px solid var(--color-border);
        margin: 0 0 1rem;
        }

        .size-footer {
        margin-top: auto;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 0.5rem;
        flex-wrap: wrap;
        }

        .size-price-wrap {
        line-height: 1.1;
        }
        .size-from {
        display: block;
        font-size: 0.75rem;
        color: var(--color-text-muted);
        }
        .size-price {
        display: block;
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 1.4rem;
        color: var(--color-navy-900);
        }

        .size-link {
        font-weight: 700;
        font-size: 0.85rem;
        color: var(--color-coral-600);
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        transition: color 0.2s ease;
        white-space: nowrap;
        }
        .size-link i {
        transition: transform 0.2s ease;
        }
        .size-link:hover {
        color: var(--color-coral-700);
        }
        .size-link:hover i {
        transform: translateX(0.3rem);
        }

        @media (max-width: 575.98px) {
        .size-body {
            padding: 1rem 1rem 1.25rem;
        }
        .size-card h3 {
            font-size: 1.05rem;
        }
        .size-price {
            font-size: 1.2rem;
        }
        .size-footer {
            align-items: center;
        }
        }

        .roro-card {
        background-color: var(--color-navy-900);
        color: #fff;
        border-radius: var(--radius-lg);
        padding: 2rem;
        margin-top: 1rem;
        }
        .roro-tag {
        display: inline-block;
        background-color: rgba(47, 156, 41, 0.2);
        color: var(--color-teal-500);
        font-weight: 700;
        font-size: 0.75rem;
        letter-spacing: 0.04em;
        padding: 0.25rem 0.65rem;
        border-radius: 2rem;
        margin-bottom: 0.6rem;
        }
        .roro-card h3 {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        }
        .roro-card p {
        color: #cccccc;
        font-size: 0.9rem;
        }
        .roro-call-label {
        color: #999999;
        font-size: 0.85rem;
        }

/* =============== WHY US =============== */
.section-why {
  background-color: var(--color-navy-900);
  padding: 4.5rem 0;
}

.why-card {
  background-color: var(--color-navy-800);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: transform 0.2s ease;
}
.why-card:hover {
  transform: translateY(-6px);
}

.why-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  background-color: rgba(47, 156, 41, 0.18);
  color: var(--color-teal-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.why-card h3 {
  font-family: var(--font-display);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.why-card p {
  color: #bbbbbb;
  font-size: 0.9rem;
  margin: 0;
}

/* =============== AREAS WE COVER =============== */
.section-areas {
  padding: 4.5rem 0;
  background-color: var(--color-bg-white);
}

.area-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-navy-800);
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
  height: 100%;
}
.area-pill i {
  color: var(--color-teal-500);
  transition: color 0.2s ease;
}
.area-pill:hover {
  background-color: var(--color-teal-600);
  border-color: var(--color-teal-600);
  color: #fff;
}
.area-pill:hover i {
  color: #fff;
}
.area-pill-more {
  border-style: dashed;
}

/* =============== REVIEWS =============== */
.section-reviews {
  padding: 4.5rem 0;
  background-color: var(--color-bg-light);
}

.reviews-google-icon {
  color: #4285f4;
  font-size: 1.1rem;
}
.reviews-source {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.review-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: 100%;
}
.review-stars {
  color: #f5a623;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.review-card p {
  font-size: 0.92rem;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-navy-900);
}
.review-author small {
  display: block;
  font-weight: 500;
  color: var(--color-text-muted);
}
.review-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: var(--color-teal-500);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* =============== FAQ =============== */
.section-faq {
  padding: 4.5rem 0;
  background-color: var(--color-bg-white);
}

.accordion-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  margin-bottom: 0.85rem;
}
.accordion-button {
  font-weight: 700;
  color: var(--color-navy-900);
  font-family: var(--font-display);
  font-size: 1rem;
}
.accordion-button:not(.collapsed) {
  color: var(--color-teal-600);
  background-color: var(--color-bg-tint);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(47, 156, 41, 0.2);
}
.accordion-body {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

/* =============== BOTTOM CTA BANNER =============== */
.section-cta {
  background: linear-gradient(
    120deg,
    var(--color-teal-600),
    var(--color-navy-800)
  );
  padding: 3.5rem 0;
  color: #fff;
}
.section-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
}
.btn-cta-alt {
  background-color: #fff;
  color: var(--color-navy-900);
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 1px solid #fff;
  transition: transform 0.15s ease;
}
.btn-cta-alt:hover {
  transform: translateY(-2px);
  color: var(--color-navy-900);
}
.btn-outline-alt {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-md);
  background: transparent;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}
.btn-outline-alt:hover {
  background-color: #fff;
  color: var(--color-navy-900);
}

/* =============== FOOTER =============== */
.site-footer {
  background-color: var(--color-navy-900);
  color: #bbbbbb;
  padding: 4rem 0 1.5rem;
}
.footer-brand {
  margin-bottom: 1rem;
}
.footer-about {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 20rem;
}

.footer-social a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.footer-social a:hover {
  background-color: var(--color-teal-500);
}

.footer-heading {
  font-family: var(--font-display);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-links li {
  margin-bottom: 0.55rem;
}
.footer-links a {
  color: #bbbbbb;
  font-size: 0.9rem;
  display: inline-block;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.footer-links a:hover {
  color: var(--color-teal-500);
  transform: translateX(0.2rem);
}

.footer-contact li {
  margin-bottom: 0.9rem;
  display: flex;
  flex-direction: column;
}
.footer-contact strong {
  color: #fff;
  font-size: 0.85rem;
}
.footer-contact a {
  color: var(--color-teal-500);
  font-weight: 600;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.12);
  margin: 2rem 0 1.25rem;
}
.footer-bottom {
  font-size: 0.85rem;
  color: #888888;
}

/* =============== WHATSAPP FAB =============== */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.25rem;
  height: 3.25rem;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: transform 0.2s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  color: #fff;
}

/* =============== ACCESSIBILITY: FOCUS STATES =============== */
a:focus-visible,
button:focus-visible,
.form-control:focus-visible {
  outline: 3px solid var(--color-teal-500);
  outline-offset: 2px;
}

/* =============== RESPONSIVE BREAKPOINTS =============== */

/* Extra small phones: 320px - 374px */
@media (max-width: 374.98px) {
  .hero {
    padding-top: 3rem;
    padding-bottom: 5rem;
  }
  .quote-card {
    padding: 1.5rem 1.25rem;
  }
  .section-title {
    font-size: 1.35rem;
  }
}

/* Small phones: 375px - 424px */
@media (min-width: 375px) and (max-width: 424.98px) {
  .hero-title {
    font-size: 1.85rem;
  }
}

/* Larger phones: 425px - 575px */
@media (min-width: 425px) and (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }
}

/* Small devices / landscape phones: up to 767px */
@media (max-width: 767.98px) {
  .top-bar {
    display: none;
  }
  .quote-section {
    margin-top: -4rem;
  }
  .roro-card {
    text-align: center;
  }
  .roro-card .text-md-end {
    text-align: center !important;
    margin-top: 1rem;
  }
  .section-intro,
  .section-waste,
  .section-sizes,
  .section-why,
  .section-areas,
  .section-reviews,
  .section-faq {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* Tablets: 768px - 991px */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .quote-card {
    max-width: 26rem;
  }
}

/* Small desktops / iPads landscape: 992px - 1199px */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .main-nav .nav-link {
    padding: 0.5rem 0.55rem;
    font-size: 0.9rem;
  }
}

/* Large desktops: 1200px - 1399px */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hero-title {
    font-size: 3rem;
  }
}

/* Extra large desktops: 1400px+ */
@media (min-width: 1400px) {
  .quote-card {
    max-width: 32rem;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: "IBM Plex Mono", monospace;
}

.text-green {
  color: var(--color-teal-500);
}

/* TRUST STRIP */
.trust-strip {
  background:
    linear-gradient(
      120deg,
      rgba(0, 0, 0, 0.94) 15%,
      rgba(26, 26, 26, 0.75) 60%,
      rgba(47, 156, 41, 0.55) 100%
    ),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1600" height="900"><rect width="1600" height="900" fill="%231A1A1A"/></svg>');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 0.9rem 0;
  /* border-bottom:1px solid var(--line); 
  border-top:1px solid var(--line); */
  overflow: hidden;
}
.trust-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: scroll 22s linear infinite;
  width: max-content;
}
.trust-track span {
  /* font-family:'IBM Plex Mono',monospace;  */
  font-size: 0.8rem;
  font-weight: 600;
  color: #eeeeee;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-track i {
  color: var(--color-teal-500);
  font-size: 1.05rem;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .trust-track {
    animation: none;
  }
}

/* BOOKING FORM */
.booking-section {
  /*background: var(--color-bg-light);*/
  background: var(--color-navy-900);
  color: var(--color-text);
  padding: 5.5rem 0;
}
.booking-wrap {
  background: var(--color-bg-white);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  scroll-margin-top: 100px;
}
.step-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.step-pill {
  flex: 1 1 auto;
  min-width: 120px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: default;
  transition: 0.2s;
}
.step-pill .num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  flex-shrink: 0;
}
.step-pill.active {
  border-color: var(--green);
  color: #fff;
  background: rgba(47, 166, 46, 0.12);
}
.step-pill.active .num {
  background: var(--green);
  color: #08140a;
}
.step-pill.done {
  color: var(--green-bright);
}
.step-pill.done .num {
  background: var(--green-deep);
  color: #fff;
}

.form-panel {
  display: none;
}
.form-panel.active {
  display: block;
  animation: fadein 0.35s ease;
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-wrap .form-control,
.booking-wrap .form-select {
  background: #ffffff;
  border: 1px solid #dfe3d9;
  color: var(--color-text);
  padding: 0.75rem 1rem;
  border-radius: 10px;
}
.booking-wrap .form-control::placeholder {
  color: var(--color-text-muted);
  opacity: 0.7;
}
.booking-wrap .form-control:focus,
.booking-wrap .form-select:focus {
  background: #ffffff;
  color: var(--color-text);
  border-color: var(--green);
  box-shadow: 0 0 0 0.2rem rgba(47, 166, 46, 0.2);
}
.booking-wrap label {
  font-size: 0.85rem;
  color: var(--color-navy-800);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.select-card {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1.1rem;
  cursor: pointer;
  height: 100%;
  transition: 0.15s;
  background: #ffffff;
  color: var(--color-text);
}
.select-card:hover {
 border-color: rgba(47, 166, 46, 0.5);
  box-shadow: var(--shadow-soft);
}
.select-card.selected {
 border-color: var(--green);
  background: rgba(47, 166, 46, 0.1);
  box-shadow: 0 0 0 1px var(--green) inset;
}
.select-card h6 {
  font-family: "Space Grotesk";
  margin-bottom: 0.2rem;
  color: var(--color-navy-900);
}
.select-card .p {
  color: var(--green-deep);
  font-weight: 700;
  font-family: "IBM Plex Mono", monospace;
}
.select-card small {
   color: var(--color-text-muted);
}

.summary-box {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1.3rem 1.5rem;
}
.summary-box-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-bottom: 0.6rem;
}
.summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2.5rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: 0.92rem;
  color: var(--color-navy-800);
}
.summary-row:last-child {
  border-bottom: none;
}
.summary-total-row {
  border-top: 1px solid var(--color-border);
  border-bottom: none;
  margin-top: 0.4rem;
}
.summary-total {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-deep);
  font-family: "Space Grotesk";
}

.wizard-nav-btns {
  display: flex;
  justify-content: space-between;
  margin-top: 1.8rem;
}
.form-check-card {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  background: #ffffff;
  color: var(--color-text);
}
.form-check-card.selected {
  border-color: var(--green);
  background: rgba(47, 166, 46, 0.1);
}

.section-eyebrow {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--green-deep);
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-eyebrow::before {
  content: "→";
  color: var(--green);
}
.bg-ink {
  background: var(--ink);
  color: #fff;
}
.bg-ink .section-eyebrow {
  color: var(--green-bright);
}
.text-green {
  color: var(--green);
}

.why-card1 {
  padding: 2rem 1.5rem;
}
.why-icon1 {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.section-services {
  padding: 5rem 0;
  background: var(--color-bg-light);
}

.btn-outline-quote {
  border: 1.5px solid var(--color-border);
  color: var(--color-navy-800);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  padding: 0.55rem 0.5rem;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.text-green {
  color: var(--green);
}
footer a {
  color: rgba(255, 255, 255, 0.65);
}

.btn-outline-alt-custo {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  border-radius: var(--radius-md);
  background: transparent;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}
.btn-outline-alt-custo:hover {
  background-color: #fff;
  color: var(--color-navy-900);
}

/* -------------------- about us ============ */
.hero-image-placeholder {
  background: linear-gradient(135deg, #112917 0%, #07120a 100%);
  border: 1px solid rgba(27, 154, 62, 0.2);
  border-radius: var(--radius-lg);
  min-height: 400px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.placeholder-glow-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  max-width: 80%;
}
.our-story-section {
  padding: 4rem 0;
  background: var(--color-bg-light);
}

.story-image-placeholder {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  border-radius: var(--radius-lg);
  min-height: 450px;
  box-shadow: var(--shadow-subtle);
}

.experience-badge-floating {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background-color: var(--primary-green);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(27, 154, 62, 0.3);
}

.story-highlight-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
}

.story-highlight-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-green);
}

.card-icon-wrap i {
  font-size: 1.5rem;
  color: var(--primary-green);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.custom-accordion .accordion-item {
  border: 1px solid var(--border-color-muted) !important;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
}

.custom-accordion .accordion-button {
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: none !important;
  background-color: #ffffff;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-green);
  background-color: #f8fafc;
}

.counter-box {
  background-color: var(--color-bg-light);
  border-radius: var(--radius-md);
  padding: 1rem 0.5rem;
  border: 1px solid var(--border-color-muted);
}
.mission-section {
  padding: 5rem 0;
  background: var(--color-bg-light);
}
.mission-image-placeholder {
  background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
  border-radius: var(--radius-lg);
  min-height: 400px;
  position: relative;
}

.inner-badge-overlay {
  position: absolute;
  top: 30px;
  left: -30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color-muted);
}

/* =============== AREAS PAGE — REGION GROUPS =============== */
.region-block {
  margin-bottom: 3rem;
}
.region-block:last-child {
  margin-bottom: 0;
}
.region-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.region-heading .region-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--color-bg-tint);
  color: var(--color-teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.region-heading h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-navy-900);
  margin: 0;
}
.region-heading .region-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background-color: var(--color-teal-500);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

/* =============== CONTACT PAGE =============== */
.section-contact {
  padding: 5rem 0;
  background-color: var(--color-bg-white);
}
.contact-info-card {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  height: 100%;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-card .contact-icon {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--color-teal-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-navy-900);
  margin-bottom: 0.3rem;
}
.contact-info-card p,
.contact-info-card a {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}
.contact-info-card a:hover {
  color: var(--color-teal-600);
}

.contact-form-card {
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2.25rem;
}
.contact-form-card .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-navy-900);
  margin-bottom: 0.4rem;
}
.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--color-teal-500);
  box-shadow: 0 0 0 0.2rem rgba(47, 156, 41, 0.15);
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  height: 100%;
  min-height: 320px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

.contact-side-panel {
  background-color: var(--color-navy-900);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  color: #fff;
  height: auto;
}
.contact-side-panel h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: #fff;
}
.contact-side-panel ul {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}
.contact-side-panel ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}
.contact-side-panel ul li:last-child {
  border-bottom: none;
}
.contact-side-panel ul li i {
  color: var(--color-teal-500);
  font-size: 1.1rem;
  margin-top: 0.1rem;
}
.contact-highlight-box {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}
.contact-highlight-box .highlight-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}
.contact-highlight-box .highlight-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  display: block;
  margin-bottom: 1rem;
}
.contact-highlight-box .highlight-phone:hover {
  color: var(--color-teal-500);
}
.page-banner {
  background: linear-gradient(
    120deg,
    var(--color-navy-900) 40%,
    var(--color-teal-600) 140%
  );
  padding: 4rem 0 3.5rem;
  color: #fff;
}
.page-banner .breadcrumb-nav {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
}
.page-banner .breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.85);
}
.page-banner .breadcrumb-nav a:hover {
  color: var(--color-teal-500);
}
.page-banner h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 1.4rem + 2vw, 3rem);
  margin-bottom: 0.75rem;
}
.page-banner p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 42rem;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.hero-gr-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  margin-top: 1.25rem;
}
.hero-gr-badge .g-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}
.hero-gr-badge .txt {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.hero-rating-stars {
  color: #ffc53d;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

/* ================================= */

/* Base Wrapper for the section */
.steps-container {
  width: 100%;
  max-width: 1100px;
}

/* Glassmorphism Dark Box Panel */
.steps-box {
  background: rgb(0 0 0 / 93%);
  /* backdrop-filter: blur(21px); */
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgb(255 255 255 / 17%);
  border-radius: 20px;
  padding: 35px 40px 40px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}

/* Individual Column Wrapper */
.step-item {
  position: relative;
  display: flex;
  align-items: flex-start;
}

/* Step Content grouping */
.step-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

/* Custom SVG Size Controls */
.step-icon svg {
  height: 25px;
  width: auto;
  display: block;
}

/* Typography styles */
.step-title {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.step-desc {
  color: #a0a0a0;
  font-size: 0.71rem;
  margin-bottom: 0;
  font-weight: 400;
}

/* Right Side Absolute Positioned Connecting Arrows */
.step-arrow-line {
  position: absolute;
  right: 2px;
  top: 0px;
  width: 100px;
  height: 20px;
  z-index: 1;
  pointer-events: none;
}

/* Responsive Custom Adjustments */
@media (max-width: 1200px) {
  .step-arrow-line {
    width: 80px;
    right: -5px;
  }
}

@media (max-width: 991.98px) {
  /* Stack components cleanly on mobile */
  .step-content {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .steps-box {
    padding: 40px 24px;
  }

  /* Adds subtle dividers between items when stacked vertically */
  .step-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 25px;
  }
}

.col-lg-5.col-xl-6.image-col.position-relative {
  display: flex;
  align-items: end;
}
.step-icon.mb-3 {
  margin-left: 2rem;
}

/* =============================================
   BOOKING WIZARD — additions for live postcode
   check, address dropdown, instant price, duration
============================================= */
.postcode-status {
  font-size: 0.85rem;
  font-weight: 600;
  min-height: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.postcode-status.checking {
    color: var(--color-text-muted);
}
.postcode-status.success {
  color: var(--green-bright);
}
.postcode-status.error {
  color: #ff6b5e;
}
.postcode-status .pc-checking i {
  display: inline-block;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.select-card {
  position: relative;
}
.select-card-tag {
  position: absolute;
  top: -10px;
  right: 0.9rem;
  background: var(--green);
  color: #08140a;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  font-weight: 700;
}

.live-price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(47, 166, 46, 0.1);
  border: 1px solid rgba(47, 166, 46, 0.4);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  font-size: 0.92rem;
color: var(--color-navy-900);
}
.live-price-amount {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  color: var(--green-deep);
  font-size: 1.1rem;
}

.duration-card {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem 0.9rem;
  text-align: center;
  cursor: pointer;
  transition: 0.15s;
  background: #ffffff;
}
.duration-card:hover {
  border-color: rgba(47, 166, 46, 0.5);
  box-shadow: var(--shadow-soft);
}
.duration-card.selected {
  border-color: var(--green);
  background: rgba(47, 166, 46, 0.1);
  box-shadow: 0 0 0 1px var(--green) inset;
}
.duration-card strong {
  display: block;
  font-family: var(--font-display);
  color: var(--color-navy-900);
  margin-bottom: 0.35rem;
}
.duration-card .duration-tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
 color: var(--green-deep);
}
.duration-card .duration-price {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* step-pill: 8 steps, tighten on smaller screens */
@media (max-width: 767px) {
  .step-pill {
    min-width: 90px;
    font-size: 0.62rem;
    padding: 0.55rem 0.6rem;
  }
}

/* =============================================
   AREAS WE COVER — West Yorkshire map visual
============================================= */
.area-list {
  margin: 1.25rem 0 1.5rem;
}
.area-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-weight: 600;
  color: var(--color-navy-800);
  font-size: 0.98rem;
}
.area-list li i {
  color: var(--color-teal-500);
}
.area-list-more {
  color: var(--color-text-muted) !important;
  font-weight: 500 !important;
  font-size: 0.88rem !important;
  padding-left: 1.9rem !important;
}

.map-card {
  position: relative;
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 640 / 460;
}
.map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.map-pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid #0b0d0a;
  box-shadow: 0 0 0 4px rgba(47, 166, 46, 0.25);
  display: block;
}
.map-pin-dot-sm {
  width: 10px;
  height: 10px;
}
.map-pin-label {
  background: rgba(11, 13, 10, 0.85);
  border: 1px solid var(--line);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .map-pin-label {
    font-size: 0.62rem;
    padding: 0.15rem 0.45rem;
  }
  .map-pin-dot {
    width: 10px;
    height: 10px;
  }
}

/* =============================================
   CHECK PRICES IN YOUR AREA — light card above wizard
============================================= */
.check-prices-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  max-width: 1080px;
}
.check-prices-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-navy-900);
  margin-bottom: 0.4rem;
}
.check-prices-sub {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}
.check-prices-input {
  border: 1px solid #dfe3d9;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}
.check-prices-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 0.2rem rgba(47, 166, 46, 0.15);
}
.feature-icons-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.feature-icon-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 1 1 0;
  min-width: 0;
}
.feature-icon-item i {
  font-size: 1.05rem;
  color: var(--green-deep, var(--green));
  flex-shrink: 0;
}
.feature-icon-item strong {
  display: block;
  font-size: 0.76rem;
  color: var(--color-navy-800);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feature-icon-item small {
  display: block;
  font-size: 0.68rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.check-prices-map {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 400/220;
  min-height: 180px;
}
.map-svg-light {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map-pin-static {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  background: var(--color-navy-900, #16241a);
  transform-origin: bottom;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}
.map-pin-static i {
  transform: rotate(45deg);
}

.coverage-result-card {
  position: absolute;
  top: 35px;
  right: 12px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(4px);
  border: 1px solid #e7ebe2;
  border-radius: 14px;
  padding: 1rem 1.15rem;
  box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.35);
  width: min(240px, calc(100% - 24px));
}
.coverage-result-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--color-navy-900);
  margin-bottom: 0.6rem;
}
.coverage-result-head i {
  color: var(--green);
  font-size: 1.1rem;
}
.coverage-result-head.error i {
  color: #e0574a;
}
.coverage-result-postcode {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  color: var(--color-navy-800);
  margin-bottom: 0.75rem;
}
.coverage-result-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}
.coverage-result-delivery {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--color-navy-800);
  margin: 0.2rem 0 0.8rem;
}
.coverage-result-delivery i {
  color: var(--green-deep, var(--green));
}
.coverage-result-change {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-deep, var(--green));
}

/* =============================================
   WIZARD — heading, step-line-nav (circle+connector)
============================================= */
.booking-wrap {
  max-width: 1080px;
}
.wizard-heading {
  color: var(--color-navy-900);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.step-line-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  margin-bottom: 0.5rem;
  scrollbar-width: none;
}
.step-line-nav::-webkit-scrollbar {
  display: none;
}
.step-node {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  cursor: default;
  opacity: 0.45;
}
.step-node.active,
.step-node.done {
  opacity: 1;
  cursor: pointer;
}
.step-node-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #eef1ec;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: 0.2s;
}
.step-node.active .step-node-circle {
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
}
.step-node.done .step-node-circle {
  background: var(--green-deep, var(--green));
  border-color: var(--green-deep, var(--green));
  color: #fff;
}
.step-node-label {
  font-size: 0.9rem;
  color: var(--color-navy-800);
  white-space: nowrap;
  font-weight: 600;
}
.step-node:not(.active):not(.done) .step-node-label {
  color: var(--color-text-muted);
}
.step-connector {
  width: 25px;
  height: 1px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* =============================================
   WIZARD — horizontal scrolling columns
============================================= */
.wizard-columns {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-behavior: smooth;
}
.wizard-col {
  flex: 0 0 260px;
  padding: 0 1.25rem;
  border-right: none;
}
.wizard-col-wide {
  flex-basis: 420px;
}
.wizard-col-review {
  flex-basis: 640px;
}
.wizard-col:first-child {
  padding-left: 0;
}
.wizard-col-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-navy-900);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.wizard-col-hint {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.wizard-chevron-sep {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-border);
  font-size: 1.1rem;
  padding-top: 2.2rem;
}
.postcode-readonly-box {
  position: relative;
}
.postcode-readonly-box input {
  padding-right: 2.4rem;
  cursor: default;
}
.postcode-readonly-box i {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green-bright, var(--green));
}
.size-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.duration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.placement-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wizard-bottom-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid var(--color-border);
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.wizard-bottom-total {
  font-weight: 600;
  color: var(--color-navy-800);
}
.wizard-bottom-total strong {
  color: var(--green-deep, var(--green));
  font-family: "IBM Plex Mono", monospace;
  margin-left: 0.35rem;
}
.wizard-bottom-secure {
  color: var(--color-text-muted);
}
@media (max-width: 767px) {
  .wizard-col {
    flex-basis: 220px;
    padding: 0 0.9rem;
  }
  .wizard-col-wide {
    flex-basis: 300px;
  }
  .wizard-col-review {
    flex-basis: 320px;
  }
  .check-prices-card {
    padding: 1.4rem;
  }
  .summary-grid {
    grid-template-columns: 1fr;
  }
  .coverage-result-card {
    padding: 0.8rem 0.9rem;
    bottom: 8px;
    right: 8px;
    width: min(200px, calc(100% - 16px));
  }
  .feature-icons-row {
    gap: 0.4rem;
  }
  .feature-icon-item strong {
    font-size: 0.68rem;
  }
  .feature-icon-item small {
    font-size: 0.6rem;
  }
}

.wizard-columns::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.wizard-columns::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.wizard-columns::-webkit-scrollbar-thumb {
  background: #2f9c29;
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}

.wizard-columns::-webkit-scrollbar-thumb:hover {
  background: #2f9c29;
}

@media (max-width: 767.98px) {
  /* Check price input + button: full-width, stacked cleanly */
  .check-prices-card .d-flex.flex-column.flex-sm-row {
    width: 100%;
  }
  #checkPricesBtn {
    width: 100%;
  }
  .feature-icon-item small {
    display: none;
  }
  .feature-icon-item strong {
    font-size: 0.72rem;
    white-space: normal;
  }
  .check-prices-map {
    min-height: 210px;
    aspect-ratio: auto;
  }
  .booking-wrap {
    overflow-x: hidden;
    max-width: 100%;
  }

  .booking-wrap {
    padding: 1.4rem 1.1rem;
  }
}

@media (max-width: 380px) {
  .feature-icon-item strong {
    font-size: 0.66rem;
  }
}
/* =============== WASTE GUIDE PAGE =============== */
.section-story {
    padding: 5rem 0;
    background-color: var(--color-bg-white);
}
.waste-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}
.waste-type-card {
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.waste-type-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.waste-type-card .wt-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background-color: var(--color-bg-tint);
  color: var(--color-teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.waste-type-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-navy-900);
  margin-bottom: 0.4rem;
}
.waste-type-card p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
}
.waste-type-card .wt-examples {
  font-size: 0.78rem;
  color: var(--color-teal-600);
  font-weight: 600;
}

.surcharge-list {
  background-color: #fff7e8;
  border: 1px solid #f3dfa6;
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
}
.surcharge-list h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-navy-900);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.surcharge-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem;
}
.surcharge-list ul li {
  font-size: 0.9rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.surcharge-list ul li i {
  color: #d99a1b;
}

.loading-tip {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
}
.loading-tip:last-child {
  border-bottom: none;
}
.loading-tip .lt-num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: var(--color-navy-900);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.loading-tip h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-navy-900);
  margin-bottom: 0.3rem;
}
.loading-tip p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* =============== HOW IT WORKS — PROCESS TIMELINE =============== */
.process-timeline {
  position: relative;
  max-width: 62rem;
  margin: 0 auto;
}
.process-timeline::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--color-border) 0, var(--color-border) 8px, transparent 8px, transparent 16px);
}
@media (min-width: 768px) {
  .process-timeline::before {
    left: 50%;
    transform: translateX(-1px);
  }
}
.process-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.process-item:last-child {
  margin-bottom: 0;
}
.process-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--color-teal-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--color-bg-white);
  z-index: 2;
}
.process-content {
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  flex: 1;
}
.process-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-navy-900);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.process-content h3 i {
  color: var(--color-teal-500);
}
.process-content p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin: 0;
}
@media (min-width: 768px) {
  .process-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .process-item:nth-child(even) .process-content {
    text-align: right;
  }
  .process-item:nth-child(even) .process-content h3 {
    justify-content: flex-end;
  }
  .process-num {
    margin: 0 auto;
  }
}

/* =============== AFTER DELIVERY INFO STRIP =============== */
.info-strip-card {
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  height: 100%;
  text-align: center;
}
.info-strip-card .isc-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background-color: var(--color-bg-tint);
  color: var(--color-teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}
.info-strip-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-navy-900);
  margin-bottom: 0.4rem;
}
.info-strip-card p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin: 0;
}

/* =====================================================================
   STEP-BY-STEP WIZARD — centered, one step at a time, Prev/Next nav
   Replaces the old horizontal-scrolling carousel (all panels used to
   stay in the DOM side-by-side). Now only the active panel is shown,
   it's centered in the card, and Previous/Next buttons move between
   steps that have already been unlocked.
===================================================================== */
.wizard-columns {
  display: block;
  overflow: visible;
  padding-bottom: 0;
}
.wizard-col {
  display: none;
  flex: none;
  width: 100%;
  max-width: 485px;
  margin: 35px auto;
  padding: 0;
}
.wizard-col.active { 
    display: block;
    border: 1px solid #dfe3d9;
    border-radius: 20px;
    padding: 20px;
}
.booking-wrap input[type="date"] {
  color-scheme: light;
}
.booking-wrap input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 1;
  cursor: pointer;
  filter: invert(0) brightness(0);
}
.wizard-col-wide.active { max-width: 480px; }
.wizard-col-review.active { max-width: 680px; }
.wizard-chevron-sep { display: none !important; }

.wizard-prevnext-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.btn-wizard-prev,
.btn-wizard-next {
  border-radius: 10px;
  padding: 0.65rem 1.35rem;
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-navy-800);
  cursor: pointer;
  transition: 0.2s;
}
.btn-wizard-prev:hover { background: var(--color-bg-light); color: var(--color-navy-900); }
.btn-wizard-next {
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
  margin-left: auto;
}
.btn-wizard-next:hover { background: var(--green-deep, var(--green)); }
.btn-wizard-next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.wizard-nav-hidden { visibility: hidden; }

@media (max-width: 767.98px) {
  .wizard-prevnext-bar { max-width: 100%; }
}
input[type="date"] {
    position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 10px;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: transparent;
}
.text-success {
    --bs-text-opacity:1;
    color: rgb(47 156 41) !important;
}
