/* =========================================
   DISCOUNT RUBBISH REMOVAL
   MAIN WEBSITE STYLESHEET
========================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #1d1d1d;
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* =========================================
   TOP BAR
========================================= */

.top-bar {
  background: #111111;
  color: #ffffff;
  text-align: center;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 700;
}

/* =========================================
   HEADER / NAVIGATION
========================================= */

.site-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-main {
  color: #d71920;
  font-size: 25px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-sub {
  color: #222222;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.nav-links a {
  color: #222222;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #d71920;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =========================================
   BUTTONS
========================================= */

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-red {
  background: #d71920;
  color: #ffffff;
  box-shadow: 0 5px 14px rgba(215, 25, 32, 0.24);
}

.btn-red:hover {
  background: #ba1118;
}

.btn-dark {
  background: #171717;
  color: #ffffff;
}

.btn-light {
  background: #ffffff;
  color: #171717;
}

/* =========================================
   HERO
========================================= */

.hero {
  min-height: 650px;
  display: flex;
  align-items: center;
  position: relative;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.58) 42%,
      rgba(0, 0, 0, 0.18) 72%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    url("/images/index-truck.webp");

  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 690px;
  color: #ffffff;
  padding: 80px 0;
}

.hero-eyebrow {
  display: inline-block;
  background: #d71920;
  color: #ffffff;
  padding: 7px 13px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  color: #ef3239;
}

.hero p {
  max-width: 610px;
  font-size: 20px;
  margin-bottom: 28px;
  color: #f3f3f3;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 22px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

/* =========================================
   TRUST STRIP
========================================= */

.trust-strip {
  background: #d71920;
  color: #ffffff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.trust-item {
  padding: 20px 15px;
  font-weight: 800;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.trust-item:last-child {
  border-right: none;
}

/* =========================================
   GENERAL SECTIONS
========================================= */

.section {
  padding: 85px 0;
}

.section-light {
  background: #ffffff;
}

.section-gray {
  background: #f5f5f5;
}

.section-dark {
  background: #161616;
  color: #ffffff;
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 46px;
}

.section-heading .small-title {
  color: #d71920;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 47px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-heading p {
  color: #666666;
  font-size: 18px;
}

.section-dark .section-heading p {
  color: #d4d4d4;
}

/* =========================================
   SERVICE CARDS
========================================= */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 31px 27px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #d71920;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 35px;
  margin-bottom: 13px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 9px;
}

.service-card p {
  color: #666666;
}

/* =========================================
   WHY CHOOSE US
========================================= */

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 55px;
}

.why-image img {
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.why-copy h2 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  margin-bottom: 19px;
}

.why-copy > p {
  color: #666666;
  font-size: 17px;
  margin-bottom: 27px;
}

.check-list {
  list-style: none;
  margin-bottom: 28px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 13px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: #d71920;
  font-size: 20px;
  font-weight: 900;
}

/* =========================================
   DISCOUNT SECTION
========================================= */

.discount-box {
  padding: 50px;
  border-radius: 14px;
  background: #ffffff;
  color: #222222;
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
}

.discount-number {
  color: #d71920;
  font-size: 66px;
  line-height: 1;
  font-weight: 900;
}

.discount-box h2 {
  font-size: 35px;
  margin: 10px 0 13px;
}

.discount-box p {
  max-width: 740px;
  margin: 0 auto 23px;
  color: #555555;
  font-size: 18px;
}

/* =========================================
   CTA SECTION
========================================= */

.cta {
  padding: 75px 0;
  background: #d71920;
  color: #ffffff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.cta h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  margin-bottom: 8px;
}

.cta p {
  font-size: 18px;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  background: #111111;
  color: #ffffff;
  padding: 55px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 38px;
}

.footer-brand {
  font-size: 24px;
  color: #ef3239;
  font-weight: 900;
  margin-bottom: 10px;
}

.footer-grid h4 {
  margin-bottom: 13px;
  font-size: 17px;
}

.footer-grid p,
.footer-grid a {
  color: #c9c9c9;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 7px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid #333333;
  text-align: center;
  color: #999999;
  font-size: 13px;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 960px) {

  .nav-links {
    display: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {

  .top-bar {
    font-size: 12px;
  }

  .navbar {
    min-height: 67px;
  }

  .brand-main {
    font-size: 18px;
  }

  .brand-sub {
    font-size: 9px;
  }

  .header-actions .btn-dark {
    display: none;
  }

  .header-actions .btn {
    padding: 10px 13px;
    font-size: 12px;
  }

  .hero {
    min-height: 590px;
    background-position: 60% center;
  }

  .hero-content {
    padding: 65px 0;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    font-size: 13px;
  }

  .section {
    padding: 65px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .discount-box {
    padding: 35px 22px;
  }

  .discount-number {
    font-size: 55px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.hero.home-hero {
  background: url("images/home-handshake-v3.webp") center center / cover no-repeat !important;
}
.home-hero .hero-content {
  display: inline-block;
  background: rgba(0, 0, 0, 0.28);
  padding: 22px 28px;
  border-radius: 12px;
  max-width: 700px;
}
/* =========================================
   V6 - DARK PANEL BEHIND HERO TEXT ONLY
   Applies to all regular website hero sections
========================================= */

.hero .hero-content{
  display:inline-block;
  background:rgba(0,0,0,.28);
  padding:22px 28px;
  border-radius:12px;
  max-width:700px;
}
/* SERVICES HERO IMAGE */
.hero.services-hero {
  background: url("images/services-hero-v2.webp") center center / cover no-repeat !important;
}
/* =========================================
   PRICING PAGE HERO
========================================= */

.hero.pricing-hero {
  background: url("images/pricing-hero.webp") center center / cover no-repeat !important;
}
/* =========================================
   SERVICE AREA PAGE HERO
========================================= */

.hero.service-area-hero {
  background: url("images/service-area-hero.webp") center center / cover no-repeat !important;
}
/* =========================================
   ABOUT PAGE HERO
========================================= */

.hero.about-hero {
  background: url("images/about-hero.webp") center center / cover no-repeat !important;
}
/* =========================================
   FAQ PAGE HERO
========================================= */

.hero.faq-hero {
  background: url("images/faq-hero.webp") center center / cover no-repeat !important;
}
/* =========================================
   DISCOUNTS PAGE HERO
========================================= */

.hero.discounts-hero {
  background: url("images/discounts-hero.webp") center center / cover no-repeat !important;
}
/* =========================================
   CONTACT PAGE HERO
========================================= */

.hero.contact-hero {
  background: url("images/contact-hero.png") center center / cover no-repeat !important;
}


/* =========================================
   TWO-ROW WEBSITE HEADER
========================================= */

.site-header .header-top-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100%;
  padding: 14px 0 12px;
}

.site-header .brand {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.site-header .header-top-actions {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  width: auto !important;
}

.site-header .header-nav-row {
  width: 100%;
  border-top: 1px solid rgba(0,0,0,.10);
  padding: 10px 0 12px;
}

.site-header .header-nav-row .nav-links {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 30px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header .header-nav-row .nav-links a {
  white-space: nowrap;
}

@media (max-width: 800px) {

  .site-header .header-top-row {
    flex-direction: column;
    gap: 12px;
  }

  .site-header .header-top-actions {
    margin-left: 0;
  }

  .site-header .header-nav-row .nav-links {
    gap: 10px 16px;
  }
}

/* Move header buttons to far right */

.site-header > .container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.site-header .header-top-row {
  width: 100% !important;
}

.site-header .header-top-actions {
  margin-left: auto !important;
  display: flex !important;
  justify-content: flex-end !important;
}

/* LARGE LOGO WITHOUT MAKING HEADER TALLER */

.site-header {
  position: relative;
}

.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background: #fff;
}

.site-header .brand-logo {
  position: absolute !important;
  left: 0;
  top: 0px;
  width: auto !important;
  height: auto !important;
  z-index: 10;
  overflow: visible !important;
}

.site-header .site-logo {
  width: 330px !important;
  height: auto !important;
  max-height: none !important;
  transform: none !important;
  display: block !important;
}

.site-header .header-top-actions {
  margin-left: auto !important;
}

/* =========================================
   MOBILE HEADER
========================================= */

@media (max-width: 800px) {

  .site-header .header-top-row {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 0 !important;
    padding: 8px 0 10px !important;
    gap: 8px !important;
  }

  .site-header .brand-logo {
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 0 auto !important;
    overflow: visible !important;
  }

  .site-header .site-logo {
    width: 240px !important;
    max-width: 82vw !important;
    height: auto !important;
    transform: none !important;
  }

  .site-header .header-top-actions {
    width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
  }

  .site-header .header-nav-row {
    padding: 8px 0 10px !important;
  }

  .site-header .header-nav-row .nav-links {
    justify-content: center !important;
    gap: 8px 14px !important;
  }
}