   :root{
      --navy:#0b1f3a;
      --navy-dark:#061428;
      --orange:#2ccdbc;
      --orange-light:#ff9a3d;
      --white:#ffffff;
      --soft:#f4f7fb;
    }

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

    body{
      font-family: Arial, sans-serif;
      background: var(--soft);
    }

    a{
      text-decoration:none;
    }

    
    /* =========================
       NAVBAR
    ========================= */
    .navbar-new{
      background: rgba(11,31,58,0.88);
      backdrop-filter: blur(8px);
      padding: 14px 0;
      z-index: 1030;
      transition: .3s ease;
    }



    .navbar-new .nav-link{
      color: rgba(255,255,255,0.92);
      font-weight: 500;
      margin-left: 10px;
      transition: .3s ease;
    }

    .navbar-new .nav-link:hover,
    .navbar-new .nav-link.active{
      color:#53a927;
    }

    .navbar-toggler{
      border: none;
      box-shadow: none !important;
      color: var(--white);
      font-size: 1.5rem;
      padding: 4px 8px;
    }

    .nav-btn{
      background:#53a927;
      color: var(--white);
      padding: 12px 24px;
      border-radius: 40px;
      font-weight: 700;
      display: inline-block;
      transition: .3s ease;
      box-shadow: 0 10px 24px rgba(255,122,0,0.25);
    }

    .nav-btn:hover{
      background:var(--teal-light);
      color: var(--white);
      transform: translateY(-2px);
    }

    /* =========================
       HERO SECTION
    ========================= */
    .hero-new{
      min-height: 100vh;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: stretch;
      margin-top: 0;
    }

    .hero-left{
      width: 56%;
      min-height: 100vh;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      color: var(--white);
      padding: 220px 70px 100px;
      clip-path: polygon(0 0, 86% 0, 100% 100%, 0% 100%);
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
    }

    .hero-content{
      max-width: 560px;
      animation: fadeLeft 1s ease;
    }

    .hero-badge{
      display: inline-block;
      background: #ffffff;
      border: 1px solid rgba(255,122,0,0.25);
      color: #c41425;
      padding: 10px 18px;
      border-radius: 40px;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .hero-title{
      font-size: 3.4rem;
      line-height: 1.15;
      font-weight: 800;
      margin-bottom: 20px; color:#ffffff
    }

    .hero-title span{
      color:#53a927;
    }

    .hero-text{
      font-size: 1.06rem;
      line-height: 1.85;
      color: rgba(255,255,255,0.85);
      margin-bottom: 30px;
      max-width: 520px;
    }

    .hero-actions{
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .hero-btn{
      background:#53a927;
      color: var(--white);
      padding: 14px 28px;
      border-radius: 40px;
      font-weight: 700;
      display: inline-block;
      transition: .3s ease;
      box-shadow: 0 12px 28px rgba(44, 205, 188, 0.28);
    }

    .hero-btn:hover{
      background:var(--teal-light);
      color: var(--white);
      transform: translateY(-3px);
    }

    .hero-btn-outline{
      border: 1px solid rgba(255,255,255,0.18);
      color: var(--white);
      padding: 14px 28px;
      border-radius: 40px;
      font-weight: 700;
      display: inline-block;
      transition: .3s ease;
    }

    .hero-btn-outline:hover{
      background: rgba(255,255,255,0.08);
      color: var(--white);
      transform: translateY(-3px);
    }

    .hero-right{
      position: absolute;
      right: 0;
      top: 0;
      width: 56%;
      height: 100%;
      background: url('../images/hero-image.webp') center center / cover no-repeat;
    }

    .hero-right::before{
      content:"";
      position:absolute;
      inset:0;
      background: linear-gradient(to left, rgba(0,0,0,0.15), rgba(0,0,0,0.45));
    }

    .hero-right::after{
      content:"";
      position:absolute;
      width:260px;
      height:260px;
      border: 2px solid rgba(255,255,255,0.14);
      border-radius:50%;
      top:100px;
      right:90px;
      animation: floatCircle 5s ease-in-out infinite;
    }

    .hero-card{
      position: absolute;
      right: 70px;
      bottom: 70px;
      z-index: 3;
      background: rgba(255,255,255,0.92);
      border-radius: 20px;
      padding: 18px 22px;
      box-shadow: 0 18px 40px rgba(0,0,0,0.18);
      max-width: 280px;
      animation: fadeUp 1.2s ease;
    }

    .hero-card h5{
      margin: 0 0 8px;
      color: var(--navy);
      font-size: 1.1rem;
      font-weight: 800;
    }

    .hero-card p{
      margin: 0;
      color: #44546a;
      font-size: .95rem;
      line-height: 1.7;
    }

    /* =========================
       ANIMATIONS
    ========================= */
    @keyframes fadeLeft{
      from{
        opacity:0;
        transform: translateX(-35px);
      }
      to{
        opacity:1;
        transform: translateX(0);
      }
    }

    @keyframes fadeUp{
      from{
        opacity:0;
        transform: translateY(30px);
      }
      to{
        opacity:1;
        transform: translateY(0);
      }
    }

    @keyframes floatCircle{
      0%,100%{
        transform: translateY(0);
      }
      50%{
        transform: translateY(15px);
      }
    }

    /* =========================
       RESPONSIVE
    ========================= */
    @media (max-width: 1199.98px){
      .hero-left{
        padding: 210px 50px 90px;
      }

      .hero-title{
        font-size: 3rem;
      }
    }

    @media (max-width: 991.98px){
      .top-bar{
        text-align:center;
      }

      .top-bar .container{
        justify-content:center !important;
      }

      .top-bar .top-info{
        justify-content:center;
      }

      .navbar-collapse{
        background: rgba(11,31,58,0.96);
        margin-top: 14px;
        padding: 16px;
        border-radius: 14px;
      }

      .navbar-new .nav-link{
        margin-left: 0;
        padding: 10px 0;
      }

      .hero-new{
        flex-direction: column;
      }

      .hero-left{
        width: 100%;
        min-height: auto;
        clip-path: none;
        padding: 180px 25px 70px;
        text-align: center;
        justify-content: center;
      }

      .hero-content{
        max-width: 100%;
      }

      .hero-text{
        margin-left: auto;
        margin-right: auto;
      }

      .hero-actions{
        justify-content: center;
      }

      .hero-right{
        position: relative;
        width: 100%;
        height: 360px;
      }

      .hero-card{
        right: 20px;
        bottom: 20px;
        max-width: 240px;
      }
    }

    @media (max-width: 575.98px){
      .top-bar{
        font-size: 13px;
      }

      .top-bar .top-info{
        gap:10px;
        flex-direction:column;
      }

      .hero-left{
        padding: 165px 18px 60px;
      }

      .hero-title{
        font-size: 2.2rem;
      }

      .hero-text{
        font-size: .98rem;
        line-height: 1.75;
      }

      .hero-actions{
        flex-direction: column;
      }

      .hero-btn,
      .hero-btn-outline,
      .nav-btn{
        width: 100%;
        text-align: center;
      }

      .hero-right{
        height: 300px;
      }

      .hero-card{
        position: static;
        margin: 18px;
        max-width: unset;
      }

      .hero-right::after{
        display:none;
      }
    }
    .phone-box{
  display:flex;
  align-items:center;
  gap:12px;
}

/* ICON */
.phone-icon{
  width:44px;
  height:44px;
  background:#fff;
  border-radius:50%;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* فون جوه الدائرة */
.phone-icon::before{
  content:"📞";
  font-size:20px;
  color:#fff;
  z-index:2;
}

/* Pulse Effect */
.phone-icon::after{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  border-radius:50%;
  background:#53a927;
  animation:pulse 1.8s infinite;
  z-index:1;
}

/* الرقم */
.phone-number{
  color:#fff;
  font-size:18px;
  font-weight:700;
  letter-spacing:1px;
  transition:.3s;
}

.phone-number:hover{
  color:#2ccdbc;
}

/* Animation */
@keyframes pulse{
  0%{
    transform:scale(1);
    opacity:0.6;
  }
  70%{
    transform:scale(1.8);
    opacity:0;
  }
  100%{
    opacity:0;
  }
}

.eco-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(12, 166, 120, 0.15);
  border: 1px solid rgba(12, 166, 120, 0.4);
  color: #0CA678;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  animation: ecoFloat 3s ease-in-out infinite;
}

.eco-icon {
  font-size: 18px;
}

/* animation */
@keyframes ecoFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}




.dusty-air-section {
  padding: 90px 0;
  background: #ffffff;
}

/* TEXT SIDE */
.section-badge {
  display: inline-block;
  background: rgba(83,169,39,0.1);
  color: #53a927;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  color: #0b1f3a;
  margin-bottom: 20px;
}

.section-text {
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* CTA */
.call-btn {
  display: inline-block;
  background: #53a927;
  color: #fff;
  padding: 14px 26px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  animation: pulseBtn 1.5s infinite;
}

.call-btn:hover {
  background: #0b1f3a;
  transform: translateY(-3px);
}

/* RIGHT SIDE */
.dusty-air-visual {
  position: relative;
  height: 380px;
  border-radius: 20px;
  background-image: url(../images/air-duct-bg.webp) ;
  overflow: hidden;

}

/* CARD */
.visual-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(5, 32, 71, 0.85);
  padding: 20px;
  border-radius: 15px;
  color: #fff;
}

.visual-card h4 {
  margin-bottom: 10px; color: #ffffff;
}

.eco-label {
  display: inline-block;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.15);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
}

/* AIR FLOW */
.flow-line {
  position: absolute;
  width: 150%;
  height: 2px;
  background: rgba(255,255,255,0.2);
  animation: flow 6s linear infinite;
}

.flow-line-1 { top: 30%; }
.flow-line-2 { top: 50%; animation-delay: 1s; }
.flow-line-3 { top: 70%; animation-delay: 2s; }

@keyframes flow {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* BUTTON ANIMATION */
@keyframes pulseBtn {
  0% { box-shadow: 0 0 0 0 rgba(83,169,39,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(83,169,39,0); }
  100% { box-shadow: 0 0 0 0 rgba(83,169,39,0); }
}


.air-steps-section {
  padding: 90px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.steps-head {
  max-width: 760px;
  margin: 0 auto 55px;
}

.steps-badge {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 30px;
  background: rgba(83, 169, 39, 0.12);
  color: #53a927;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.steps-head h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0b1f3a;
  margin-bottom: 15px;
}

.steps-head p {
  font-size: 16px;
  line-height: 1.8;
  color: #586575;
  margin: 0;
}

.steps-wrapper {
  position: relative;
}

.step-line {
  position: absolute;
  top: 42px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(to right, #0b1f3a, #53a927);
  z-index: 1;
  opacity: 0.15;
}

.step-box {
  position: relative;
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 24px;
  padding: 32px 24px 26px;
  height: 100%;
  box-shadow: 0 15px 40px rgba(11, 31, 58, 0.07);
  transition: 0.35s ease;
  z-index: 2;
  text-align: center;
}

.step-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(11, 31, 58, 0.12);
  border-color: rgba(83, 169, 39, 0.3);
}

.step-number {
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b1f3a, #53a927);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(83, 169, 39, 0.22);
  border: 6px solid #fff;
}

.step-box h4 {
  font-size: 21px;
  font-weight: 700;
  color: #0b1f3a;
  margin-bottom: 12px;
}

.step-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #5b6775;
  margin: 0;
}

@media (max-width: 991.98px) {
  .steps-head h2 {
    font-size: 32px;
  }

  .step-line {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .air-steps-section {
    padding: 70px 0;
  }

  .steps-head {
    margin-bottom: 35px;
  }

  .steps-head h2 {
    font-size: 28px;
  }

  .step-box {
    padding: 26px 18px 22px;
  }

  .step-number {
    width: 74px;
    height: 74px;
    font-size: 21px;
  }
}


.clean-methods-section {
  padding: 90px 0;
  background: #f1f4fa;
}

/* HEAD */
.clean-head {
  max-width: 750px;
  margin: 0 auto 40px;
}

.clean-head h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0b1f3a;
  margin-bottom: 15px;
}

.clean-head p {
  color: #555;
  line-height: 1.8;
}

/* BOX */
.methods-box {
  max-width: 850px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(11,31,58,0.08);
  overflow: hidden;
}

/* ROW */
.method-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(11,31,58,0.06);
  transition: 0.3s;
}

.method-row:last-child {
  border-bottom: none;
}

.method-row:hover {
  background: rgba(83,169,39,0.06);
}

/* BULLET */
.bullet {
  min-width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  background: #53a927;
  box-shadow: 0 0 0 4px rgba(83,169,39,0.15);
}

/* TEXT */
.method-row p {
  margin: 0;
  font-size: 15.5px;
  color: #2d2d2d;
  line-height: 1.8;
}

/* FOOTER */
.clean-footer {
  max-width: 750px;
  margin: 35px auto 0;
}

.clean-footer p {
  color: #555;
  line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .clean-head h2 {
    font-size: 28px;
  }
}


.custom-gallery-section {
  padding: 90px 0;
  background: #f8fbf7;
}

.gallery-head {
  max-width: 760px;
  margin: 0 auto 45px;
}

.gallery-badge {
  display: inline-block;
  background: rgba(83, 169, 39, 0.1);
  color: #53a927;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 14px;
}

.gallery-head h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0b1f3a;
  margin-bottom: 14px;
}

.gallery-head p {
  color: #586575;
  line-height: 1.8;
  margin: 0;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 31, 58, 0.78), rgba(11, 31, 58, 0.1));
  opacity: 0.9;
  transition: 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
}

.gallery-overlay h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  background: linear-gradient(to top, rgba(83, 169, 39, 0.72), rgba(11, 31, 58, 0.18));
}

.gallery-item-large {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

.gallery-item-small:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.gallery-item-small:nth-child(3) {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.gallery-item-wide {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
}

.gallery-item-small:last-child {
  display: none;
}

/* Optional if you want 5 visible items in bigger style */
.gallery-layout.five-items {
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 220px 220px 220px;
}

@media (max-width: 991.98px) {
  .gallery-head h2 {
    font-size: 30px;
  }

  .gallery-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 220px 220px;
  }

  .gallery-item-large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .gallery-item-small:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .gallery-item-small:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .gallery-item-wide {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }
}

@media (max-width: 575.98px) {
  .custom-gallery-section {
    padding: 70px 0;
  }

  .gallery-head h2 {
    font-size: 28px;
  }

  .gallery-layout {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 240px);
  }

  .gallery-item-large,
  .gallery-item-small:nth-child(2),
  .gallery-item-small:nth-child(3),
  .gallery-item-wide {
    grid-column: auto;
    grid-row: auto;
  }
}



.faq-section {
  padding: 90px 0;
  background: #f8fbf7;
}

.faq-head {
  max-width: 760px;
  margin: 0 auto 45px;
}

.faq-badge {
  display: inline-block;
  background: rgba(83, 169, 39, 0.1);
  color: #53a927;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 14px;
}

.faq-head h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0b1f3a;
  margin-bottom: 14px;
}

.faq-head p {
  color: #586575;
  line-height: 1.8;
  margin: 0;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 18px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(11, 31, 58, 0.05);
  transition: 0.3s ease;
}

.faq-item.active,
.faq-item:hover {
  border-color: rgba(83, 169, 39, 0.35);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 700;
  color: #0b1f3a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: rgba(83, 169, 39, 0.12);
  color: #53a927;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-left: 15px;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
}

.faq-answer p {
  margin: 0;
  color: #586575;
  line-height: 1.8;
  font-size: 15.5px;
}

@media (max-width: 991.98px) {
  .faq-head h2 {
    font-size: 32px;
  }

  .faq-question {
    font-size: 17px;
    padding: 18px 18px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }
}

@media (max-width: 575.98px) {
  .faq-section {
    padding: 70px 0;
  }

  .faq-head h2 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 16px;
  }
}
.reviews-section {
  padding: 90px 0;
  background: #f8fbf7;
  position: relative;
  overflow: hidden;
}

.reviews-head {
  max-width: 760px;
  margin: 0 auto 45px;
}

.reviews-badge {
  display: inline-block;
  background: rgba(83, 169, 39, 0.1);
  color: #53a927;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 14px;
  font-weight: 600;
}

.reviews-head h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0b1f3a;
  margin-bottom: 14px;
}

.reviews-head p {
  color: #586575;
  line-height: 1.8;
  margin: 0;
}

.review-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  height: 100%;
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.06);
  transition: 0.35s ease;
  position: relative;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(11, 31, 58, 0.12);
  border-color: rgba(83, 169, 39, 0.25);
}

.review-featured {
  background: linear-gradient(135deg, #0b1f3a, #142b4e);
  color: #fff;
  min-height: 100%;
}

.review-featured .review-text,
.review-featured .review-user span,
.review-featured .review-user h5 {
  color: #fff;
}

.review-featured .review-avatar {
  background: #53a927;
  color: #fff;
}

.review-small {
  min-height: 240px;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.review-stars {
  color: #53a927;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1;
}

.review-quote {
  font-size: 76px;
  color: rgba(83, 169, 39, 0.22);
  font-weight: 800;
  line-height: 1;
}

.review-text {
  font-size: 16px;
  line-height: 1.9;
  color: #586575;
  margin-bottom: 28px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(83, 169, 39, 0.12);
  color: #53a927;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.review-user h5 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: #0b1f3a;
}

.review-user span {
  color: #6c7a89;
  font-size: 14px;
}

.reviews-bottom {
  margin-top: 38px;
}

.reviews-btn {
  display: inline-block;
  background: #53a927;
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.reviews-btn:hover {
  background: #0b1f3a;
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 991.98px) {
  .reviews-head h2 {
    font-size: 32px;
  }

  .review-featured {
    min-height: auto;
  }

  .review-small {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .reviews-section {
    padding: 70px 0;
  }

  .reviews-head h2 {
    font-size: 28px;
  }

  .review-card {
    padding: 22px 18px;
  }

  .review-text {
    font-size: 15px;
  }
}


.air-toxins-section {
  padding: 90px 0;
  background: #f8fbf7;
}

.air-toxins-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  min-height: 620px;
  box-shadow: 0 18px 45px rgba(11, 31, 58, 0.1);
}

.air-toxins-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* optional overlay */
.air-toxins-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 31, 58, 0.28),
    rgba(83, 169, 39, 0.08)
  );
}

.air-toxins-content {
  padding-left: 10px;
}

.air-mini-badge {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 30px;
  background: rgba(83, 169, 39, 0.1);
  color: #53a927;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.air-info-box {
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-left: 5px solid #53a927;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 14px 35px rgba(11, 31, 58, 0.06);
  margin-bottom: 22px;
}

.air-info-box h2,
.air-info-box h3 {
  color: #0b1f3a;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}

.air-info-box h2 {
  font-size: 34px;
}

.air-info-box h3 {
  font-size: 28px;
}

.air-info-box p {
  color: #5c6775;
  font-size: 15.5px;
  line-height: 1.9;
  margin-bottom: 14px;
}

.air-info-box p:last-child {
  margin-bottom: 0;
}

.air-section-btn {
  display: inline-block;
  background: #53a927;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 700;
  transition: 0.3s ease;
}

.air-section-btn:hover {
  background: #0b1f3a;
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 991.98px) {
  .air-toxins-image {
    min-height: 420px;
  }

  .air-info-box h2 {
    font-size: 28px;
  }

  .air-info-box h3 {
    font-size: 24px;
  }

  .air-toxins-content {
    padding-left: 0;
  }
}

@media (max-width: 575.98px) {
  .air-toxins-section {
    padding: 70px 0;
  }

  .air-toxins-image {
    min-height: 320px;
  }

  .air-info-box {
    padding: 22px 18px;
  }

  .air-info-box h2 {
    font-size: 24px;
  }

  .air-info-box h3 {
    font-size: 21px;
  }

  .air-info-box p {
    font-size: 15px;
  }
}


/* SECTION */
.contact-section {
  padding: 90px 0;
  background: #f8fbf7;
}

/* FORM BOX */
.contact-box {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(11,31,58,0.08);
}

/* BADGE */
.contact-badge {
  display: inline-block;
  background: rgba(83,169,39,0.1);
  color: #53a927;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 10px;
}

/* TITLE */
.contact-box h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0b1f3a;
  margin-bottom: 20px;
}

/* FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

.contact-form textarea {
  height: 110px;
  resize: none;
}

.contact-form button {
  width: 100%;
  background: #53a927;
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0b1f3a;
}

/* CALL BUTTON */
.contact-call {
  display: block;
  margin-top: 15px;
  text-align: center;
  color: #0b1f3a;
  font-weight: 600;
  text-decoration: none;
}

/* BEFORE AFTER CONTAINER */
.before-after {
  position: relative;
  height: 700px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(11,31,58,0.1);
}

/* IMAGES */
.before-after img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* AFTER IMAGE WITH ANIMATION */
.img-after {
  clip-path: inset(0 0 0 80%);
  animation: beforeAfterMove 6s infinite ease-in-out;
}

/* SLIDER LINE */
.slider-line {
  position: absolute;
  top: 0;
  left: 80%;
  width: 3px;
  height: 100%;
  background: #53a927;
  box-shadow: 0 0 10px rgba(83,169,39,0.6);
  animation: lineMove 6s infinite ease-in-out;
}

/* LABELS */
.label {
  position: absolute;
  top: 15px;
  padding: 6px 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 12px;
  border-radius: 20px;
  z-index: 2;
}

.before-label { left: 15px; }
.after-label { right: 15px; }

/* ANIMATIONS */
@keyframes beforeAfterMove {
  0% { clip-path: inset(0 0 0 80%); }
  50% { clip-path: inset(0 0 0 20%); }
  100% { clip-path: inset(0 0 0 80%); }
}

@keyframes lineMove {
  0% { left: 80%; }
  50% { left: 20%; }
  100% { left: 80%; }
}

/* PAUSE ON HOVER */
.before-after:hover .img-after,
.before-after:hover .slider-line {
  animation-play-state: paused;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .before-after {
    height: 300px;
    margin-top: 20px;
  }

  .contact-box h2 {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-box {
    padding: 20px;
  }

  .contact-box h2 {
    font-size: 22px;
  }
}


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

/* FORM WRAPPER */
form.CUS {
    max-width: 900px;
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    background: #f9fafb;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: system-ui, sans-serif;
}

/* FLEX FIELDSET */
form.CUS fieldset {
    display: flex;
    flex-wrap: wrap;
    border: none;
    padding: 0;
    margin: 0;
}

/* BASE BLOCK STYLE */
form.CUS fieldset > p {
    width: 100%;
    padding: 10px;
    margin: 0;
    font-size: 0.95rem;
    color: #444;
}

/* Universal input/select styling */
form.CUS input,
form.CUS select,
form.CUS textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

/* ===============================
   ROW 1: Name, Phone, Address
=============================== */
form.CUS fieldset > p:nth-of-type(1),
form.CUS fieldset > p:nth-of-type(2),
form.CUS fieldset > p:nth-of-type(3) {
    width: 33.333%;
}

/* ===============================
   ROW 2: City, State, Zip Code
=============================== */
form.CUS fieldset > p:nth-of-type(4),
form.CUS fieldset > p:nth-of-type(5),
form.CUS fieldset > p:nth-of-type(6) {
    width: 33.333%;
}

/* ===============================
   SERVICE NEEDED TEXTAREA
=============================== */
form.CUS fieldset > p:nth-of-type(7) {
    width: 100%;
}

/* ===============================
   SERVICE DATE (Month, Day, Year)
   â†’ ALL 3 IN ONE ROW
=============================== */

/* Make the 8th <p> (Service Date block) a flex row */
form.CUS fieldset > p:nth-of-type(8) {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: flex-start;
}

/* Month, Day, Year = 3 equal flex columns */
form.CUS fieldset > p:nth-of-type(8) select#service_date,
form.CUS fieldset > p:nth-of-type(8) select#service_day,
form.CUS fieldset > p:nth-of-type(8) input#service_year {
    flex: 1 1 0;
    width: auto;          /* flex handles width */
    margin-top: 6px;
}

/* ===============================
   SERVICE TIME (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(9) {
    width: 100%;
}

/* ===============================
   SUBMIT BUTTON (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(10) {
    width: 100%;
}

form.CUS input[type="submit"] {
    width: 100%;
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

form.CUS input[type="submit"]:hover {
    background: #1d4ed8;
}

/* Hide honeypot */
form.CUS input.subject {
    display: none;
}

/* ===============================
   MOBILE RESPONSIVE (stack fields)
=============================== */
@media (max-width: 600px) {

    form.CUS fieldset > p {
        width: 100%;
        padding: 6px 0;
    }

    /* Month, Day, Year full width stacked on mobile */
    form.CUS fieldset > p:nth-of-type(8) {
        flex-direction: column;
        gap: 6px;
    }

    form.CUS fieldset > p:nth-of-type(8) select#service_date,
    form.CUS fieldset > p:nth-of-type(8) select#service_day,
    form.CUS fieldset > p:nth-of-type(8) input#service_year {
        flex: none;
        width: 100% !important;
    }
/* ===============================
   ROW 1: Name, Phone, Address
=============================== */
form.CUS fieldset > p:nth-of-type(1),
form.CUS fieldset > p:nth-of-type(2),
form.CUS fieldset > p:nth-of-type(3) {
    width: 100%;
}

/* ===============================
   ROW 2: City, State, Zip Code
=============================== */
form.CUS fieldset > p:nth-of-type(4),
form.CUS fieldset > p:nth-of-type(5),
form.CUS fieldset > p:nth-of-type(6) {
    width: 100%;
}
}


.pre-footer-section {
  padding: 80px 0 50px;
  background: #0b1f3a;
  color: #fff;
}

.pre-footer-box,
.zip-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.pre-footer-badge {
  display: inline-block;
  background: rgba(83, 169, 39, 0.18);
  color: #8ee05a;
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.pre-footer-box h3,
.pre-footer-box h4 {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.4;
}

.pre-footer-box h3 {
  font-size: 28px;
}

.pre-footer-box h4 {
  font-size: 22px;
}

.pre-footer-box p,
.zip-box p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  margin: 0;
  font-size: 15px;
}

.info-list,
.link-list,
.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li,
.link-list li,
.location-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
  font-size: 15px;
}

.info-list li::before,
.link-list li::before,
.location-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #53a927;
}

.pre-footer-box a {
  color: #8ee05a;
  text-decoration: none;
}

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

.zip-box {
  text-align: center;
  padding: 24px;
}

.zip-box p {
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .pre-footer-box h3 {
    font-size: 24px;
  }

  .pre-footer-box h4 {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  .pre-footer-section {
    padding: 70px 0 40px;
  }

  .pre-footer-box,
  .zip-box {
    padding: 22px 18px;
  }

  .pre-footer-box h3 {
    font-size: 22px;
  }

  .pre-footer-box h4 {
    font-size: 18px;
  }

  .zip-box p {
    font-size: 15px;
  }
}


.map-box h4 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}

.map-wrap {
  width: 100%;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 575.98px) {
  .map-wrap {
    height: 260px;
  }
}