@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap");

/* ==========================================================================
   UNIVERSE BINS — DESIGN SYSTEM
   --------------------------------------------------------------------------
   Presentation layer only. Every legacy class name, id and hook used by the
   existing markup, PHP forms and Bootstrap JS is preserved and re-skinned.

   Table of contents
   01. Tokens
   02. Reset & base
   03. Typography
   04. Layout & sections
   05. Buttons
   06. Forms
   07. Cards
   08. Header / navigation
   09. Hero & page banner
   10. Content components (lists, media, tables, separators)
   11. Carousel / testimonials
   12. Modal
   13. Service areas & location links
   14. Footer
   15. Sticky mobile CTA
   16. Page specific (thank you, service area, bin sizes)
   17. Motion & reveal
   18. Accessibility
   19. Responsive
   ========================================================================== */

/* ==========================================================================
   01. TOKENS
   ========================================================================== */

:root {
  /* Brand — original indigo #30268e and green #36974a, tuned for contrast */
  --ub-brand: #30268e;
  --ub-brand-700: #291f7a;
  --ub-brand-800: #201861;
  --ub-brand-900: #150f42;
  --ub-brand-600: #3d31ad;
  --ub-brand-500: #5044c9;
  --ub-brand-100: #e2e0f4;
  --ub-brand-50: #f3f2fc;

  --ub-accent: #2f9a4c;
  --ub-accent-700: #237a3b;
  --ub-accent-600: #2a8b45;
  --ub-accent-100: #dcf2e2;
  --ub-accent-50: #eef9f1;

  /* Neutrals */
  --ub-ink: #14162b;
  --ub-ink-2: #303449;
  --ub-muted: #5b6076;
  --ub-muted-2: #7b8196;
  --ub-line: #e5e7f0;
  --ub-line-strong: #d3d7e5;

  --ub-surface: #ffffff;
  --ub-surface-2: #f6f7fb;
  --ub-surface-3: #eef0f8;

  /* Typography */
  --ub-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --ub-font-display: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --ub-h1: clamp(2rem, 1.35rem + 2.6vw, 3.5rem);
  --ub-h2: clamp(1.5rem, 1.18rem + 1.28vw, 2.25rem);
  --ub-h3: clamp(1.2rem, 1.06rem + 0.56vw, 1.5rem);
  --ub-h4: clamp(1.05rem, 0.99rem + 0.26vw, 1.2rem);
  --ub-body: clamp(1rem, 0.97rem + 0.12vw, 1.0625rem);
  --ub-small: 0.875rem;

  /* Spacing */
  --ub-gap-xs: 0.5rem;
  --ub-gap-sm: 0.75rem;
  --ub-gap: 1rem;
  --ub-gap-md: 1.5rem;
  --ub-gap-lg: 2rem;
  --ub-gap-xl: 3rem;
  --ub-section-y: clamp(3rem, 1.6rem + 5vw, 4rem);
  --ub-section-y-sm: clamp(2rem, 1.2rem + 3vw, 3.5rem);

  /* Radius */
  --ub-r-sm: 10px;
  --ub-r: 16px;
  --ub-r-lg: 22px;
  --ub-r-pill: 999px;

  /* Elevation */
  --ub-sh-1: 0 1px 2px rgba(20, 22, 43, 0.05), 0 2px 6px rgba(20, 22, 43, 0.05);
  --ub-sh-2: 0 2px 6px rgba(20, 22, 43, 0.05), 0 12px 28px rgba(20, 22, 43, 0.07);
  --ub-sh-3: 0 8px 20px rgba(20, 22, 43, 0.08), 0 28px 60px rgba(20, 22, 43, 0.12);
  --ub-sh-brand: 0 8px 22px rgba(48, 38, 142, 0.28);
  --ub-sh-accent: 0 8px 22px rgba(47, 154, 76, 0.26);

  /* Motion */
  --ub-t-fast: 140ms cubic-bezier(0.2, 0, 0.2, 1);
  --ub-t: 240ms cubic-bezier(0.2, 0, 0.2, 1);
  --ub-t-slow: 420ms cubic-bezier(0.22, 0.61, 0.36, 1);

  --ub-header-h: 84px;
  --ub-container: 1200px;
  /* --ub-measure: 48rem;  */
   --ub-measure: 100%;
}

/* ==========================================================================
   02. RESET & BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--ub-header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body,
.body {
  font-family: var(--ub-font);
  font-size: var(--ub-body);
  line-height: 1.7;
  color: var(--ub-ink-2);
  background: var(--ub-surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--ub-brand);
  text-decoration: none;
  transition: color var(--ub-t-fast);
}

a:hover {
  color: var(--ub-accent-700);
}

hr {
  border: 0;
  border-top: 1px solid var(--ub-line);
  opacity: 1;
}

::selection {
  background: var(--ub-brand-100);
  color: var(--ub-brand-900);
}

.container {
  max-width: var(--ub-container);
}

/* ==========================================================================
   03. TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ub-font-display);
  color: var(--ub-ink);
  letter-spacing: -0.02em;
  line-height: 1.18;
  font-weight: 700;
  margin-bottom: 0.6em;
}

h1,
.display-3 {
  font-size: var(--ub-h1);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: var(--ub-h2);
  color: var(--ub-brand);
  font-weight: 800;
}

h3 {
  font-size: var(--ub-h3);
  color: var(--ub-ink);
}

h4 {
  font-size: var(--ub-h4);
}

h5 {
  font-size: 1.0625rem;
}

/* `<b>` is used inside headings site-wide purely as a weight hint — it must
   never introduce its own colour or weight. */
h1 b,
h2 b,
h3 b,
h4 b,
h5 b,
h6 b,
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  font-weight: inherit;
  color: inherit;
}

p {
  margin-bottom: 1.05rem;
  color: var(--ub-muted);
}

p:last-child {
  margin-bottom: 0;
}

b,
strong {
  color: var(--ub-ink-2);
  font-weight: 600;
}

/* Justified text reads poorly on narrow columns — normalise legacy inline styles */
main p[style*="justify"],
main p[style*="justify"] + p,
.p_color[style*="justify"] {
  text-align: left !important;
}

.p_color {
  color: var(--ub-muted);
}

.details {
  font-size: var(--ub-body);
  font-weight: 400;
  line-height: 1.75;
  color: var(--ub-muted);
}

.serviceul_color {
  color: var(--ub-muted);
}

/* Section intro paragraphs run the full container width */
section .container.text-center > .row > p,
section .container.text-center > .row > h2 + p {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   04. LAYOUT & SECTIONS
   ========================================================================== */

main section {
  padding: var(--ub-section-y) 0;
  position: relative;
}

main section section {
  padding: 0;
}

/* Alternating surfaces — replaces the flat #f5f5f5 blocks */
.skip_bin,
.customer {
  background-color: var(--ub-surface-2);
}

/* --- Fixed-image call-to-action band ----------------------------------- */

.price {
  position: relative;
  isolation: isolate;
  color: #fff;
  background-color: var(--ub-brand-900);
  background-image: url(../images/area-img1.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.price::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    100deg,
    rgba(15, 11, 48, 0.94) 0%,
    rgba(26, 19, 82, 0.9) 45%,
    rgba(40, 31, 122, 0.8) 100%
  );
}

.price > .container {
  position: relative;
  z-index: 1;
}

.price h2 {
  color: #fff;
}

.price p {
  color: rgba(255, 255, 255, 0.86);
}

.price p b,
.price strong {
  color: #fff;
}

/* Indigo on indigo has no contrast here — the CTA switches to the accent */
.price .cust-btn,
.price .btn-primary {
  background: var(--ub-accent);
  border-color: var(--ub-accent);
  box-shadow: var(--ub-sh-accent);
}

.price .cust-btn:hover,
.price .btn-primary:hover,
.price .cust-btn:focus {
  background-color: var(--ub-accent-700) !important;
  border-color: var(--ub-accent-700) !important;
  box-shadow: 0 12px 26px rgba(47, 154, 76, 0.34);
}

/* `background-attachment: fixed` is ignored or breaks `cover` sizing on iOS,
   and parallax is a vestibular trigger — fall back to a normal background. */
@media (hover: none), (pointer: coarse), (max-width: 991.98px) {
  .price {
    background-attachment: scroll;
  }
}

@media (prefers-reduced-motion: reduce) {
  .price {
    background-attachment: scroll;
  }
}

/* `.header_bg` is the body wrapper on interior pages … */
section.header_bg {
  background-color: var(--ub-surface);
  color: inherit;
}

/* Image + copy rows on interior pages read better balanced than top-aligned */
section.header_bg > .container > .row {
  align-items: center;
  row-gap: 0;
}

section.header_bg > .container > .row > [class*="col-"] {
  margin-bottom: var(--ub-gap-md);
}

/* Long-form copy on interior pages sits in a centred, readable measure
   instead of running the full 1200px container width. Anything in a grid
   column keeps its own layout. */
section.header_bg > .container > .row > h2,
section.header_bg > .container > .row > h3,
section.header_bg > .container > .row > h4,
section.header_bg > .container > .row > p,
section.header_bg > .container > .row > ul,
section.header_bg > .container > .row > ol,
section.header_bg > .container > .row > form.form-inline {
  width: 100%;
  /* A fixed measure, not `ch` — `ch` is font-relative and would leave large
     display headings effectively unconstrained. */
  max-width: var(--ub-measure);
  margin-inline: auto;
}

section.header_bg > .container > .row > h2,
section.header_bg > .container > .row > h3,
section.header_bg > .container > .row > h4 {
  margin-top: 1.4em;
}

section.header_bg > .container > .row > h2:first-child,
section.header_bg > .container > .row > h3:first-child {
  margin-top: 0;
}

/* … and the call band on the homepage */
section .header_bg {
  background: linear-gradient(135deg, var(--ub-brand-50) 0%, var(--ub-accent-50) 100%);
  border-radius: var(--ub-r-lg);
  color: var(--ub-brand);
  overflow: hidden;
  position: relative;
}
section.contact-header{
  padding:0 0 60px 0;
}

section > .header_bg h2 {
  color: var(--ub-brand) !important;
  margin-bottom: 0.35em;
}

section > .header_bg h3 {
  color: var(--ub-muted) !important;
  font-weight: 600;
  font-size: var(--ub-h4);
}

#services {
  background-color: var(--ub-surface);
}

.range {
  background-color: var(--ub-surface);
}

#bindetails {
  padding: var(--ub-section-y-sm) 0 0;
}

/* Nested `.container-fluid` inside an already-negative-margin row would push
   past the viewport; keep its grid aligned to the parent container. */
#bindetails > .row {
  margin-inline: 0;
  align-items: center;
  row-gap: var(--ub-gap-md);
}

#bindetails > .row > [class*="col-"]:first-child {
  padding-left: 0;
}

#bindetails > .row > [class*="col-"]:last-child {
  padding-right: 0;
}

#bindetails img {
  border-radius: var(--ub-r);
  box-shadow: var(--ub-sh-2);
}

.skipavailbility {
  padding: var(--ub-gap-md) 0;
  text-align: center;
}

section.bottom {
  background: linear-gradient(135deg, var(--ub-brand) 0%, var(--ub-brand-700) 100%);
  color: #fff;
}

section.bottom h2,
section.bottom h3,
section.bottom p {
  color: #fff;
}

section.bottom h2 span {
  color: var(--ub-accent-100);
}

/* Full-width call band (service area page) */
.call {
  background: linear-gradient(135deg, var(--ub-brand) 0%, var(--ub-brand-600) 100%);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  margin-bottom: var(--ub-section-y-sm);
  border-radius: var(--ub-r-lg);
  box-shadow: var(--ub-sh-brand);
  color: #fff;
}

.call h3 {
  color: #fff;
  margin: 0;
  font-size: var(--ub-h3);
}

.call a {
  color: #fff !important;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transition: border-color var(--ub-t-fast);
}

.call a:hover {
  border-bottom-color: #fff;
}

.call .fa-phone {
  margin-right: 0.5rem;
}

/* ==========================================================================
   05. BUTTONS
   ========================================================================== */

.btn,
input[type="submit"],
button[type="submit"] {
  font-family: var(--ub-font);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
  padding: 0.85rem 1.6rem;
  border-radius: var(--ub-r-pill);
  border: 1.5px solid transparent;
  transition: background-color var(--ub-t), border-color var(--ub-t),
    color var(--ub-t), box-shadow var(--ub-t), transform var(--ub-t-fast);
  cursor: pointer;
  text-align: center;
}

/* Beat Bootstrap's `.rounded-0` utility without editing 81 pages of markup */
.btn.rounded-0,
input.rounded-0[type="submit"],
button.rounded-0 {
  border-radius: var(--ub-r-pill) !important;
}

.btn:focus,
.btn:active:focus {
  box-shadow: 0 0 0 4px var(--ub-brand-100);
}

/* Primary — brand indigo */
.btn-primary,
.cust-btn,
input[type="submit"].cust-btn,
button.cust-btn {
  background: var(--ub-brand);
  border-color: var(--ub-brand);
  color: #fff;
  box-shadow: var(--ub-sh-brand);
}

.btn-primary:hover,
.cust-btn:hover,
input[type="submit"].cust-btn:hover,
button.cust-btn:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--ub-brand-700) !important;
  border-color: var(--ub-brand-700) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(48, 38, 142, 0.34);
}

.btn-primary:active,
.cust-btn:active {
  transform: translateY(0);
}

/* Links nested inside legacy `<button><a>…</a></button>` markup */
.btn a,
.cust-btn a {
  color: inherit !important;
  text-decoration: none;
}

.btn > a {
  display: block;
  margin: -0.85rem -1.6rem;
  padding: 0.85rem 1.6rem;
}

/* Secondary / outline */
.cust-btn-transparent {
  background: transparent;
  color: var(--ub-brand);
  border: 1.5px solid var(--ub-brand-100);
  min-width: 140px;
  box-shadow: none;
}

.cust-btn-transparent:hover,
.cust-btn-transparent:focus {
  background: var(--ub-brand) !important;
  border-color: var(--ub-brand) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: var(--ub-sh-brand);
}

/* The homepage "CALL" band button reads as the accent action */
section > .header_bg .cust-btn {
  background: var(--ub-accent);
  border-color: var(--ub-accent);
  box-shadow: var(--ub-sh-accent);
}

section > .header_bg .cust-btn:hover {
  background-color: var(--ub-accent-700) !important;
  border-color: var(--ub-accent-700) !important;
  box-shadow: 0 12px 26px rgba(47, 154, 76, 0.32);
}

/* ==========================================================================
   06. FORMS
   ========================================================================== */

.form-group {
  margin-bottom: var(--ub-gap);
}

.form-group label,
.form-group-m label {
  display: block;
  color: var(--ub-ink);
  font-size: var(--ub-small);
  font-weight: 600;
  letter-spacing: 0.005em;
  padding-bottom: 0.4rem;
}

.form-control,
.form-select,
.textarea,
textarea {
  font-family: var(--ub-font);
  font-size: 0.9375rem;
  color: var(--ub-ink);
  background-color: var(--ub-surface);
  border: 1.5px solid var(--ub-line-strong);
  border-radius: var(--ub-r-sm);
  padding: 0.75rem 1rem;
  box-shadow: none;
  transition: border-color var(--ub-t-fast), box-shadow var(--ub-t-fast),
    background-color var(--ub-t-fast);
  width: 100%;
}

.form-control.form-control-lg,
.form-select.form-control-lg {
  font-size: 0.9375rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--ub-r-sm);
}

.form-control::placeholder,
textarea::placeholder {
  color: var(--ub-muted-2);
  opacity: 1;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
  border-color: var(--ub-brand-500);
  background-color: var(--ub-surface);
  box-shadow: 0 0 0 4px var(--ub-brand-100);
  outline: none;
}

.form-control:hover:not(:focus),
.form-select:hover:not(:focus) {
  border-color: var(--ub-muted-2);
}

/* Native validation feedback, styled only after the user has interacted */
.form-control:not(:placeholder-shown):invalid,
.form-control:not(:placeholder-shown):invalid:focus {
  border-color: #d64545;
}

.form-control:not(:placeholder-shown):invalid:focus {
  box-shadow: 0 0 0 4px rgba(214, 69, 69, 0.16);
}

.form-select {
  background-position: right 0.95rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

textarea,
.textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
  border: 1.5px solid var(--ub-line-strong) !important;
}

/* Legacy message field is an `<input>` sized like a textarea via inline style */
.form-group .input-group[style*="100px"] {
  height: auto !important;
}

.form-group .input-group[style*="100px"] .form-control {
  height: 110px !important;
  padding-top: 0.85rem;
  align-items: flex-start;
}

.input-group {
  position: relative;
}

/* Standalone quote forms (`sendmailfooter.php` / `sendmailbinsinq.php`) */
form.form-inline {
  max-width: 940px;
  margin: 0 auto;
  background: var(--ub-surface);
  border: 1px solid var(--ub-line);
  border-radius: var(--ub-r-lg);
  box-shadow: var(--ub-sh-2);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem) !important;
}

.quote form.form-inline,
.contactform form.form-inline {
  margin-top: var(--ub-gap-md);
}

form.form-inline .btn {
  min-width: 200px;
}

/* The submit button must stand as tall as the fields beside it. The markup
   carries Bootstrap's `py-2` utility, which is `!important`, so the vertical
   box is restated here to mirror `.form-control-lg` (same font-size, same
   line-height, same block padding, same border) instead of guessing a pixel
   height that would drift if the fields are ever resized. */
form.form-inline button[type="submit"],
form.form-inline input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  line-height: 1.5;
  padding-top: 0.85rem !important;
  padding-bottom: 0.85rem !important;
}

iframe.captcha-frame {
  border: none;
  height: 44px;
  width: 100%;
  overflow: hidden;
  border-radius: var(--ub-r-sm);
}

/* ==========================================================================
   07. CARDS
   ========================================================================== */

.card {
  background: var(--ub-surface);
  border: 1px solid var(--ub-line);
  border-radius: var(--ub-r) !important;
  box-shadow: var(--ub-sh-1);
  overflow: hidden;
  height: 100%;
  transition: transform var(--ub-t), box-shadow var(--ub-t),
    border-color var(--ub-t);
}

.card-body {
  padding: clamp(1.1rem, 0.9rem + 0.6vw, 1.6rem);
}

.card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ub-ink);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.card-text {
  color: var(--ub-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.card-img-top {
    width: 85%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    transition: transform var(--ub-t-slow);
    margin: 30px auto 15px;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ub-sh-3);
  border-color: var(--ub-brand-100);
}

.card:hover .card-img-top {
  transform: scale(1.04);
}

/* Skip-size cards — legacy inline `width: 20rem` is neutralised */
.card_hover {
  width: 100% !important;
  max-width: 22rem;
  text-align: center;
  background: var(--ub-surface);
}

.card_hover:hover {
  background-color: var(--ub-surface);
  border-color: var(--ub-brand-100);
}

/* Reserve the image box up front so lazy loading cannot shift the card */
.card_hover > img {
  background: linear-gradient(180deg, var(--ub-surface-2) 0%, var(--ub-surface) 100%);
  padding: 1.75rem !important;
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.card_hover .card-body p {
  margin-bottom: 0.35rem;
  font-size: 0.9375rem;
  color: var(--ub-muted);
}

.card_hover .card-body p b {
  color: var(--ub-ink);
  font-weight: 600;
}

.card_hover .card-body p:last-of-type {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--ub-line);
  font-size: 0.875rem;
}

.card_hover .btn {
  width: 100%;
}

/* --- Split media + copy section (homepage) ----------------------------- */

.split-section .row {
  row-gap: var(--ub-gap-xl);
}

/* Padding reserves room for the offset panel, so it can never overflow */
.split-media {
  position: relative;
  margin: 0;
  padding: 0 18px 18px 0;
}

/* Offset accent panel behind the photo */
.split-media::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  right: 0;
  bottom: 0;
  border-radius: var(--ub-r);
  background: var(--ub-accent-100);
  z-index: 0;
}

.split-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--ub-r);
  box-shadow: var(--ub-sh-3);
}

/* Transparent service-area map on a soft tinted panel */
.split-map {
  position: relative;
  margin: 0;
  padding: clamp(1rem, 0.6rem + 1.4vw, 2rem);
  border-radius: var(--ub-r-lg);
  background: radial-gradient(
    circle at 50% 45%,
    var(--ub-surface) 0%,
    var(--ub-brand-50) 55%,
    var(--ub-brand-100) 100%
  );
  border: 1px solid var(--ub-brand-100);
}

.split-map img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(20, 22, 43, 0.18));
}

.split-content {
  text-align: left;
}

.split-content h2 {
  margin-bottom: 0.65em;
}

.split-content p {
  color: var(--ub-muted);
}

.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--ub-gap-md);
}

.split-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.9rem 1.6rem;
}

.split-btn-primary {
  background: var(--ub-accent);
  border-color: var(--ub-accent);
  color: #fff;
  box-shadow: var(--ub-sh-accent);
}

.split-btn-primary:hover,
.split-btn-primary:focus {
  background: var(--ub-accent-700) !important;
  border-color: var(--ub-accent-700) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(47, 154, 76, 0.34);
}

.split-btn-arrow {
  transition: transform var(--ub-t);
}

.split-btn-primary:hover .split-btn-arrow {
  transform: translateX(4px);
}

.split-btn-dark {
  background: var(--ub-brand);
  border-color: var(--ub-brand);
  color: #fff;
  box-shadow: var(--ub-sh-brand);
}

.split-btn-dark:hover,
.split-btn-dark:focus {
  background: var(--ub-brand-700) !important;
  border-color: var(--ub-brand-700) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(48, 38, 142, 0.34);
}

@media (max-width: 991.98px) {
  .split-media {
    padding: 0 12px 12px 0;
  }

  .split-media::before {
    left: 12px;
    top: 12px;
  }

  .split-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

/* --- Waste-type feature grid (homepage) -------------------------------- */

.waste-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ub-gap-md);
  width: 100%;
  margin: var(--ub-gap-md) 0 var(--ub-section-y-sm);
  text-align: left;
}

.waste-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 420px;
  border-radius: var(--ub-r);
  overflow: hidden;
  isolation: isolate;
  background: var(--ub-brand-900);
  box-shadow: var(--ub-sh-2);
  transition: transform var(--ub-t), box-shadow var(--ub-t);
}

.waste-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform var(--ub-t-slow);
}

/* Legibility scrim — copy sits on the darkened lower half */
.waste-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(15, 11, 48, 0) 20%,
    rgba(15, 11, 48, 0.45) 42%,
    rgba(15, 11, 48, 0.84) 64%,
    rgba(15, 11, 48, 0.96) 100%
  );
}

.waste-card-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(1.25rem, 1rem + 1vw, 1.75rem);
}

.waste-card-title {
  color: #fff;
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.4rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.waste-card-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.waste-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ub-accent);
  border-color: var(--ub-accent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.7rem 1.3rem;
  box-shadow: var(--ub-sh-accent);
}

.waste-card-btn:hover,
.waste-card-btn:focus {
  background: var(--ub-accent-700) !important;
  border-color: var(--ub-accent-700) !important;
  color: #fff !important;
}

.waste-card-arrow {
  transition: transform var(--ub-t);
}

.waste-card-btn:hover .waste-card-arrow {
  transform: translateX(4px);
}

.waste-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ub-sh-3);
}

.waste-card:hover .waste-card-img {
  transform: scale(1.06);
}

@media (max-width: 991.98px) {
  .waste-grid {
    grid-template-columns: 1fr;
  }

  .waste-card {
    min-height: 340px;
  }
}

/* Equal-height card grids without touching the markup */
.range .row > [class*="col-"],
#services .row > [class*="col-"] {
  display: flex;
}

.range .row > [class*="col-"] > .card,
#services .row > [class*="col-"] > .card {
  width: 100%;
}

/* Feature icon blocks (Fast Delivery / Flexible Hire Periods / …)
   Fixed box, so the tile keeps its height before the lazy icon arrives
   (no layout shift). */
.skip_bin img.img-fluid {
  width: 72px;
  height: 72px;
  max-width: 72px;
  object-fit: contain;
  margin-inline: auto;
  flex: none;
}

.skip_bin .row.text-center > [class*="col-"] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: var(--ub-gap-xs);
  background: var(--ub-surface);
  border: 1px solid var(--ub-line);
  border-radius: var(--ub-r);
  box-shadow: var(--ub-sh-1);
  padding: 1.75rem 1.25rem !important;
  margin: 0.5rem;
  flex: 1 1 200px;
  transition: transform var(--ub-t), box-shadow var(--ub-t);
}

.skip_bin .row.text-center > [class*="col-"]:hover {
  transform: translateY(-4px);
  box-shadow: var(--ub-sh-2);
}

.skip_bin .row.text-center > [class*="col-"] h4 {
  font-size: 1rem;
  margin: 0;
  padding-top: 0.75rem !important;
  color: var(--ub-ink);
}

.skip_bin .row.text-center {
  align-items: stretch;
}

/* ==========================================================================
   08. HEADER / NAVIGATION
   ========================================================================== */

header {
  position: sticky;
  top: 0;
  z-index: 1030;
}

nav#navBar,
.navbar {
  background: var(--ub-surface);
  padding: 0;
  z-index: 1030 !important;
  justify-content: stretch !important;
  transition: box-shadow var(--ub-t), background-color var(--ub-t);
}

nav#navBar {
  box-shadow: 0 1px 0 var(--ub-line);
}

nav#navBar.is-stuck {
  box-shadow: 0 2px 4px rgba(20, 22, 43, 0.04), 0 10px 30px rgba(20, 22, 43, 0.08);
}

.top_title {
  width: 100%;
}

.top_title > .container-fluid,
nav#navBar > .container-fluid {
  max-width: var(--ub-container);
  margin-inline: auto;
  padding-inline: var(--ub-gap);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--ub-gap-sm);
}

/* --- Utility bar ------------------------------------------------------- */

.headtop {
  width: 100%;
  background: var(--ub-brand-900);
  color: rgba(255, 255, 255, 0.82);
}

.headtop hr {
  display: none;
}

.top_menu {
  max-width: var(--ub-container);
  margin-inline: auto;
  padding-inline: var(--ub-gap);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
  padding-block: 0.6rem;
  color: rgba(255, 255, 255, 0.82);
}

.top_menu strong {
  color: #fff;
  font-weight: 600;
}

.top_menu p {
  float: none !important;
  margin: 0 0 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
}

/* Blinking text is a WCAG 2.2.2 problem — replaced with a calm live badge */
.blink {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  animation: none;
  color: #fff;
  background: rgba(47, 154, 76, 0.22);
  border: 1px solid rgba(47, 154, 76, 0.45);
  border-radius: var(--ub-r-pill);
  padding: 0.15rem 0.7rem;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
}

.blink b {
  font-weight: 600;
  color: #fff;
}

.blink::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5fd67f;
  box-shadow: 0 0 0 0 rgba(95, 214, 127, 0.7);
  animation: ub-pulse 2.4s ease-out infinite;
  flex: none;
}

@keyframes ub-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(95, 214, 127, 0.6);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(95, 214, 127, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(95, 214, 127, 0);
  }
}

/* --- Brand ------------------------------------------------------------- */

.navbar-brand {
  margin: 0;
  padding: 0.85rem 0;
  display: inline-flex;
  align-items: center;
  flex: none;
}

.navbar-brand img.img-fluid {
  max-width: 210px;
  width: 100%;
  height: auto;
  transition: max-width var(--ub-t);
}

nav#navBar.is-stuck .navbar-brand img.img-fluid {
  max-width: 180px;
}

/* --- Toggler ----------------------------------------------------------- */

.navbar-toggler {
  order: 3;
  margin-left: auto;
  border: 1.5px solid var(--ub-line-strong);
  border-radius: var(--ub-r-sm);
  padding: 0.5rem 0.7rem;
  transition: border-color var(--ub-t-fast), background-color var(--ub-t-fast);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 4px var(--ub-brand-100);
  outline: none;
}

.navbar-toggler:hover {
  border-color: var(--ub-brand);
  background: var(--ub-brand-50);
}

/* --- Nav links --------------------------------------------------------- */

.navbar-collapse {
  flex-basis: auto;
}

.navbar-nav {
  align-items: center;
  gap: 0.15rem;
}

li.nav-item {
  margin-right: 0;
}

.navbar-light .navbar-nav .nav-link,
.nav-link {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ub-ink-2);
  padding: 0.55rem 0.85rem;
  border-radius: var(--ub-r-sm);
  transition: color var(--ub-t-fast), background-color var(--ub-t-fast);
  white-space: nowrap;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: var(--ub-brand);
  background: var(--ub-brand-50);
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
  color: var(--ub-brand) !important;
  font-weight: 600;
}

/* Active underline. Bootstrap draws the dropdown caret with ::after, so the
   Services toggle gets its underline from ::before instead — otherwise going
   active on a service page wipes out the down arrow. */
.navbar-light .navbar-nav .nav-item:not(.phone) > .nav-link.active:not(.dropdown-toggle)::after,
.navbar-light .navbar-nav .nav-item:not(.phone) > .nav-link.active.dropdown-toggle::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 2px;
  background: var(--ub-accent);
}

/* --- Phone CTA --------------------------------------------------------- */

li.nav-item.phone,
li.nav-item:last-child {
  background: transparent;
  margin-left: 0.5rem;
  padding: 0;
}

li.nav-item.phone a.nav-link.cust-btn,
li.nav-item:last-child a.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--ub-accent);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.65rem 1.15rem;
  border-radius: var(--ub-r-pill);
  box-shadow: var(--ub-sh-accent);
  transition: background-color var(--ub-t), transform var(--ub-t-fast),
    box-shadow var(--ub-t);
}

li.nav-item.phone a.nav-link.cust-btn:hover,
li.nav-item.phone a.nav-link.cust-btn:focus {
  background: var(--ub-accent-700);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(47, 154, 76, 0.3);
}

li.nav-item.phone a.nav-link.cust-btn i {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
  font-size: 0.95rem;
}

li.nav-item.phone > a.nav-link.active::after,
li.nav-item:last-child a.nav-link.active::after {
  display: none;
}

/* --- Dropdown ---------------------------------------------------------- */

.dropdown-menu {
  border: 1px solid var(--ub-line);
  border-radius: var(--ub-r);
  box-shadow: var(--ub-sh-3);
  padding: 0.5rem;
  margin-top: 0.5rem;
  min-width: 290px;
  background: var(--ub-surface);
}

.dropdown-item {
  border-radius: var(--ub-r-sm);
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ub-ink-2);
  white-space: normal;
  transition: background-color var(--ub-t-fast), color var(--ub-t-fast);
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: var(--ub-brand);
  background-color: var(--ub-brand-50);
}

.dropdown-item.active,
.dropdown-item[aria-current="page"] {
  color: var(--ub-brand);
  background-color: var(--ub-brand-50);
  font-weight: 600;
}

.dropdown-toggle::after {
  margin-left: 0.4em;
  vertical-align: 0.15em;
  border-top-width: 0.35em;
  opacity: 0.6;
}

/* ==========================================================================
   09. HERO & PAGE BANNER
   ========================================================================== */

.banner {
  position: relative;
  background-image: url(../images/area-img1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  isolation: isolate;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
      100deg,
      rgba(15, 11, 48, 0.96) 0%,
      rgba(26, 19, 82, 0.92) 45%,
      rgba(40, 31, 122, 0.78) 100%
    );
  width: 100%;
  height: 100%;
  top: 0;
}

/* Soft accent glow, purely decorative */
.banner::after {
  content: "";
  position: absolute;
  inset: auto auto -30% -10%;
  width: 44vw;
  height: 44vw;
  max-width: 620px;
  max-height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 154, 76, 0.28) 0%, rgba(47, 154, 76, 0) 68%);
  z-index: 0;
  pointer-events: none;
}

.banner > .container {
  position: relative;
  z-index: 1;
  color: #fff;
}

.banner h1,
.banner .display-3 {
  color: #fff;
  margin-bottom: 0.35em;
  text-wrap: balance;
}

.banner h3 {
  color: #fff;
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: 700;
}

/* Homepage hero: the price line reads as a highlighted badge */
.banner .row.align > .col-lg-6 h3.display-3 {
  display: inline-block;
  font-size: clamp(1.15rem, 0.95rem + 0.9vw, 1.6rem);
  background: rgba(47, 154, 76, 0.9);
  border-radius: var(--ub-r-pill);
  padding: 0.4rem 1.25rem;
  margin-bottom: 0.5em;
  box-shadow: var(--ub-sh-accent);
}

.banner p,
.banner .text-white {
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 58ch;
}

.banner p b {
  color: #fff;
  font-weight: 600;
}

/* Homepage hero sizing */
.banner .row.align {
  align-items: center;
  padding-block: clamp(2rem, 1rem + 4vw, 2.5rem);
}

/* Interior page banner — compact, centred */
.banner > .container.text-center .row.align {
  padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
  justify-content: center;
}

/* --- Breadcrumb -------------------------------------------------------- */

.banner .breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--ub-r-pill);
  padding: 0.4rem 1.1rem;
  margin: 0;
  font-size: 0.875rem;
  backdrop-filter: blur(6px);
}

.banner div[aria-label*="breadcrumb"] {
  display: flex;
  justify-content: center;
}

.breadcrumb-item {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.86) !important;
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: #fff !important;
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumb-item.active,
.breadcrumb-item[aria-current="page"] {
  color: #fff;
  font-weight: 500;
}

/* --- Hero call-to-action pair ------------------------------------------ */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.95rem 1.75rem;
}

.hero-btn-primary {
  background: var(--ub-accent);
  border-color: var(--ub-accent);
  color: #fff;
  box-shadow: var(--ub-sh-accent);
}

.hero-btn-primary:hover,
.hero-btn-primary:focus {
  background: var(--ub-accent-700) !important;
  border-color: var(--ub-accent-700) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(47, 154, 76, 0.34);
}

.hero-btn-arrow {
  transition: transform var(--ub-t);
}

.hero-btn-primary:hover .hero-btn-arrow {
  transform: translateX(4px);
}

.hero-btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.hero-btn-ghost:hover,
.hero-btn-ghost:focus {
  background: #fff;
  border-color: #fff;
  color: var(--ub-brand) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.hero-btn-ghost .fa-phone {
  font-size: 0.9rem;
}

/* --- Hero quote card --------------------------------------------------- */

.banner .card {
  border: 0 !important;
  border-radius: var(--ub-r-lg) !important;
  box-shadow: 0 24px 70px rgba(10, 8, 40, 0.45);
  overflow: hidden;
}

.banner .card:hover {
  transform: none;
  box-shadow: 0 24px 70px rgba(10, 8, 40, 0.45);
}

.card-header.p-0 {
  background: var(--ub-brand-900);
  border: 0;
}

.quote-head {
  padding: 1.15rem clamp(1.25rem, 1rem + 1vw, 1.75rem) !important;
  text-align: left;
}

.card-header.p-0 h3 {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  margin: 0;
  font-weight: 800;
  line-height: 1.2;
}

.quote-sub {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.banner .card-body {
  padding: clamp(1.25rem, 1rem + 1vw, 1.75rem) !important;
}

/* Name + phone share a row; they collapse on narrow cards */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 0.75rem;
}

@media (max-width: 400px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

.banner .card .btn,
.banner .card input[type="submit"] {
  width: 100%;
}

/* Primary CTA matches the input height and spans the card.
   Selector is qualified to outrank `input[type="submit"].cust-btn`. */
input[type="submit"].quote-submit,
.quote-submit {
  width: 100%;
  height: 52px;
  padding: 0 1.5rem !important;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: var(--ub-accent);
  border-color: var(--ub-accent);
  border-radius: var(--ub-r-sm) !important;
  box-shadow: var(--ub-sh-accent);
  margin-top: 0.35rem;
}

input[type="submit"].quote-submit:hover,
input[type="submit"].quote-submit:focus,
.quote-submit:hover,
.quote-submit:focus {
  background-color: var(--ub-accent-700) !important;
  border-color: var(--ub-accent-700) !important;
  box-shadow: 0 12px 26px rgba(47, 154, 76, 0.34);
}

/* ==========================================================================
   10. CONTENT COMPONENTS
   ========================================================================== */

/* Check lists (`.serviceul_color`) */
.serviceul_color.list-unstyled li {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 0.65rem !important;
  color: var(--ub-muted);
}

.serviceul_color.list-unstyled li .fa-check {
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ub-accent-50);
  color: var(--ub-accent-700) !important;
  font-size: 0.7rem;
  padding-right: 0 !important;
}

/* Plain content lists */
main ul:not([class]),
main ol:not([class]),
ul.details {
  padding-left: 1.25rem;
  color: var(--ub-muted);
}

main ul:not([class]) li,
main ol:not([class]) li,
ul.details li {
  padding-bottom: 0.4rem;
}

ul.details {
  color: var(--ub-muted) !important;
}

ul.details li::marker {
  color: var(--ub-accent);
}

.waste_accept {
  color: var(--ub-accent-700);
  font-size: 1rem;
}

.waste_notaccept {
  color: #d64545;
  font-size: 1rem;
}

/* Media */
.img_spacing {
  padding-left: 0;
  padding-right: 0;
}

.remove_img_size,
.service_img_size {
  width: 100%;
  border-radius: var(--ub-r);
  box-shadow: var(--ub-sh-2);
}

main section img.img-fluid:not(.card-img-top):not([class*="container-"]) {
  border-radius: var(--ub-r-sm);
}

/* Divider used under section headings */
.separator {
  border: 0 solid var(--ub-line);
  clear: both;
  position: relative;
  z-index: 1;
  border-color: var(--ub-accent) !important;
  border-top-width: 3px !important;
  border-radius: 3px;
  max-width: 72px !important;
  margin-inline: auto !important;
}

/* Tables — responsive, modern, none exist today but the pattern is ready */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9375rem;
  background: var(--ub-surface);
  border: 1px solid var(--ub-line);
  border-radius: var(--ub-r);
  overflow: hidden;
}

table th {
  background: var(--ub-surface-3);
  color: var(--ub-ink);
  font-weight: 700;
  text-align: left;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--ub-line);
}

table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--ub-line);
  color: var(--ub-muted);
}

table tr:last-child td {
  border-bottom: 0;
}

.ub-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--ub-r);
}

/* Boxicons keep their accent colour but stay legible on light surfaces */
.bx {
  color: var(--ub-accent) !important;
}

/* ==========================================================================
   11. CAROUSEL / TESTIMONIALS
   ========================================================================== */

.customer .carousel {
  max-width: 900px;
  margin-inline: auto;
  background: var(--ub-surface);
  border: 1px solid var(--ub-line);
  border-radius: var(--ub-r-lg);
  box-shadow: var(--ub-sh-2);
  padding: clamp(1.5rem, 1rem + 3vw, 3rem) clamp(2.5rem, 2rem + 3vw, 4rem) !important;
  margin-top: var(--ub-gap-lg);
}

.carousel-item .row {
  align-items: center;
}

.customer .carousel-item p {
  font-size: clamp(1rem, 0.95rem + 0.35vw, 1.125rem);
  line-height: 1.75;
  color: var(--ub-ink-2);
}

.customer .carousel-item em {
  font-style: normal;
}

.customer .carousel-item img.img-fluid {
  max-width: 48px;
  opacity: 0.35;
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  padding: 0 0.5rem;
  opacity: 1;
}

/* Bootstrap ships a white chevron, which is invisible on the white control.
   Swap in a brand-green chevron instead of filtering the whole button. */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  height: 46px;
  width: 46px;
  background-color: var(--ub-surface);
  background-size: 44% 44%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  border: 1.5px solid var(--ub-accent-100);
  box-shadow: var(--ub-sh-1);
  filter: none;
  transition: transform var(--ub-t-fast), border-color var(--ub-t-fast),
    background-color var(--ub-t-fast), box-shadow var(--ub-t-fast);
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232f9a4c'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232f9a4c'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon,
.carousel-control-prev:focus-visible .carousel-control-prev-icon,
.carousel-control-next:focus-visible .carousel-control-next-icon {
  transform: scale(1.08);
  border-color: var(--ub-accent);
  background-color: var(--ub-accent-50);
  box-shadow: var(--ub-sh-2);
}

/* ==========================================================================
   12. MODAL
   ========================================================================== */

.modal-content {
  border: 0;
  border-radius: var(--ub-r-lg);
  box-shadow: var(--ub-sh-3);
  overflow: hidden;
}

.modal-header {
  background-color: var(--ub-surface-2);
  color: var(--ub-brand);
  border-bottom: 1px solid var(--ub-line);
  padding: 1.1rem 1.5rem;
}

.modal-header .modal-title {
  font-size: 1.15rem;
  color: var(--ub-brand);
}

.modal-body {
  padding: 1.5rem;
}

.close {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ub-muted);
  border-radius: var(--ub-r-sm);
  padding: 0.25rem 0.5rem;
  transition: background-color var(--ub-t-fast), color var(--ub-t-fast);
}

.close:hover {
  background: var(--ub-surface-3);
  color: var(--ub-ink);
}

.modal-footer {
  border-top: 1px solid var(--ub-line);
  padding: 1rem 1.5rem;
}

#myModal {
  z-index: 999999;
}

.form-group-m {
  margin-bottom: var(--ub-gap-sm);
}

/* ==========================================================================
   13. SERVICE AREAS & LOCATION LINKS
   ========================================================================== */

.S-area {
  padding: 0;
  max-width: var(--ub-container);
  margin-inline: auto;
}

.locations {
  margin-bottom: 0;
}

.locations li {
  list-style: none;
  text-align: left;
  padding: 0;
  margin-bottom: 0.4rem;
}

.locations li a {
  display: block;
  color: var(--ub-ink-2);
  background: var(--ub-surface);
  border: 1px solid var(--ub-line);
  border-radius: var(--ub-r-sm);
  padding: 0.6rem 0.9rem;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: border-color var(--ub-t-fast), background-color var(--ub-t-fast),
    color var(--ub-t-fast), transform var(--ub-t-fast);
}

.locations li a:hover,
.locations li a:focus {
  color: var(--ub-brand);
  background: var(--ub-brand-50);
  border-color: var(--ub-brand-100);
  transform: translateX(3px);
}

#region {
  text-align: center;
  width: min(100%, 320px);
  margin-inline: auto;
}

/* Footer service-area chips */
.locationlink {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  padding: 0;
  margin: var(--ub-gap) 0 0;
  list-style: none;
}

.locationlink li {
  display: inline-block;
  border-right: 0;
  padding: 0;
}

.locationlink li a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--ub-r-pill);
  padding: 0.3rem 0.7rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  transition: background-color var(--ub-t-fast), color var(--ub-t-fast),
    border-color var(--ub-t-fast);
}

.locationlink li a:hover,
.locationlink li a:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.locationlink li:last-child {
  border: 0;
}

/* ==========================================================================
   14. FOOTER
   ========================================================================== */

#footer {
  background: linear-gradient(180deg, #16182c 0%, #101223 100%);
  padding: 0 0 var(--ub-gap-lg);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9375rem;
  line-height: 1.7;
}

#footer .footer-top {
  padding: var(--ub-section-y-sm) 0 var(--ub-gap-lg);
}

#footer .footer-top .footer-info {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
  padding: 0;
}

#footer .footer-top .footer-info img {
  max-height: 60px;
  margin-bottom: var(--ub-gap);
}

#footer .footer-top .footer-info p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0;
  font-family: var(--ub-font);
}

#footer .row > [class*="col-"] {
  margin-bottom: var(--ub-gap-lg);
}

#footer img.float-start {
  float: none !important;
  max-width: 210px;
  margin-bottom: var(--ub-gap) !important;
}

#footer p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9375rem;
}

/* Letterspaced small caps look, without `text-transform` — some screen
   readers spell out uppercased words. */
#footer .footer-top h4 {
  font-family: var(--ub-font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  position: relative;
  padding-bottom: 0.9rem;
  margin-bottom: var(--ub-gap);
}

#footer .footer-top h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: var(--ub-accent);
}

#footer .footer-top .footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Block flow (not flex) so labels and values wrap as normal inline text */
#footer .footer-top .footer-links ul li,
#footer ul.list-unstyled li {
  position: relative;
  display: block;
  padding: 0.4rem 0 0.4rem 1.7rem;
  color: rgba(255, 255, 255, 0.68);
}

#footer .footer-top .footer-links ul i,
#footer ul i {
  position: absolute;
  left: 0;
  top: 0.6rem;
  padding-right: 0;
  color: var(--ub-accent) !important;
  font-size: 1.05rem;
  line-height: 1.2;
}

#footer ul.list-unstyled li strong {
  color: #fff;
  font-weight: 600;
}

/* Legacy `<br>` spacers between contact rows */
#footer ul.list-unstyled br {
  display: none;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer a,
#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--ub-t-fast);
  display: inline;
  line-height: inherit;
  opacity: 1;
  cursor: pointer;
}

#footer a:hover,
#footer .footer-top .footer-links ul a:hover {
  color: #fff;
}

/* Social */
#footer .footer-top .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

#footer .footer-top .social-links a {
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  line-height: 1;
  padding: 0;
  margin-right: 0;
  border-radius: var(--ub-r-sm);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color var(--ub-t), border-color var(--ub-t),
    transform var(--ub-t-fast);
}

#footer .footer-top .social-links a:hover {
  background: var(--ub-brand-600);
  border-color: var(--ub-brand-600);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

#footer .footer-top .social-links .bx {
  color: #fff !important;
}

/* Newsletter (kept for parity) */
#footer .footer-top .footer-newsletter form {
  margin-top: var(--ub-gap-md);
  background: #fff;
  padding: 6px 6px 6px 1rem;
  position: relative;
  border-radius: var(--ub-r-pill);
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 0.5rem 0;
  width: calc(100% - 120px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
  font-size: 0.9375rem;
  padding: 0 1.25rem;
  background: var(--ub-brand);
  color: #fff;
  transition: background-color var(--ub-t);
  border-radius: var(--ub-r-pill);
  border: 1px solid transparent;
  box-shadow: none;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: var(--ub-brand-700);
  color: #fff !important;
}

/* Service areas block inside footer */
#footer > .container > div[style*="text-align: center"] {
  padding-top: var(--ub-gap-lg) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#footer > .container > div[style*="text-align: center"] h4 {
  font-family: var(--ub-font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 0;
}

#footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding-top: var(--ub-gap-md);
  margin-top: var(--ub-gap-lg);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.62);
}

#footer .copyright span,
#footer .copyright strong {
  color: #fff;
}

#footer .credits {
  padding-top: 0.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

#footer .credits a {
  color: rgba(255, 255, 255, 0.6);
}

#footer .credits a:hover {
  color: #fff;
}

textarea:focus,
input:focus {
  outline: none;
}

/* ==========================================================================
   15. STICKY MOBILE CTA
   ========================================================================== */

.btmBtn {
  margin: 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--ub-line);
  padding: 0.7rem var(--ub-gap) calc(0.7rem + env(safe-area-inset-bottom, 0px));
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  z-index: 1040;
  box-shadow: 0 -6px 24px rgba(20, 22, 43, 0.1);
}

.btmBtn .cust-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  max-width: 420px;
  color: #fff;
  background: var(--ub-accent);
  border-radius: var(--ub-r-pill);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  margin: 0 auto;
  box-shadow: var(--ub-sh-accent);
}

.btmBtn .cust-btn:hover,
.btmBtn .cust-btn:focus {
  background: var(--ub-accent-700);
  color: #fff;
}

.btmBtn .cust-btn i {
  padding-right: 0;
  border-right: 0;
  margin-right: 0;
}

/* ==========================================================================
   16. PAGE SPECIFIC
   ========================================================================== */

/* Thank you */
.thank_u_desc {
  padding: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  margin: var(--ub-section-y-sm) auto;
  text-align: center;
  max-width: 720px;
  background: var(--ub-surface);
  border: 1px solid var(--ub-line);
  border-radius: var(--ub-r-lg);
  box-shadow: var(--ub-sh-2);
}

.thank_u_desc h2 {
  margin-top: 1rem !important;
}

.thank_page_divider {
  max-width: 72px;
  margin: 1.25rem auto;
  border-top: 3px solid var(--ub-accent);
  border-radius: 3px;
}

.thank_u_desc .link {
  font-weight: 600;
}

span.thank_sign_img img {
  max-width: 100%;
  height: auto;
}

/* Contact / quote page wrapper */
.contactuspg {
  background: var(--ub-surface-2);
}

section.contactform {
  padding: var(--ub-section-y) 0;
}

h2.contactform {
  color: var(--ub-brand);
}

/* Bin sizes page */
#binsizerange {
  padding-bottom: var(--ub-section-y-sm);
}

/* ==========================================================================
   17. MOTION & REVEAL
   ========================================================================== */

.ub-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--ub-t-slow), transform var(--ub-t-slow);
  will-change: opacity, transform;
}

.ub-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .ub-reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   18. ACCESSIBILITY
   ========================================================================== */

:focus-visible {
  outline: 3px solid var(--ub-brand-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.banner :focus-visible,
#footer :focus-visible,
.headtop :focus-visible {
  outline-color: #fff;
}

.ub-skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 2000;
  background: var(--ub-brand);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--ub-r-sm) var(--ub-r-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: top var(--ub-t);
}

.ub-skip-link:focus {
  top: 0;
  color: #fff;
}

/* Comfortable touch targets */
@media (pointer: coarse) {
  .nav-link,
  .dropdown-item,
  .locations li a,
  .locationlink li a,
  #footer a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .locationlink li a {
    display: inline-flex;
  }
}

/* ==========================================================================
   19. RESPONSIVE
   ========================================================================== */

@media (min-width: 992px) {
  .banner .row.align > .offset-lg-2 {
    margin-left: 8.33333333%;
  }
}

/* Tablet & below — mobile navigation */
@media (max-width: 991.98px) {
  :root {
    --ub-header-h: 72px;
  }

  .top_title > .container-fluid,
  nav#navBar > .container-fluid {
    padding-block: 0;
  }

  .navbar-brand {
    padding: 0.6rem 0;
  }

  .navbar-brand img.img-fluid {
    max-width: 175px;
  }

  nav#navBar.is-stuck .navbar-brand img.img-fluid {
    max-width: 160px;
  }

  .navbar-collapse {
    width: 100%;
    order: 4;
    border-top: 1px solid var(--ub-line);
    margin-top: 0.25rem;
    /* Leave room for the sticky call bar so the last item stays reachable */
    max-height: calc(100vh - var(--ub-header-h) - 130px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .navbar-nav {
    align-items: stretch;
    gap: 0.1rem;
    padding-block: 0.75rem;
  }

  .navbar-light .navbar-nav .nav-link,
  .nav-link {
    padding: 0.8rem 0.9rem;
    font-size: 1rem;
    border-radius: var(--ub-r-sm);
  }

  .navbar-light .navbar-nav .nav-item:not(.phone) > .nav-link.active {
    background: var(--ub-brand-50);
    box-shadow: inset 3px 0 0 var(--ub-accent);
  }

  .navbar-light .navbar-nav .nav-item:not(.phone) > .nav-link.active:not(.dropdown-toggle)::after,
  .navbar-light .navbar-nav .nav-item:not(.phone) > .nav-link.active.dropdown-toggle::before {
    display: none;
  }

  .dropdown-menu {
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--ub-line);
    border-radius: 0;
    margin: 0.15rem 0 0.35rem 0.9rem;
    padding: 0;
    min-width: 0;
    background: transparent;
  }

  .dropdown-item {
    padding: 0.7rem 0.85rem;
  }

  li.nav-item.phone {
    margin: 0.5rem 0 0.25rem;
  }

  li.nav-item.phone a.nav-link.cust-btn {
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1.15rem;
  }

  .top_menu {
    justify-content: center;
    text-align: center;
    gap: 0.4rem 0.6rem;
    padding: 0.5rem 0;
  }

  .top_menu p {
    margin: 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .btmBtn {
    display: block;
  }

  /* Keep the sticky call bar from covering the footer's last line */
  body {
    padding-bottom: 76px;
  }

  .card {
    width: auto !important;
  }

  .card_hover {
    max-width: 100%;
  }

  .banner p,
  .banner .text-white {
    max-width: none;
  }

  /* Stacked hero CTAs read better at equal width */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  form.form-inline {
    padding: 1.25rem !important;
  }

  form.form-inline .btn {
    width: 100%;
  }

  /* Leave a gutter either side so the controls never sit over the quote */
  .customer .carousel {
    padding: 1.5rem 2.9rem !important;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    height: 36px;
    width: 36px;
  }

  .customer .carousel-item .row > [class*="col-"]:first-child,
  .customer .carousel-item .row > [class*="col-"]:last-child {
    display: none;
  }

  .carousel-control-prev,
  .carousel-control-next {
    padding: 0;
  }

  #footer .footer-top .footer-info,
  #footer .footer-top .footer-links {
    text-align: left;
  }

  .S-area {
    padding: 0 var(--ub-gap);
  }
  .banner.py-5 .row {
      gap: 30px;
  }
}

@media (max-width: 600px) {
  /* Legacy ordering rule is no longer needed once the brand sits outside
     the collapsible region, but stays harmless for cached markup. */
  a.navbar-brand + div {
    order: 3;
  }

  .top_menu {
    font-size: 0.75rem;
  }

  .top_menu p {
    display: none;
  }
}
