body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 42px;
  color: #222;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Barlow Condensed', sans-serif;
}

h1 {
  font-size: 60px;
  font-weight: 700;
}

h2 {
  font-size: 48px;
  font-weight: 700;
}

h3 {
  font-size: 32px;
  font-weight: 600;
}

h4 {
  font-size: 24px;
  font-weight: 600;
}

/* Mobile */

@media (max-width: 767.98px) {
  h1 {
    font-size: 40px;
  }
}

@media (max-width: 767.98px) {
  h2 {
    font-size: 32px;
  }
}

@media (max-width: 767.98px) {
  h3 {
    font-size: 26px;
  }
}

@media (max-width: 767.98px) {
  h4 {
    font-size: 20px;
  }
}

@media (max-width: 991.98px) {
    a[href^="tel:"] {
        color: #3C93C9 !important;
        text-decoration: underline !important;
    }

    /* ORANGE */
    a[href^="tel:"].orangephonenumber {
        color: #F59E0B !important;
        text-decoration: underline !important;
    }
}

[id] {
    scroll-margin-top: 50px;
}

/* ==============================================================
# NAVIGATION
============================================================== */

.nav-absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.custom-navbar {
  background-color: #FFF;
}

.navbar .nav-link {
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  text-decoration: none;
  color: #1F6FA8;
}

/* ==============================================================
# NAVBAR DROPDOWN
============================================================== */

@media (min-width: 992px) {
  .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
  }
}

.navbar .dropdown-menu {
  background-color: #333333;
  color: #FFF;
  padding: 10px 0;
  border: none;
  border-radius: 0;
  z-index: 10;
}

.navbar .dropdown-item {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #FFF;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
  background-color: #1F6FA8;
  color: #FFF;
}

.dropdown-toggle::after {
  border-top-color: #1F6FA8 !important;
}

/* ==============================================================
# MOBILE TOGGLER
============================================================== */

.navbar-toggler {
  border-color: rgba(0, 0, 0);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%2834, 34, 34, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ==============================================================
# OFFCANVAS
============================================================== */

#mobileNav .nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #FFF;
}

#mobileNav .nav-link:hover,
#mobileNav .nav-link:focus,
#mobileNav .nav-link.active {
  color: #F59E0B;
}

#mobileNav .nav-link[aria-expanded="true"] {
  color: #F59E0B;
}

.offcanvas .nav-link {
  color: #222;
  font-size: 20px;
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link:focus,
.offcanvas .nav-link.active {
  color: #F59E0B;
}

/* ==============================================================
# BACKGROUNDS
============================================================== */

.graybackground {
  background-color: #222;
}

.lightbluebackground {
  background-color: #EEF8FD;
}

.pattern-background {
  position: relative;
  min-height: 550px;
  background-image: url('../img/pattern-background.webp');
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.pattern-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(31, 111, 168, 0.9);
}

.pattern-background>* {
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------
# TOP BANNERS
-------------------------------------------------------------- */

:root {
  --banner-overlay: linear-gradient(rgba(31, 111, 168, 0.8), rgba(31, 111, 168, 0.8));
}

.residential-waste-junk-removal-banner,
.residential-dumpster-services-banner,
.commercial-waste-junk-removal-banner,
.commercial-dumpster-services-banner,
.service-areas-banner,
.asbestos-banner,
.other-services-banner,
.contact-banner,
.get-started-banner {
  background-image: var(--banner-overlay), var(--banner-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  align-items: center;
  height: 300px;
}

.residential-waste-junk-removal-banner {
  --banner-image: url("../img/residential-waste-junk-removal-banner.webp");
}

.residential-dumpster-services-banner {
  --banner-image: url("../img/residential-dumpster-services-banner.webp");
}

.commercial-waste-junk-removal-banner {
  --banner-image: url("../img/commercial-waste-junk-removal-banner.webp");
}

.commercial-dumpster-services-banner {
  --banner-image: url("../img/commercial-dumpster-services-banner.webp");
}

.service-areas-banner {
  --banner-image: url("../img/service-areas-banner.webp");
}

.asbestos-banner {
  --banner-image: url("../img/asbestos-banner.webp");
}

.other-services-banner {
  --banner-image: url("../img/other-services-banner.webp");
}

.contact-banner {
  --banner-image: url("../img/contact-banner.webp");
}

.get-started-banner {
  --banner-image: url("../img/get-started-banner.webp");
}

/* ==============================================================
# TEXT
============================================================== */

.whitefont {
  color: #FFF;
}

.servicewhitefont {
  color: #FFF;
  font-size: 24px;
}

.whitelink {
  position: relative;
}

a.whitelink {
  color: #FFF;
  text-decoration: none;
  position: relative;
}

a.whitelink:hover,
a.footerlink.active {
  color: #F59E0B;
  text-decoration: underline;
}

.darklink {
  position: relative;
}

a.darklink {
  color: #222;
  text-decoration: none;
  position: relative;
}

a.darklink:hover,
a.footerlink.active {
  color: #F59E0B;
  text-decoration: underline;
}

a.whitelink:hover,
a.footerlink.active {
  color: #F59E0B;
  text-decoration: underline;
}

.orangefont {
  color: #F59E0B;
}

.subheaderorangefont {
  font-family: 'Barlow Condensed', sans-serif;
  color: #F59E0B;
  font-weight: 700;
}

.bluefont {
  color: #3C93C9;
}

.subheaderbluefont {
  font-family: 'Barlow Condensed', sans-serif;
  color: #3C93C9;
  font-weight: 700;
}

.darkbluefont {
  color: #1F6FA8;
}

.license-panel {
  background-color: #FFF;
  border: 1px solid rgba(31, 111, 168, 0.12);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  display: inline-block;
}

.license-panel-label {
  font-family: 'Barlow Condensed', sans-serif;
  color: #F59E0B;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.license-panel-label .bi {
  margin-right: 0.4rem;
}

.license-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, auto);
  column-gap: 2.5rem;
  row-gap: 0.6rem;
  margin: 0;
  padding: 0;
}

.license-list li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.license-list .bi {
  color: #F59E0B;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.license-trade {
  color: #1F6FA8;
}

@media (max-width: 767.98px) {
  .license-list {
    grid-template-columns: repeat(2, auto);
  }
}

@media (max-width: 575.98px) {
  .license-panel {
    display: block;
  }

  .license-list {
    grid-template-columns: auto;
  }
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
}

.footerlink {
  position: relative;
}

a.footerlink {
  color: #000;
  text-decoration: none;
  position: relative;
}

a.footerlink:hover,
a.footerlink.active {
  color: #1F6FA8;
}

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

.btn {
  border: none;
  border-radius: 10;
}

.btn-light-blue {
  background-color: #3C93C9;
  border-color: #3C93C9;
  color: #FFF;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-light-blue:hover,
.btn-blue:focus {
  background-color: #F59E0B;
  border-color: #F59E0B;
  color: #FFF;
}

.btn-dark-blue {
  background-color: #1F6FA8;
  border-color: #1F6FA8;
  color: #FFF;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-dark-blue:hover,
.btn-blue:focus {
  background-color: #F59E0B;
  border-color: #F59E0B;
  color: #FFF;
}

.btn-orange {
  background-color: #F59E0B;
  border-color: #F59E0B;
  color: #FFF;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-orange:hover,
.btn-blue:focus {
  background-color: #3C93C9;
  border-color: #3C93C9;
  color: #FFF;
}

/* ==============================================================
# ICONS
============================================================== */

.white-logo {
  color: #FFF;
  font-size: 30px;
}

.white-logo:hover {
  color: #F59E0B;
}

.white-arrow-icon {
  color: #FFF;
  font-size: 24px;
}

.black-logo {
  color: #222;
  font-size: 30px;
}

.black-logo:hover {
  color: #F59E0B;
}

.orange-icon {
  color: #F59E0B;
  font-size: 30px;
}

.orange-check-icon {
  color: #F59E0B;
  font-size: 24px;
}

.dark-blue-icon {
  color: #1F6FA8;
  font-size: 30px;
}

.lg-dark-blue-icon {
  color: #1F6FA8;
  font-size: 55px;
}

.blue-icon {
  color: #3C93C9;
  font-size: 30px;
}

.lg-blue-icon {
  color: #3C93C9;
  font-size: 55px;
}

/* ==============================================================
# FRONT TOP RECYCLING ICON
============================================================== */

.recylcing-column {
  position: relative;
}

.recycling-icon {
  position: absolute;
  height: 350px;
  bottom: 40px;
  right: -100px;
  opacity: 0.2;
  z-index: 1;
}

.neighbor-column {
  z-index: 2;
}

/* ==============================================================
# SERVICE BOXES
============================================================== */

.service-box {
  position: relative;
  background-color: #3C93C9;
  border-radius: 10px;
  padding: 20px;
  transition: background-color 0.2s ease;
}

.service-box:hover {
  background-color: #1F6FA8;
}

.service-box:hover .btn-dark-blue {
  background-color: #F59E0B;
  border-color: #F59E0B;
  color: #FFF;
}

.service-box-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  height: 110px;
}

.waste-hauling-icon {
  height: 120px !important;
}

/* ==============================================================
# GLOBAL TRANSITIONS
============================================================== */

a,
button,
.nav-link,
.dropdown-item,
.dropdown-toggle::after,
.orange-icon,
.white-logo,
.navbar-toggler {
  transition: all 0.2s ease;
}

/* ==============================================================
# IMAGES
============================================================== */

.img-radius {
  border-radius: 10px;
}

.equal-height-img {
  height: auto;
}

@media (min-width: 992px) {
  .equal-height-img {
    height: 100%;
    object-fit: cover;
  }
}

.img-small {
  width: 350px;
  max-width: 100%;
}

/* ==============================================================
# SERVICES ACCORDIAN TABS
============================================================== */

.services-wrap>h2 {
  font-size: 40px;
  font-weight: 700;
}

.services-panel-frame {
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* Left tab column */

.service-tabs .nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  border-radius: 8px;
  padding: 14px 16px;
  color: #1F6FA8;
  transition: all 0.2s ease;
}

.service-tabs .nav-link:hover {
  background-color: #EEF8FD;
  color: #1F6FA8;
}

.service-tabs .nav-link.active {
  background-color: #1F6FA8;
  color: #FFF;
}

.service-tabs .nav-link.active:hover {
  background-color: #1F6FA8;
  color: #FFF;
}

@media (max-width: 991.98px) {
  .service-tabs .nav-link {
    text-align: center;
  }
}

/* Right content panel */

.service-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: #1F6FA8;
  margin: 0 0 8px;
}

.service-content p {
  margin: 0 0 16px;
  font-size: 17px;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}

.service-list li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #F59E0B;
}

.service-list.four-column {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 991.98px) {
  .service-list.four-column {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .service-list.four-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .service-content h3 {
    font-size: 26px;
  }
}

@media (max-width: 767.98px) {
  .service-list {
    grid-template-columns: 1fr;
  }
}

/*==============================================================
# BACK TO TOP BUTTON
==============================================================*/

#btn-back-to-top {
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1F6FA8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  cursor: pointer;
  font-size: 1.4rem;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

#btn-back-to-top:hover {
  background-color: #f59e0b;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 575.98px) {
  #btn-back-to-top {
    bottom: 30px;
    right: 5px;
  }
}

/* ==============================================================
# MOBILE CHANGES
============================================================== */

@media (max-width: 768px) {
  .pattern-background {
    min-height: 500px;
  }
}

@media (max-width: 480px) {
  .pattern-background {
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .recycling-icon {
    position: absolute;
    height: 250px;
    bottom: 40px;
    right: 0px;
    opacity: 0.2;
    z-index: 1;
  }
}