.form-control {
  max-width: 100%;
}

.form-check-input[type="radio"] {
  border-color: #000;
}

.form-check-input[type="checkbox"] {
  border-color: #000;
}

.video-hero {
  position: relative;
  min-height: 560px;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.video-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  color: #fff;
}

.video-hero__content h1 {
  margin: 0 0 15px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.15;
  font-weight: 700;
}

.video-hero__content p {
  margin: 0 0 25px;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.video-hero__btn {
  display: inline-block;
  padding: 14px 32px;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.video-hero__btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

@media (max-width: 768px) {
  .video-hero {
    min-height: 420px;
    height: 70vh;
  }
}

.video-hero {
  position: relative;
  min-height: 560px;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.video-hero__content h1 {
  margin: 0 0 15px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.15;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.testimonial-links {
  text-align: center;
}

.testimonial-heading {
  margin-bottom: 15px;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  text-shadow:
    2px 2px 4px rgba(0,0,0,0.6),
    0 0 20px rgba(0,0,0,0.4);
}

.testimonial-icons {
  display: flex;
  justify-content: center;
  gap: 3px;
  align-items: center;
}

.testimonial-icons img {
  transition: transform .25s ease;
}

.testimonial-icons img:hover {
  transform: translateY(-3px);
}
//* Process Style **//
.large_text {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 35px;
  text-align: center;
  line-height: 1.7;
  font-size: 1.1rem;
  padding: 0 20px;
  box-sizing: border-box;
}

.large_text h3 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  font-weight: 700;
}

.large_text_sub {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin: 0 0 18px;
  font-size: 1.35rem;
  font-weight: 600;
}

.lage_text_sub_line {
  width: 70px;
  height: 3px;
  background: currentColor;
  display: inline-block;
}

.packages_wrap {
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* FOUR ACROSS DESKTOP */
.package_row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.package_item {
  width: 100%;
}

.package_item_img_wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.package_item_img_wrap img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* hide unused template elements */
.package_item_text,
.package_item_price {
  display: none;
}

/* TABLET */
@media (max-width: 900px) {

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

}

/* MOBILE */
@media (max-width: 500px) {

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

  .large_text {
    font-size: 1rem;
  }

}

.package_item_img_wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  transition: box-shadow .35s ease;
}

.package_item_img_wrap img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .45s ease;
}

.package_item:hover .package_item_img_wrap img {
  transform: scale(1.08);
}

.package_item:hover .package_item_img_wrap {
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

/* Process Style 2 */
.how-it-works {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.how-it-works__intro {
  text-align: center;
  margin-bottom: 35px;
}

.how-it-works__intro h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.how-it-works__intro p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.how-step {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  box-sizing: border-box;
  overflow: hidden;
}

.how-step__number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  font-weight: 700;
  color: rgba(0,0,0,0.08);
  pointer-events: none;
}

.how-step h3 {
  margin: 0 0 8px;
  font-size: 1.7rem;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.how-step__sub {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin: 6px 0 16px;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  position: relative;
  z-index: 1;
}

.how-step__line {
  width: 60px;
  height: 3px;
  background: currentColor;
  display: inline-block;
  flex: 0 0 auto;
  color: #00a32b;
}

.how-step p {
  margin: 0 0 20px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.how-step__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.how-step__images img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  transition: transform .4s ease, box-shadow .35s ease;
}

.how-step__images img:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

.how-it-works__cta {
  text-align: center;
  margin-top: 35px;
}

@media (max-width: 900px) {
  .how-it-works__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .how-step {
    padding: 22px 18px;
  }

  .how-step__images {
    grid-template-columns: 1fr;
  }

  .how-step__sub {
    font-size: 1.05rem;
  }
}

/* Affiliates */
.affiliate-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
max-width:1200px;
margin:auto;
}

.affiliate-card{
background:#fff;
padding:30px;
border-radius:12px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}

.affiliate-card:hover{
transform:translateY(-6px);
box-shadow:0 14px 40px rgba(0,0,0,.15);
}

.affiliate-card img{
max-width:120px;
margin-bottom:15px;
}

.affiliate-card h3{
margin:10px 0 5px;
font-size:20px;
}

.affiliate-card a{
display:inline-block;
margin-top:10px;
font-weight:600;
text-decoration:none;
}

//** Affiliates Vers. 2 **//
.affiliate-directory {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  box-sizing: border-box;
}

.affiliate-directory__intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.affiliate-directory__intro h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  font-weight: 700;
}

.affiliate-directory__intro p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.affiliate-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
  box-sizing: border-box;
}

.affiliate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

.affiliate-card__logo {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.affiliate-card__logo img {
  max-width: 180px;
  max-height: 90px;
  width: auto;
  height: auto;
  display: block;
  filter: grayscale(100%);
  opacity: .9;
  transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}

.affiliate-card:hover .affiliate-card__logo img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

.affiliate-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 700;
}

.affiliate-card__meta {
  margin: 0 0 16px;
  line-height: 1.6;
  font-size: 1rem;
}

.affiliate-card__meta a {
  color: inherit;
  text-decoration: none;
}

.affiliate-card__meta a:hover {
  text-decoration: underline;
}

.affiliate-card__actions {
  margin: 0;
}

.affiliate-btn {
  display: inline-block;
  padding: 11px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .25s ease, opacity .25s ease;
}

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

.affiliate-directory__cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .affiliate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .affiliate-card {
    padding: 24px 18px;
  }

  .affiliate-card__logo {
    height: 95px;
  }
}

/* How It Works Heading and Video */
.how-it-works .how-it-works__top{
  display:flex !important;
  flex-wrap:nowrap !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:40px !important;
  max-width:1200px !important;
  margin:0 auto 40px !important;
  padding:0 20px !important;
  box-sizing:border-box !important;
}

.how-it-works .how-it-works__intro.how-it-works__intro--left{
  display:block !important;
  flex:0 0 38% !important;
  width:38% !important;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
  text-align:left !important;
}

.how-it-works .how-it-works__video{
  display:block !important;
  flex:0 0 62% !important;
  width:62% !important;
  max-width:none !important;
  margin:0 !important;
}

.how-it-works .how-it-works__video video{
  display:block !important;
  width:100% !important;
  height:auto !important;
  border-radius:14px;
  box-shadow:0 10px 28px rgba(0,0,0,.18);
}

@media (max-width:900px){
  .how-it-works .how-it-works__top{
    flex-direction:column !important;
    align-items:stretch !important;
    gap:24px !important;
  }

  .how-it-works .how-it-works__intro.how-it-works__intro--left,
  .how-it-works .how-it-works__video{
    flex:0 0 auto !important;
    width:100% !important;
  }

  .how-it-works .how-it-works__intro.how-it-works__intro--left{
    text-align:center !important;
  }
}

/* Pressure Washing */
.pressure-page {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  box-sizing: border-box;
}

.pressure-page__intro {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.pressure-page__intro h1 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.15;
}

.pressure-page__intro p {
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.pressure-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 10px;
}

.pressure-service-card {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  box-sizing: border-box;
  height: 100%;
}

.pressure-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

.pressure-service-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  line-height: 1.3;
}

.pressure-service-card p {
  margin: 0;
  line-height: 1.7;
}

.pressure-page__cta {
  text-align: center;
  margin-top: 40px;
}

.pressure-page__cta p {
  margin: 0 0 16px;
  font-size: 1.05rem;
}

@media (max-width: 991px) {
  .pressure-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pressure-services-grid {
    grid-template-columns: 1fr;
  }

  .pressure-service-card {
    padding: 24px 18px;
  }
}

/* Pressure washing hero */
.pressure-hero {
  position: relative;
  min-height: 420px;
  height: 55vh;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/images/Pressure-Wash/POWER_WASHING_SERVICES_7.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.pressure-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

.pressure-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

.pressure-hero__content h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.12;
  font-weight: 700;
  text-shadow:
    2px 2px 4px rgba(0,0,0,0.6),
    0 0 20px rgba(0,0,0,0.4);
}

.pressure-hero__content p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.5;
  text-shadow:
    2px 2px 4px rgba(0,0,0,0.55),
    0 0 18px rgba(0,0,0,0.35);
}

/* Pressure washing page */
.pressure-page {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  box-sizing: border-box;
}

.pressure-page__intro {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.pressure-page__intro h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
}

.pressure-page__intro p {
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.pressure-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 10px;
}

.pressure-service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  box-sizing: border-box;
  height: 100%;
}

.pressure-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

.pressure-service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
}

.pressure-service-card__icon img {
  display: block;
  width: 120px;
  max-width: 100%;
  height: auto;
  filter: grayscale(0%);
  opacity: 1;
  transition: all .35s ease;
}

.pressure-service-card:hover .pressure-service-card__icon img {
  filter: grayscale(100%);
  opacity: .85;
  transform: scale(1.05);
}

.pressure-service-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  line-height: 1.3;
}

.pressure-service-card p {
  margin: 0;
  line-height: 1.7;
}

.pressure-page__cta {
  text-align: center;
  margin-top: 40px;
}

.pressure-page__cta p {
  margin: 0 0 16px;
  font-size: 1.05rem;
}

@media (max-width: 991px) {
  .pressure-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .pressure-hero {
    min-height: 320px;
    height: 42vh;
  }
}

@media (max-width: 640px) {
  .pressure-services-grid {
    grid-template-columns: 1fr;
  }

  .pressure-service-card {
    padding: 24px 18px;
  }
}

/* Janitorial */
.janitorial-hero {
  position: relative;
  min-height: 420px;
  height: 55vh;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/images/janitorial-hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.janitorial-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

.janitorial-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

.janitorial-hero__content h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.12;
  font-weight: 700;
  text-shadow:
    2px 2px 4px rgba(0,0,0,0.6),
    0 0 20px rgba(0,0,0,0.4);
}

.janitorial-hero__content p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.5;
  text-shadow:
    2px 2px 4px rgba(0,0,0,0.55),
    0 0 18px rgba(0,0,0,0.35);
}

.janitorial-page {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  box-sizing: border-box;
}

.janitorial-page__intro {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.janitorial-page__intro h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
}

.janitorial-page__intro p {
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.janitorial-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 10px;
}

.janitorial-service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  box-sizing: border-box;
  height: 100%;
}

.janitorial-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

.janitorial-service-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  line-height: 1.3;
}

.janitorial-service-card p {
  margin: 0;
  line-height: 1.7;
}

.janitorial-page__cta {
  text-align: center;
  margin-top: 40px;
}

.janitorial-page__cta p {
  margin: 0 0 16px;
  font-size: 1.05rem;
}

@media (max-width: 991px) {
  .janitorial-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .janitorial-hero {
    min-height: 320px;
    height: 42vh;
  }
}

@media (max-width: 640px) {
  .janitorial-services-grid {
    grid-template-columns: 1fr;
  }

  .janitorial-service-card {
    padding: 24px 18px;
  }
}

.janitorial-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 28px;
}

.janitorial-service-card {
  display:flex;
  flex-direction:column;
  background:#fff;
  padding:28px 24px;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  transition:all .3s ease;
}

.janitorial-service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,.14);
}

.janitorial-service-card__icon{
  display:flex;
  justify-content:center;
  margin-bottom:18px;
}

.janitorial-service-card__icon img{
  width:120px;
  height:auto;
  filter:grayscale(0%);
  transition:all .35s ease;
}

.janitorial-service-card:hover .janitorial-service-card__icon img{
  filter:grayscale(100%);
  transform:scale(1.05);
}

.janitorial-hero{
  background-image:url('/images/Janitorial/janitorial-office-hero.jpg');
}

/* Bin Cleaning */
.bin-pricing {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.bin-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 28px;
}

.bin-pricing-card {
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;

  background:#fff;
  padding:32px 28px;

  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);

  transition:all .3s ease;
}

.bin-pricing-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,.14);
}

.bin-pricing-icon{
  margin-bottom:18px;
}

.bin-pricing-icon img{
  width:110px;
  height:auto;
}

.bin-pricing-card h3{
  margin:0 0 10px;
  font-size:1.35rem;
}

.bin-price{
  font-size:2.2rem;
  font-weight:700;
  margin-bottom:16px;
}

.bin-pricing-card ul{
  list-style:none;
  padding:0;
  margin:0 0 22px;
}

.bin-pricing-card ul li{
  margin-bottom:8px;
  line-height:1.6;
}

@media (max-width:991px){
  .bin-pricing-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:640px){
  .bin-pricing-grid{
    grid-template-columns:1fr;
  }
}

.home-services {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 20px 70px;
  box-sizing: border-box;
}

.home-services__intro {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.home-services__intro h2 {
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
}

.home-services__intro p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
}

.home-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.home-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  padding: 30px 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  box-sizing: border-box;
  height: 100%;
}

.home-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

.home-service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
}

.home-service-card__icon img {
  display: block;
  width: 150px;
  max-width: 100%;
  height: auto;
  filter: grayscale(0%);
  opacity: 1;
  transition: all .35s ease;
}

.home-service-card:hover .home-service-card__icon img {
  filter: grayscale(100%);
  opacity: .85;
  transform: scale(1.05);
}

.home-service-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.3;
}

.home-service-card p {
  margin: 0 0 22px;
  line-height: 1.7;
}

.home-service-card .btn {
  margin-top: auto;
}

@media (max-width: 1199px) {
  .home-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-services__grid {
    grid-template-columns: 1fr;
  }

  .home-service-card {
    padding: 24px 18px;
  }
}

/* Commercial */
.commercial-hero {
  position: relative;
  min-height: 420px;
  height: 55vh;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/images/commercial-dumpster-hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.commercial-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

.commercial-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

.commercial-hero__content h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.12;
  font-weight: 700;
  text-shadow:
    2px 2px 4px rgba(0,0,0,0.6),
    0 0 20px rgba(0,0,0,0.4);
}

.commercial-hero__content p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.5;
  text-shadow:
    2px 2px 4px rgba(0,0,0,0.55),
    0 0 18px rgba(0,0,0,0.35);
}

.commercial-page {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  box-sizing: border-box;
}

.commercial-page__intro {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.commercial-page__intro h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
}

.commercial-page__intro p {
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.commercial-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 10px;
}

.commercial-service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  box-sizing: border-box;
  height: 100%;
}

.commercial-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

.commercial-service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
}

.commercial-service-card__icon img {
  display: block;
  width: 120px;
  max-width: 100%;
  height: auto;
  filter: grayscale(0%);
  opacity: 1;
  transition: all .35s ease;
}

.commercial-service-card:hover .commercial-service-card__icon img {
  filter: grayscale(100%);
  opacity: .85;
  transform: scale(1.05);
}

.commercial-service-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.3;
}

.commercial-service-card p {
  margin: 0;
  line-height: 1.7;
}

.commercial-page__cta {
  text-align: center;
  margin-top: 40px;
}

.commercial-page__cta p {
  margin: 0 0 16px;
  font-size: 1.05rem;
}

@media (max-width: 1199px) {
  .commercial-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .commercial-hero {
    min-height: 320px;
    height: 42vh;
  }
}

@media (max-width: 640px) {
  .commercial-services-grid {
    grid-template-columns: 1fr;
  }

  .commercial-service-card {
    padding: 24px 18px;
  }
}

/* Phone Number Style */
/* CTA text styling */
.t4-section.section-tight {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.t4-section.section-tight .t4-section-inner {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.t4-section.section-tight + .t4-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Phone N0. + Call To Action */
.cta_strip {
  text-align: center;
  color: #ffffff;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 12px 1px 15px;   /* added vertical and horizontal spacing */
}

.cta_strip__headline {
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 2px;
  text-shadow:
    2px 2px 4px rgba(0,0,0,.6),
    0 0 20px rgba(0,0,0,.35);
}

.cta_strip__subhead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow:
    2px 2px 4px rgba(0,0,0,.45),
    0 0 16px rgba(0,0,0,.25);
}

.cta_strip__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.cta_strip__phone {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: .02em;
  text-shadow:
    2px 2px 4px rgba(0,0,0,.6),
    0 0 20px rgba(0,0,0,.35);
  transition: transform .25s ease, opacity .25s ease;
}

.cta_strip__phone:hover {
  opacity: .92;
  transform: scale(1.03);
}

.cta_strip__button {
  margin-top: 2px;
}

.cta_strip__trust {
  font-size: .98rem;
  line-height: 1.5;
  opacity: .95;
  text-shadow:
    1px 1px 3px rgba(0,0,0,.4);
}

@media (max-width: 640px) {
  .cta_strip__actions {
    flex-direction: column;
    gap: 12px;
  }
}

/* FAQs */
.highlight1a_title {
  padding: 20px;
  display: inline-block;
  font-size: 1.7em;
  float: left;
  margin-right: 5%;
  background: linear-gradient(#00004c,#4fc1f7);
  color: #ffffff;
}

.title_left_text_sub {
  display: block;
  font-size: 1.3em;
  margin-bottom: 6px;
  margin-top: 10px;
}

.title_left_text {
  overflow: hidden;
}

/* Controls Top Nav Logo Size */
.navbar-brand.logo-control img.logo-img {
  max-height: 70px;
}

/* Removes space before Main Body Section */
  .t4-main-body {
    padding-bottom: 0rem;
}

.t4-footnav .t4-module .module-title span {
  font-weight: 700;
}

/* Adds Space Below Google Reviews */
#grp-widget-1 .grp-reviews-container {
  margin-bottom: 20px;
}

/* Top Icons Process Strip */
.process-strip {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  box-sizing: border-box;
}

.process-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.process-strip__item {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}

.process-strip__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

.process-strip__item h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.process-strip__item p {
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .process-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .process-strip__grid {
    grid-template-columns: 1fr;
  }

  .process-strip__item {
    padding: 24px 18px;
  }
}