/********** Template CSS **********/
:root {
    --primary: #FFE468;
    --secondary: #39B54A;
    --light: #F2F2F2;
    --dark: #272630;
}

@font-face {
  font-family: "Font Awesome 5 Free";
  src: url("../webfonts/fa-solid-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}




a:hover{
    color: #FFE468;
}




.btn {
    font-weight: 700;
    transition: .5s;
}

.btn:hover {
    -webkit-box-shadow: 0 8px 6px -6px #555555;
    -moz-box-shadow: 0 8px 6px -6px #555555;
    box-shadow: 0 8px 6px -6px #555555;
}

.btn.btn-secondary {
    color: #FFFFFF;
}



.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    left: 30px;
    bottom: 30px;
    z-index: 99;
    background-color: #0072BC;
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 30px;
    padding: 35px 0;
    font-size: 18px;
    color: var(--light);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: white;
}

@media (min-width: 992px) {
    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        bottom: 0;
        left: 50%;
        background: #0072BC;
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}



.bg-hero {
  position: relative;
    background: url(../img/banner-air-duct-cleaning.webp);
    background-position: top;
        background-size: cover;
    background-attachment: fixed;

    height: 75vh;


}

/* Overlay layer */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* adjust darkness */
  z-index: 1;
      height: 75vh;
          display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Content above overlay */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 650px;
  padding: 40px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #0072BC;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
}



@media (max-width: 991.98px) {
    .bg-hero {
        background-size: cover;
    }
}

.about-start,
.about-end {
background-color: #39B54A;
color: white;
}

@media (min-width: 992px) {
    .about-start {
        position: relative;
        margin-right: -90px;
        z-index: 1;
    }

    .about-end {
        position: relative;
        margin-left: -90px;
        z-index: 1;
    }
}

.service-item,
.contact-item {
background-color: #39B54A;

    transition: .5s;
}

.service-item:hover,
.contact-item:hover

 {
background-color: #0072BC;

}
.service-item h3{
    color: white;
}
.service-item .service-icon,
.contact-item .contact-icon {
    margin-top: -50px;
    width: 100px;
    height: 100px;
    color: white;
    background: #FFFFFF;
    transform: rotate(-45deg);
}

.service-item .service-icon svg{
   transform: rotate(45deg);
}
.service-item:hover .service-icon svg{
 color: #FFE468;
}
.service-item .service-icon div,
.contact-item .contact-icon div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0072BC;
    transition: .5s;
}

.service-item .service-icon i,
.contact-item .contact-icon i {
    transform: rotate(45deg);
    transition: .5s;
}

.service-item:hover .service-icon div,
.contact-item:hover .contact-icon div {
    background: var(--secondary);
}

.service-item:hover .service-icon i,
.contact-item:hover .contact-icon i {
    color: var(--primary);
}

.service-item a.btn {
    position: relative;
    bottom: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: 0;
    opacity: 1;
}



@media (max-width: 991.98px) {
    .bg-quote {
        background-size: cover;
    }
}

.team-item {
    position: relative;
    margin-bottom: 45px;
}

.team-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  background-color: #39B54A;

    height: 90px;
    padding: 0 30px;
    right: 45px;
    left: 45px;
    bottom: -45px;
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-text {
    height: 30%;
    bottom: 0;
          display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;  
}

.offer-txt span{
    color: #FFE468;
}



.team-item:hover .team-social {
    transition-delay: .3s;
    opacity: 1;
}



@media (max-width: 991.98px) {

}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next{
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0072BC;
    background: white;
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: black;
}

.testimonial-carousel .owl-item img {
    width: 60px;
    height: 60px;
}

.owl-prev svg{
  color: #0072BC;
}

.bg-call-to-action {
background-color: #39B54A;
}





/* custom style */

.obfuscatedEmail a{
    color: black;
}


.social i{
    color: #0072BC;
}

.free-btn{
    font-size: 23px;
}
.feature-item{


        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
}

.feature-item i{
    color: #0072BC;
    font-size: 70px;
}

@media (max-width: 1200px) {

.feature-item{

    margin-bottom: 5%;
}



}



.btn-pulse{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 26px;
  background:#39B54A;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  border-radius:10px;
  position:relative;
  isolation:isolate;
  transition:transform .2s ease, filter .2s ease;
}

.btn-pulse::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:#39B54A;
  z-index:-1;
  animation:pulse 1.6s infinite;
  opacity:.35;
}

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

@keyframes pulse{
  0%{ transform:scale(1); opacity:.35; }
  70%{ transform:scale(1.18); opacity:0; }
  100%{ transform:scale(1.18); opacity:0; }
}

legend{
    font-weight: 700;
    font-size: 26px;
    text-transform: uppercase;
    color: #0072BC;
}


form input, textarea{
    background-color: #E9ECEF !important;
}

.bg-footer .obfuscatedEmail a{
    color: white;
}

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

.zip-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border:2px solid #fff;
  color:#fff;
  background:transparent;
  text-decoration:none;
  border-radius:999px; /* pill shape */
  font-weight:700;
  letter-spacing:.5px;
  transition:background-color .25s ease, transform .2s ease;
}

.zip-btn:hover{
  background:#39B54A;
  color:#fff;
  transform:translateY(-2px);
}


/* ===== Service Locations (White Background) ===== */
.service-locations{
  background: #ffffff;
  color: #1a1a1a;
  padding: clamp(48px, 6vw, 90px) 0;
}

.sl-container{
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.sl-head{
  text-align: center;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.sl-title{
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.1;
  font-weight: 800;
}

.sl-subtitle{
  margin: 0 auto;
  max-width: 740px;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.6;
  color: #555;
}

/* ===== Grid ===== */
.sl-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(18px, 2.8vw, 26px);
}

/* ===== Buttons ===== */
.sl-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 14px;
  min-height: 52px;

  background-color: #39B54A;
  color: #ffffff;
  text-decoration: none;

  font-weight: 700;
  letter-spacing: .2px;

  border-radius: 14px;
  border: none;

  transition: background-color .2s ease, transform .18s ease, box-shadow .18s ease;
}

.sl-btn:hover,
.sl-btn:focus-visible{
  background-color: #16559A; /* Blue hover */
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
  outline: none;
}

.sl-btn:active{
  transform: translateY(0);
  box-shadow: none;
}

/* ===== Note Box ===== */
.sl-note{
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid #e5e5e5;
  background: #f9f9f9;
  border-radius: 14px;
  color: #555;
  text-align: center;
  font-size: 14px;
}

.sl-note strong{
  color: #000;
}

/* ===== Responsive Breakpoints ===== */
@media (max-width: 1024px){
  .sl-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px){
  .sl-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sl-btn{
    min-height: 50px;
    border-radius: 12px;
  }
}

@media (max-width: 420px){
  .sl-container{
    width: calc(100% - 22px);
  }

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

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce){
  .sl-btn{
    transition: none;
  }

  .sl-btn:hover,
  .sl-btn:focus-visible{
    transform: none;
  }
}


.bg-testimonial{
    background-color: #39B54A;
}


/* testimonials styles */
/* ===== Special Offers Section (White Background) ===== */
.special-offers{
  background: #ffffff;
  padding: clamp(44px, 6vw, 90px) 0;
 
}

.offers-container{
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
 
}

.offers-card{
  border: 1px solid #e9e9e9;
  border-radius: 18px;
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  position: relative;
  overflow: hidden;
}



/* Title */
.offers-title{
  margin: 0 0 12px;
  font-size: clamp(22px, 2.6vw, 38px);
  line-height: 1.15;
  font-weight: 800;
  color: #111;
}

.offers-title span{
  color: #39B54A;
}

/* Subtitle */
.offers-subtitle{
  margin: 0;
  max-width: 860px;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.7;
  color: #555;
}

/* Buttons */
.offers-actions{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.offers-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* Primary button */
.offers-btn-primary{
  background: #39B54A;
  color: #fff;
  border: 1px solid #39B54A;
}

.offers-btn-primary:hover{
  background: #16559A;
  border-color: #16559A;
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0,0,0,.12);
}

/* Outline button */
.offers-btn-outline{
  background: transparent;
  color: #16559A;
  border: 2px solid #16559A;
}

.offers-btn-outline:hover{
  background: #16559A;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0,0,0,.10);
}

/* Mobile */
@media (max-width: 520px){
  .offers-actions{
    flex-direction: column;
  }
  .offers-btn{
    width: 100%;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce){
  .offers-btn{
    transition: none;
  }
  .offers-btn-primary:hover,
  .offers-btn-outline:hover{
    transform: none;
  }
}






/* testimonials styles */



   /* start restore */
.fixed-bg-section{
  /* replace with your image path */

  position: relative;

}
.fixed-bg-section::before{
  content:"";
  position:absolute;
  inset:0;
  /* #B3F2C7 with 70% opacity */
  background: #39B54A;
  /* or: background: #B3F2C7B3;  /* hex with alpha (~70%) */
}
.fixed-bg-section .container{
  position:relative; /* above overlay */
  z-index:1;
}

.restore-txt{
  color: black;

  width: 70%;
  margin: auto;
}

.restore-content{
  background-color: white;
  border-radius: 10px;
}


   /* end restore */



   /* start fast */
.fast{
  background-color: #39B54A;
  padding: 5%;
  width: 70%;
  margin: auto;
  text-align: center;
}

.fast-txt p{
  color: black;
}
/* end fast */

/* start faq */


/* ===== FAQ Section Styles ===== */
.faq-eco{
  background: #39B54A; /* green background */
}

.faq-title{
  color: #000;          /* titles in black */
  font-weight: 900;
  letter-spacing: .2px;
   font-size: clamp(28px, 3vw, 44px); /* was smaller */
  margin-bottom: 10px;
}

.faq-subtitle{
  color: #fff;          /* text in white */
  opacity: .95;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
}

/* Accordion container */
.faq-accordion{
  border-radius: 18px;
  overflow: hidden;
}

/* Each item */
.faq-item{
  border: 0;
  margin-bottom: 12px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  background: rgba(255,255,255,.10);
}

/* Button (Question) */
.faq-btn{
  background: #FFE468 !important; /* yellow accent */
  color: #000 !important;
  font-weight: 900;
  border: 0;
  padding: 16px 18px;
  font-size: clamp(17px, 1.3vw, 20px);
}

.faq-btn:focus{
  box-shadow: 0 0 0 .2rem rgba(0,114,188,.35) !important; /* blue focus ring */
}

/* Remove default bootstrap icon background, style it */
.accordion-button::after{
  filter: brightness(0);
  opacity: .9;
}

/* When open */
.accordion-button:not(.collapsed){
  background: #0072BC !important;  /* blue when open */
  color: #fff !important;
}

.accordion-button:not(.collapsed)::after{
  filter: brightness(0) invert(1);
}

/* Answer body */
.faq-body{
  background: rgba(0,0,0,.12);
  color: #fff;

  padding: 16px 18px;
   font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.75;
}

/* Responsive tweaks */
@media (max-width: 576px){
  .faq-btn{ padding: 14px 14px; }
  .faq-body{ padding: 14px 14px; font-size: 15px; }
}

.bg-hero p{
font-size: 25px;
}



/* end faq */
@media (max-width: 400px){

.navbar .logo{
  width: 180px;
}

.bg-hero p{
font-size: 18px;
}

.bg-hero .btn-secondary{
  margin-bottom: 2%;
}
}

/* ===== Accessibility: Navbar contrast fix ===== */
.navbar {
  background-color: #39B54A !important;
}

.navbar .navbar-nav .nav-link{
  color: #ffffff !important;   /* stronger contrast */
  font-weight: 700;
}

/* Active / hover underline is fine, but make text very clear */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus-visible,
.navbar .navbar-nav .nav-link.active{
  color: #ffffff !important;
  text-decoration: none;
}

/* Optional: add a visible pill background for active link (best for contrast) */
.navbar .navbar-nav .nav-link.active{
  background: rgba(0,0,0,.18);
  border-radius: 10px;
  padding-left: 14px;
  padding-right: 14px;
}


.navbar small,
.navbar .text-primary,
.navbar .text-light{
  color: #ffffff !important;
}

.navbar .nav-link:focus-visible{
  outline: 3px solid #FFE468;
  outline-offset: 4px;
  border-radius: 10px;
}

/* ===== Accessibility: Touch target fixes ===== */
.social a{
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px !important;  /* overrides py-2 px-3 if needed */
}

.social{
  gap: 8px;
}

.social .d-inline-flex{
  gap: 8px;  /* space between icons */
}

@media (max-width: 991.98px){
  .social a.border-end{ border-right: 0 !important; }
}

a.icon-link,
.back-to-top{
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px){
.bg-hero .btn-secondary{
  margin-bottom: 6%;
}

}

