@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/poppins-v20-latin-300.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v20-latin-regular.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v20-latin-500.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v20-latin-600.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v20-latin-700.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/poppins-v20-latin-800.woff2') format('woff2')
}

:root {
  --dark: #061d2b;
  --green: #0d4d4a;
  --mint: #2ff3cf;
  --soft: #eafff9;
  --yellow: #ffc857;
  --white: #ffffff;
  --text: #2d3d45;
}

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

body {
 
  overflow-x: hidden;
}

.container {
  width: 92%;
  max-width: 1320px;
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.align-items-center {
  align-items: center;
}

.col-lg-6 {
  width: 50%;
}

/* HERO BACKGROUND */
.pa-hero {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.pa-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, var(--dark) 0%, var(--dark) 52%, var(--green) 52%, #0b766b 100%);
  z-index: 0;
}

.pa-hero::after {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  right: -180px;
  top: 100px;
  background: rgba(47, 243, 207, .18);
  filter: blur(20px);
}

/* NAV */
.pa-nav {
  position: relative;
  z-index: 20;
  padding: 22px 0;
}

.pa-nav-box {
  min-height: 78px;
  padding: 0 26px;
  border-radius: 50px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.pa-logo {
  text-decoration: none;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-fan {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--dark);
  display: grid;
  place-items: center;
  font-size: 27px;
  animation: fanSpin 3s linear infinite;
}

.pa-logo strong {
  display: block;
  font-size: 22px;
}

.pa-logo small {
  color: rgba(255,255,255,.7);
  font-size: 12px;
}

.pa-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

.pa-menu li {
  position: relative;
}

.pa-menu a {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-weight: 700;
  transition: .3s;
}

.pa-menu a:hover {
  color: var(--mint);
}

.pa-dropdown ul {
  position: absolute;
  top: 36px;
  left: 0;
  min-width: 220px;
  background: var(--white);
  list-style: none;
  padding: 12px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: .3s;
}

.pa-dropdown:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pa-dropdown ul a {
  display: block;
  color: var(--dark);
  padding: 11px 12px;
  border-radius: 10px;
}

.pa-dropdown ul a:hover {
  background: rgba(47,243,207,.14);
}

.pa-call {
  padding: 14px 22px;
  border-radius: 40px;
  background: var(--yellow);
  color: var(--dark);
  text-decoration: none;
  font-weight: 900;
  transition: .3s;
}

.pa-call:hover {
  transform: translateY(-4px);
  background: var(--mint);
}

#paMenu {
  display: none;
}

.pa-bars {
  display: none;
}

/* HERO CONTENT */
.pa-hero-section {
  position: relative;
  z-index: 5;
  padding: 75px 0 110px;
}

.pa-text {
  position: relative;
  z-index: 6;
  color: var(--white);
  animation: fadeLeft .9s ease both;
}

.pa-subtitle {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 40px;
  background: rgba(47,243,207,.13);
  border: 1px solid rgba(47,243,207,.35);
  color: var(--mint);
  font-weight: 800;
  margin-bottom: 24px;
}

.pa-text h1 {
  font-size: 66px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 25px;
}

.pa-text p {
  max-width: 590px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,.76);
  margin-bottom: 35px;
}

.pa-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-main,
.btn-light {
  padding: 16px 36px;
  border-radius: 45px;
  text-decoration: none;
  font-weight: 900;
  transition: .35s;
  font-size: 25px;
}

.btn-main {
  background: var(--mint);
  color: var(--dark);
  box-shadow: 0 18px 40px rgba(47,243,207,.28);
}

.btn-light {
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}

.btn-main:hover,
.btn-light:hover {
  transform: translateY(-7px);
}

/* VISUAL */
.pa-visual {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeRight 1s ease both;
}

.photo-shape {
  width: 500px;
  height: 600px;
  overflow: hidden;
  position: relative;
  z-index: 4;
  border-radius: 70% 30% 45% 55% / 55% 45% 55% 45%;
  border: 12px solid rgba(255,255,255,.16);
  box-shadow: 0 35px 90px rgba(0,0,0,.35);
  animation: organicMove 7s ease-in-out infinite;
}

.photo-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-shape::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.16));
}

/* FLOATING CARDS */
.mini-card {
  position: absolute;
  z-index: 7;
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: 22px;
  padding: 17px 22px;
  min-width: 155px;
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
  animation: floatCard 4s ease-in-out infinite;
}

.mini-card strong {
  display: block;
  color: var(--green);
  font-size: 26px;
}

.mini-card span {
  font-weight: 800;
  font-size: 13px;
}

.card-a {
  left: 0;
  top: 17%;
}

.card-b {
  right: 0;
  bottom: 16%;
  animation-delay: 1s;
}

.fan-circle {
  position: absolute;
  right: 10%;
  top: 8%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dark);
  display: grid;
  place-items: center;
  font-size: 42px;
  z-index: 8;
  animation: fanSpin 4s linear infinite;
  box-shadow: 0 0 45px rgba(255,200,87,.45);
}

/* AIR EFFECTS */
.air-line {
  position: absolute;
  width: 360px;
  height: 80px;
  border-top: 3px solid rgba(234,255,249,.34);
  border-radius: 50%;
  z-index: 2;
}

.line-1 {
  left: 4%;
  top: 36%;
  animation: airFlow 6s linear infinite;
}

.line-2 {
  left: 38%;
  top: 24%;
  animation: airFlow 7s linear infinite reverse;
}

.line-3 {
  right: 2%;
  bottom: 22%;
  animation: airFlow 5s linear infinite;
}

/* ANIMATION */
@keyframes fanSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-55px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(55px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes organicMove {
  0%,100% {
    border-radius: 70% 30% 45% 55% / 55% 45% 55% 45%;
    transform: translateY(0);
  }
  50% {
    border-radius: 45% 55% 70% 30% / 45% 60% 40% 55%;
    transform: translateY(-18px);
  }
}

@keyframes floatCard {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes airFlow {
  0% {
    transform: translateX(-90px) scaleX(.7);
    opacity: .06;
  }
  50% {
    opacity: .75;
  }
  100% {
    transform: translateX(170px) scaleX(1.15);
    opacity: .05;
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .col-lg-6,
  .col-md-12 {
    width: 100%;
  }

  .pa-nav-box {
    border-radius: 24px;
    flex-wrap: wrap;
    padding: 15px 22px;
  }

  .pa-bars {
    display: block;
    cursor: pointer;
  }

  .pa-bars span {
    width: 30px;
    height: 3px;
    display: block;
    margin: 6px 0;
    background: var(--white);
    border-radius: 5px;
  }

  .pa-menu {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    transition: .4s;
  }

  #paMenu:checked ~ .pa-menu {
    max-height: 650px;
    padding-top: 18px;
  }

  .pa-menu li,
  .pa-menu a {
    width: 100%;
  }

  .pa-menu a {
    display: block;
    padding: 12px 0;
  }

  .pa-dropdown ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin: 5px 0 10px;
  }

  .pa-dropdown:hover ul {
    display: block;
  }

  .pa-call {
    display: none;
  }

  .pa-hero::before {
    background: linear-gradient(160deg, var(--dark) 0%, var(--dark) 60%, var(--green) 60%);
  }

  .pa-text {
    text-align: center;
  }

  .pa-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .pa-btns {
    justify-content: center;
  }

  .pa-visual {
    margin-top: 45px;
  }
}

@media (max-width: 575px) {
  .pa-logo strong {
    font-size: 18px;
  }

  .pa-text h1 {
    font-size: 42px;
  }

  .pa-text p {
    font-size: 16px;
  }

  .btn-main,
  .btn-light {
    width: 100%;
    text-align: center;
  }

  .photo-shape {
    width: 300px;
    height: 390px;
  }

  .mini-card,
  .fan-circle {
    display: none;
  }
}

.pa-process-section {
  position: relative;
  padding: 110px 0;
  background: #f7fdfd;
  overflow: hidden;
}

.pa-process-section::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(37, 211, 179, .10);
  top: -340px;
  right: -160px;
}

.pa-process-section::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 130px;
  border-top: 3px solid rgba(15, 118, 110, .16);
  border-radius: 50%;
  left: -80px;
  bottom: 70px;
  animation: processAir 6s linear infinite;
}

.pa-process-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.pa-process-title span {
  color: #0f766e;
  font-weight: 900;
  letter-spacing: 2px;
}

.pa-process-title h2 {
  color: #071a24;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  margin: 12px 0;
}

.pa-process-title p {
  color: #6b7b83;
  font-size: 17px;
}

.pa-process-row {
  row-gap: 35px;
  position: relative;
  z-index: 3;
}

.pa-process-card {
  height: 100%;
  position: relative;
  padding: 85px 36px 38px;
  background: #ffffff;
  border-radius: 26px;
  border: 1px solid rgba(7, 26, 36, .08);
  box-shadow: 0 18px 55px rgba(7, 26, 36, .08);
  transition: .4s ease;
  overflow: hidden;
}

.pa-process-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -70px;
  top: -70px;
  background: rgba(37, 211, 179, .12);
  border-radius: 50%;
  transition: .4s;
}

.pa-process-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(47,243,207,.08), transparent);
  opacity: 0;
  transition: .4s;
}

.pa-process-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 30px 80px rgba(7, 26, 36, .15);
}

.pa-process-card:hover::before {
  transform: scale(1.35);
}

.pa-process-card:hover::after {
  opacity: 1;
}

.pa-process-icon {
  position: absolute;
  top: -1px;
  left: 36px;
  width: 92px;
  height: 140px;
  border-radius: 0 0 55px 55px;
  border: 1px solid rgba(15, 118, 110, .16);
  background: #ffffff;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: .4s;
}

.pa-process-icon i {
  font-style: normal;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(37, 211, 179, .12);
  color: #0f766e;
  font-size: 28px;
  font-weight: 900;
  animation: fanSpin 4s linear infinite;
}

.pa-process-card:hover .pa-process-icon,
.pa-process-card.active .pa-process-icon {
  background: linear-gradient(180deg, #25d3b3, #0f766e);
}

.pa-process-card:hover .pa-process-icon i,
.pa-process-card.active .pa-process-icon i {
  background: rgba(255,255,255,.18);
  color: #ffffff;
}

.pa-process-no {
  color: #25d3b3;
  font-size: 19px;
  font-weight: 900;
  margin-left: 118px;
  margin-bottom: 12px;
}

.pa-process-card h3 {
  color: #071a24;
  font-size: 27px;
  line-height: 1.25;
  font-weight: 900;
  margin-left: 118px;
  margin-bottom: 24px;
}

.pa-process-card p {
  color: #6b7b83;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.pa-process-card a {
  color: #0f766e;
  text-decoration: none;
  font-weight: 900;
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pa-process-card a span {
  transition: .3s;
}

.pa-process-card a:hover span {
  transform: translateX(7px);
}

@keyframes processAir {
  0% {
    transform: translateX(-80px) scaleX(.7);
    opacity: .05;
  }
  50% {
    opacity: .8;
  }
  100% {
    transform: translateX(180px) scaleX(1.2);
    opacity: .05;
  }
}

@media (max-width: 991px) {
  .col-lg-4,
  .col-md-6 {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .col-lg-4,
  .col-md-6 {
    width: 100%;
  }

  .pa-process-card {
    padding: 165px 28px 34px;
  }

  .pa-process-no,
  .pa-process-card h3 {
    margin-left: 0;
  }
}

.duct-bg-section {
  position: relative;
  padding: 95px 0 70px;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(90deg,
      rgba(3, 18, 25, .98) 0%,
      rgba(5, 38, 43, .93) 42%,
      rgba(11, 78, 72, .58) 68%,
      rgba(234, 255, 249, .35) 100%
    ),
    url("../air-duct/air-duct-cleaning-bg.webp") center right / cover no-repeat;
}

.duct-bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(255, 200, 87, .18), transparent 22%),
    radial-gradient(circle at 38% 45%, rgba(37, 211, 179, .22), transparent 25%),
    linear-gradient(90deg, rgba(3,18,25,.78), rgba(3,18,25,.15), rgba(255,255,255,.08));
  pointer-events: none;
  z-index: 1;
}

.duct-bg-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.035) 0 1px,
      transparent 1px 42px
    );
  opacity: .5;
  pointer-events: none;
  z-index: 2;
}

.duct-bg-content,
.estimate-card-dark,
.duct-trust-row {
  position: relative;
  z-index: 5;
}

/* CONTENT */
.duct-bg-badge {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid #25d3b3;
  color: #25d3b3;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.duct-bg-content h2 {
  color: #ffffff;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 8px;
}

.duct-bg-content h2 span {
  display: block;
  color: #25d3b3;
}

.duct-bg-content h4 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 26px;
}

.duct-bg-content h4 b,
.duct-bg-content h4 span {
  color: #ffc857;
}

.duct-bg-content p {
  color: rgba(255,255,255,.86);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* BENEFITS */
.duct-benefits {
  margin-top: 28px;
  padding: 26px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(37,211,179,.18);
  backdrop-filter: blur(13px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.duct-benefits div {
  text-align: center;
  padding: 0 16px;
}

.duct-benefits div:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.22);
}

.duct-benefits span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d3b3, #0f766e);
  color: #ffffff;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-size: 25px;
  font-weight: 900;
}

.duct-benefits h5 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 8px;
}

.duct-benefits p {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* LOCATION */
.duct-location {
  margin-top: 24px;
  padding: 18px 24px;
  border-radius: 18px;
  background: rgba(7, 26, 36, .58);
  border: 1px solid rgba(37,211,179,.35);
  display: flex;
  gap: 18px;
  align-items: center;
}

.duct-location strong {
  color: #25d3b3;
  font-size: 34px;
}

.duct-location p {
  margin: 0;
  color: #ffffff;
}

.duct-location b {
  color: #ffc857;
}

/* ESTIMATE CARD */
.estimate-card-dark {
  max-width: 460px;
  margin-left: auto;
  margin-top: 250px;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 28px 75px rgba(0,0,0,.32);
  animation: estimateFloat 4.5s ease-in-out infinite;
}

.estimate-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.estimate-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f766e, #071a24);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 30px;
  flex: 0 0 auto;
}

.estimate-card-dark span {
  color: #0f766e;
  font-weight: 900;
  text-transform: uppercase;
}

.estimate-card-dark h3 {
  color: #071a24;
  font-size: 29px;
  line-height: 1.15;
  margin-top: 8px;
}

.estimate-card-dark ul {
  list-style: none;
  padding: 22px 0;
  margin: 22px 0 0;
  border-top: 1px solid rgba(7,26,36,.16);
}

.estimate-card-dark li {
  color: #263841;
  margin-bottom: 12px;
  font-size: 16px;
}

.estimate-card-dark li::before {
  content: "✓";
  color: #0f766e;
  font-weight: 900;
  margin-right: 10px;
}

.estimate-card-dark a {
  display: block;
  text-align: center;
  padding: 16px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f766e, #25d3b3);
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  transition: .35s;
}

.estimate-card-dark a:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(15,118,110,.35);
}

/* TRUST ROW */
.duct-trust-row {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 115px repeat(3, 1fr);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(37,211,179,.18);
  backdrop-filter: blur(13px);
  border-radius: 20px;
  overflow: hidden;
}

.trust-icon-main {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(15,118,110,.88), rgba(7,26,36,.78));
  font-size: 54px;
}

.trust-text {
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.trust-text:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.18);
}

.trust-text span {
  color: #25d3b3;
  font-size: 42px;
  min-width: 48px;
}

.trust-text h5 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 6px;
}

.trust-text p {
  color: rgba(255,255,255,.78);
  line-height: 1.5;
  margin: 0;
}

/* AIR LINES */
.air-lines {
  position: absolute;
  z-index: 4;
  width: 680px;
  height: 135px;
  border-top: 3px solid rgba(37,211,179,.42);
  border-radius: 50%;
  pointer-events: none;
}

.air-lines::before,
.air-lines::after {
  content: "";
  position: absolute;
  left: 55px;
  width: 82%;
  height: 100%;
  border-top: 2px solid rgba(255,255,255,.22);
  border-radius: 50%;
}

.air-lines::before {
  top: 28px;
}

.air-lines::after {
  top: 56px;
}

.air-lines-1 {
  top: 27%;
  left: 38%;
  animation: airSlide 7s linear infinite;
}

.air-lines-2 {
  top: 39%;
  left: 48%;
  animation: airSlide 6s linear infinite reverse;
}

/* LEAVES */
.leaf {
  position: absolute;
  z-index: 6;
  width: 42px;
  height: 24px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, #b8df68, #25d3b3);
  filter: blur(.15px);
  opacity: .78;
  animation: leafFloat 7s ease-in-out infinite;
}

.lf-1 {
  top: 10%;
  left: 52%;
}

.lf-2 {
  top: 16%;
  right: 10%;
  animation-delay: 1s;
}

.lf-3 {
  top: 42%;
  left: 46%;
  animation-delay: 1.8s;
}

.lf-4 {
  bottom: 25%;
  right: 7%;
  animation-delay: 2.4s;
}

.lf-5 {
  bottom: 42%;
  left: 55%;
  animation-delay: 3s;
}

/* ANIMATIONS */
@keyframes airSlide {
  0% {
    transform: translateX(-110px) scaleX(.72);
    opacity: .08;
  }

  50% {
    opacity: .9;
  }

  100% {
    transform: translateX(210px) scaleX(1.18);
    opacity: .08;
  }
}

@keyframes leafFloat {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(10deg);
  }

  50% {
    transform: translateY(-38px) translateX(32px) rotate(28deg);
  }
}

@keyframes estimateFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .duct-bg-section {
    padding: 75px 0 55px;
    background:
      linear-gradient(rgba(3,18,25,.92), rgba(3,18,25,.88)),
      url("../air-duct/air-duct-cleaning-bg.webp") center / cover no-repeat;
  }

  .col-lg-6,
  .col-md-12 {
    width: 100%;
  }

  .duct-bg-content {
    text-align: center;
  }

  .duct-location {
    text-align: left;
  }

  .estimate-card-dark {
    max-width: 100%;
    margin: 45px 0 0;
  }

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

  .trust-icon-main {
    display: none;
  }

  .trust-text:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
  }
}

@media (max-width: 575px) {
  .duct-bg-content h2 {
    font-size: 38px;
  }

  .duct-bg-content h4 {
    font-size: 22px;
  }

  .duct-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .duct-benefits div:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
    padding-bottom: 20px;
  }

  .duct-location {
    align-items: flex-start;
  }

  .estimate-card-dark {
    padding: 25px;
  }

  .estimate-head {
    align-items: flex-start;
  }

  .estimate-card-dark h3 {
    font-size: 24px;
  }

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

  .air-lines,
  .leaf {
    display: none;
  }
}


.promo-offer-section {
  position: relative;
  padding: 95px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(37,211,179,.14), transparent 25%),
    radial-gradient(circle at 88% 70%, rgba(255,200,87,.16), transparent 24%),
    linear-gradient(135deg, #ffffff, #eafff9);
  overflow: hidden;
}

.promo-card {
  position: relative;
  z-index: 5;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.25fr 3px .85fr;
  align-items: center;
  gap: 34px;
  padding: 48px;
  border-radius: 34px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,118,110,.12);
  box-shadow: 0 28px 90px rgba(7,26,36,.12);
  overflow: hidden;
}

.promo-left {
  position: relative;
  z-index: 3;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 26px;
  border-radius: 50px;
  background: linear-gradient(135deg, #0f766e, #25d3b3);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 28px;
  box-shadow: 0 14px 35px rgba(37,211,179,.28);
}

.promo-left h2 {
  color: #071a24;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: .98;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.promo-left h2 small {
  display: inline-block;
  font-size: .5em;
  margin-right: 10px;
}

.promo-left h2 strong {
  color: #0f766e;
  font-size: 1.05em;
  text-shadow: 0 6px 18px rgba(15,118,110,.16);
}

.promo-left h3 {
  color: #071a24;
  font-size: clamp(24px, 3vw, 34px);
  text-transform: uppercase;
  font-weight: 900;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 2px solid rgba(15,118,110,.16);
}

.promo-left p {
  color: #344650;
  font-size: 18px;
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 28px;
}

.promo-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 32px;
}

.promo-icons div {
  text-align: center;
  padding: 0 15px;
}

.promo-icons div:not(:last-child) {
  border-right: 1px solid rgba(7,26,36,.14);
}

.promo-icons span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(37,211,179,.13);
  color: #0f766e;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  font-size: 26px;
  font-weight: 900;
  transition: .35s;
}

.promo-icons div:hover span {
  background: #0f766e;
  color: #ffffff;
  transform: translateY(-7px) rotate(8deg);
}

.promo-icons p {
  color: #071a24;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  margin: 0;
}

.promo-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.promo-call,
.promo-estimate {
  padding: 16px 28px;
  border-radius: 12px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  transition: .35s;
}

.promo-call {
  background: linear-gradient(135deg, #0f766e, #25d3b3);
  color: #ffffff;
  box-shadow: 0 16px 35px rgba(15,118,110,.28);
}

.promo-estimate {
  background: #ffffff;
  color: #0f766e;
  border: 2px solid #0f766e;
}

.promo-call:hover,
.promo-estimate:hover {
  transform: translateY(-6px);
}

.promo-divider {
  width: 3px;
  height: 100%;
  min-height: 430px;
  background: repeating-linear-gradient(
    to bottom,
    #25d3b3 0 18px,
    transparent 18px 32px
  );
  position: relative;
}

.promo-divider::before,
.promo-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  transform: translateX(-50%);
}

.promo-divider::before {
  top: -24px;
}

.promo-divider::after {
  bottom: -24px;
}

.promo-right {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 3;
}

/* COUPON TICKET */
.coupon-ticket {
  position: relative;
  width: min(330px, 100%);
  min-height: 430px;
  padding: 48px 30px;
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 0, transparent 34px, #0f766e 35px),
    linear-gradient(135deg, #0f766e, #008f80);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(15,118,110,.28);
  animation: couponSwing 4s ease-in-out infinite;
}

.coupon-ticket::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px dashed rgba(255,255,255,.75);
  border-radius: 16px;
}

.coupon-ticket::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 70px;
  height: 35px;
  background: #ffffff;
  border-radius: 70px 70px 0 0;
  transform: translateX(-50%);
}

.coupon-ticket span {
  position: relative;
  z-index: 3;
  display: block;
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
}

.coupon-ticket h4 {
  position: relative;
  z-index: 3;
  color: #ffc857;
  font-size: 96px;
  line-height: 1;
  font-weight: 900;
  margin: 20px 0 0;
  text-shadow: 0 8px 18px rgba(0,0,0,.22);
}

.coupon-ticket strong {
  position: relative;
  z-index: 3;
  display: block;
  font-size: 58px;
  line-height: .95;
  font-weight: 900;
  margin-bottom: 28px;
}

.coupon-ticket b {
  position: relative;
  z-index: 3;
  display: inline-block;
  padding: 14px 28px;
  background: #b9fff6;
  color: #071a24;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 24px;
  clip-path: polygon(8% 0, 100% 0, 92% 50%, 100% 100%, 8% 100%, 0 50%);
}

.coupon-ticket small {
  position: relative;
  z-index: 3;
  display: block;
  color: rgba(255,255,255,.9);
  font-size: 16px;
  line-height: 1.4;
}

/* BACKGROUND DOLLARS / COINS */
.coin,
.bill,
.ticket-bg {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.coin {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, #fff3b0, transparent 25%),
    linear-gradient(135deg, #ffbf35, #ffda7c);
  color: #b77700;
  font-size: 34px;
  font-weight: 900;
  box-shadow: inset -6px -8px 0 rgba(180,110,0,.16), 0 16px 35px rgba(255,191,53,.35);
  animation: coinFloat 7s ease-in-out infinite;
}

.coin::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 2px solid rgba(183,119,0,.35);
  border-radius: 50%;
}

.coin-1 {
  top: 9%;
  left: 24%;
}

.coin-2 {
  top: 12%;
  right: 15%;
  animation-delay: 1.2s;
}

.coin-3 {
  bottom: 9%;
  left: 58%;
  animation-delay: 2.1s;
}

.bill {
  width: 150px;
  height: 70px;
  background: linear-gradient(135deg, #f0fff2, #b9dfc2);
  border: 2px solid rgba(15,118,110,.18);
  color: #0f766e;
  font-size: 32px;
  font-weight: 900;
  transform: rotate(12deg);
  opacity: .78;
  animation: billFloat 8s ease-in-out infinite;
}

.bill::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(15,118,110,.32);
}

.bill-1 {
  top: 2%;
  left: 42%;
}

.bill-2 {
  right: 4%;
  bottom: 6%;
  animation-delay: 1.8s;
}

.ticket-bg {
  width: 105px;
  height: 58px;
  background: #9ff3e5;
  color: #ffffff;
  font-size: 36px;
  font-weight: 900;
  opacity: .8;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 86% 50%, 100% 67%, 100% 100%, 0 100%, 0 67%, 14% 50%, 0 33%);
  animation: ticketFloat 6.5s ease-in-out infinite;
}

.ticket-1 {
  left: 3%;
  top: 16%;
}

.ticket-2 {
  right: 8%;
  top: 36%;
  animation-delay: 2s;
}

.air-swish {
  position: absolute;
  z-index: 1;
  width: 520px;
  height: 120px;
  border-top: 3px solid rgba(37,211,179,.22);
  border-radius: 50%;
}

.air-swish::before,
.air-swish::after {
  content: "";
  position: absolute;
  left: 45px;
  width: 82%;
  height: 100%;
  border-top: 2px solid rgba(15,118,110,.12);
  border-radius: 50%;
}

.air-swish::before {
  top: 26px;
}

.air-swish::after {
  top: 52px;
}

.swish-1 {
  left: -80px;
  top: 26%;
  animation: airPromo 7s linear infinite;
}

.swish-2 {
  right: -80px;
  bottom: 22%;
  animation: airPromo 6s linear infinite reverse;
}

/* ANIMATION */
@keyframes couponSwing {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-14px) rotate(-1.5deg);
  }
}

@keyframes coinFloat {
  0%, 100% {
    transform: translateY(0) rotateY(0deg);
  }

  50% {
    transform: translateY(-35px) rotateY(180deg);
  }
}

@keyframes billFloat {
  0%, 100% {
    transform: translateY(0) rotate(12deg);
  }

  50% {
    transform: translateY(-32px) rotate(-4deg);
  }
}

@keyframes ticketFloat {
  0%, 100% {
    transform: translateY(0) rotate(-8deg);
  }

  50% {
    transform: translateY(-28px) rotate(8deg);
  }
}

@keyframes airPromo {
  0% {
    transform: translateX(-100px) scaleX(.75);
    opacity: .06;
  }

  50% {
    opacity: .65;
  }

  100% {
    transform: translateX(220px) scaleX(1.25);
    opacity: .06;
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .promo-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 28px;
  }

  .promo-divider {
    width: 100%;
    height: 3px;
    min-height: 3px;
    background: repeating-linear-gradient(
      to right,
      #25d3b3 0 18px,
      transparent 18px 32px
    );
  }

  .promo-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 0;
  }

  .promo-buttons {
    justify-content: center;
  }
}

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

  .promo-card {
    padding: 34px 20px;
  }

  .promo-left h2 {
    font-size: 38px;
  }

  .promo-icons {
    grid-template-columns: 1fr;
  }

  .promo-icons div:not(:last-child) {
    border-right: 0;
  }

  .promo-call,
  .promo-estimate {
    width: 100%;
    text-align: center;
  }

  .coupon-ticket {
    min-height: 370px;
  }

  .coupon-ticket h4 {
    font-size: 72px;
  }

  .coupon-ticket strong {
    font-size: 44px;
  }

  .coin,
  .bill,
  .ticket-bg {
    opacity: .35;
  }
}

.mite-removal-section {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(135deg, #071a24 0%, #0b353a 45%, #0f766e 100%);
  overflow: hidden;
}

.mite-removal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(37,211,179,.18), transparent 25%),
    radial-gradient(circle at 82% 72%, rgba(255,200,87,.16), transparent 26%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.035) 0 1px,
      transparent 1px 42px
    );
  pointer-events: none;
}

.mite-wrapper {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 55px;
  align-items: center;
}

.mite-left {
  color: #ffffff;
}

.mite-label {
  display: inline-block;
  padding: 11px 23px;
  border-radius: 50px;
  color: #25d3b3;
  border: 1px solid rgba(37,211,179,.55);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 22px;
}

.mite-left h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 25px;
}

.mite-left h2 span {
  display: block;
  color: #25d3b3;
}

.mite-left p {
  color: rgba(255,255,255,.82);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.mite-area {
  margin: 28px 0;
  padding: 20px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(37,211,179,.22);
  display: flex;
  gap: 16px;
}

.mite-area span {
  color: #ffc857;
  font-size: 34px;
}

.mite-area p {
  margin: 0;
}

.mite-area b {
  color: #ffc857;
}

.mite-btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  background: #ffc857;
  color: #071a24;
  text-decoration: none;
  font-weight: 900;
  transition: .35s;
}

.mite-btn:hover {
  transform: translateY(-6px);
  background: #25d3b3;
}

/* RIGHT CARDS */
.mite-right {
  position: relative;
  min-height: 560px;
}

.mite-card {
  position: absolute;
  border-radius: 30px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(16px);
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
  color: #ffffff;
}

.card-main {
  width: 380px;
  min-height: 390px;
  right: 70px;
  top: 75px;
  padding: 45px 35px;
  background: rgba(255,255,255,.16);
  animation: mainFloat 5s ease-in-out infinite;
}

.mite-icon {
  width: 86px;
  height: 86px;
  border-radius: 28px;
  background: linear-gradient(135deg, #25d3b3, #ffc857);
  color: #071a24;
  display: grid;
  place-items: center;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 28px;
  animation: iconSpin 6s linear infinite;
}

.card-main h3 {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 18px;
}

.card-main p {
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.7;
}

.card-small {
  min-width: 205px;
  padding: 20px 24px;
  animation: smallFloat 4s ease-in-out infinite;
}

.card-small strong {
  display: block;
  color: #25d3b3;
  font-size: 24px;
  margin-bottom: 6px;
}

.card-small span {
  color: rgba(255,255,255,.8);
  font-size: 14px;
}

.card-top {
  left: 25px;
  top: 25px;
}

.card-mid {
  left: 0;
  top: 250px;
  animation-delay: 1s;
}

.card-bottom {
  right: 0;
  bottom: 35px;
  animation-delay: 1.8s;
}

/* ASSESSMENT */
.assessment-strip {
  position: relative;
  z-index: 5;
  margin-top: 55px;
  padding: 24px 32px;
  border-radius: 22px;
  background: #ffffff;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 22px 65px rgba(0,0,0,.18);
}

.assessment-strip strong {
  color: #0f766e;
  font-size: 22px;
  white-space: nowrap;
}

.assessment-strip span {
  color: #344650;
  line-height: 1.6;
}

/* BG AIR ORBITS */
.mite-bg-orbit {
  position: absolute;
  width: 650px;
  height: 150px;
  border-top: 3px solid rgba(37,211,179,.2);
  border-radius: 50%;
  z-index: 2;
}

.mite-bg-orbit::before,
.mite-bg-orbit::after {
  content: "";
  position: absolute;
  left: 60px;
  width: 80%;
  height: 100%;
  border-top: 2px solid rgba(255,255,255,.14);
  border-radius: 50%;
}

.mite-bg-orbit::before {
  top: 32px;
}

.mite-bg-orbit::after {
  top: 64px;
}

.orbit-1 {
  top: 24%;
  left: 44%;
  animation: miteAir 7s linear infinite;
}

.orbit-2 {
  bottom: 20%;
  right: -120px;
  animation: miteAir 6s linear infinite reverse;
}

/* ANIMATION */
@keyframes mainFloat {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-18px) rotate(1.5deg);
  }
}

@keyframes smallFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes iconSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes miteAir {
  0% {
    transform: translateX(-120px) scaleX(.7);
    opacity: .06;
  }

  50% {
    opacity: .8;
  }

  100% {
    transform: translateX(230px) scaleX(1.2);
    opacity: .06;
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .mite-removal-section {
    padding: 80px 0;
  }

  .mite-wrapper {
    grid-template-columns: 1fr;
  }

  .mite-left {
    text-align: center;
  }

  .mite-area {
    text-align: left;
  }

  .mite-right {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .mite-card,
  .card-main,
  .card-small {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .assessment-strip {
    flex-direction: column;
    text-align: center;
  }

  .assessment-strip strong {
    white-space: normal;
  }
}

@media (max-width: 575px) {
  .mite-left h2 {
    font-size: 36px;
  }

  .mite-area {
    align-items: flex-start;
  }

  .mite-btn {
    width: 100%;
    text-align: center;
  }

  .card-main {
    padding: 32px 24px;
  }
}.allergen-ribbon-section {
  position: relative;
  padding: 105px 0;
  background: linear-gradient(135deg, #fbfffd, #eafff9);
  overflow: hidden;
}

.allergen-ribbon-section::before {
  content: "";
  position: absolute;
  left: -10%;
  top: 42%;
  width: 120%;
  height: 130px;
  background: linear-gradient(90deg, transparent, rgba(37,211,179,.16), rgba(255,200,87,.14), transparent);
  transform: rotate(-5deg);
  animation: ribbonMove 7s ease-in-out infinite;
}

.allergen-ribbon-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(15,118,110,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,118,110,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .6;
}

.ribbon-title,
.ribbon-wrapper,
.ribbon-info {
  position: relative;
  z-index: 4;
}

.ribbon-title {
  max-width: 850px;
  margin: 0 auto 55px;
  text-align: center;
}

.ribbon-title span {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(37,211,179,.13);
  color: #0f766e;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 18px;
}

.ribbon-title h2 {
  color: #071a24;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.06;
  font-weight: 900;
  margin-bottom: 18px;
}

.ribbon-title h2 b {
  color: #0f766e;
}

.ribbon-title p {
  color: #344650;
  font-size: 18px;
  line-height: 1.7;
}

/* WRAPPER */
.ribbon-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 26px;
  align-items: center;
}

.ribbon-card {
  min-height: 260px;
  padding: 34px 28px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(15,118,110,.14);
  box-shadow: 0 22px 65px rgba(7,26,36,.09);
  text-align: center;
  transition: .35s;
}

.ribbon-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 34px 85px rgba(7,26,36,.14);
}

.ribbon-icon {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0f766e, #25d3b3);
  color: #ffffff;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-size: 30px;
  font-weight: 900;
}

.ribbon-card h3 {
  color: #071a24;
  font-size: 23px;
  font-weight: 900;
  margin-bottom: 12px;
}

.ribbon-card p {
  color: #50656d;
  line-height: 1.7;
}

/* CENTER */
.ribbon-center {
  position: relative;
  display: grid;
  place-items: center;
}

.ribbon-center::before,
.ribbon-center::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 150px;
  height: 8px;
  border-radius: 30px;
  background: linear-gradient(90deg, rgba(15,118,110,.12), #25d3b3, rgba(15,118,110,.12));
  overflow: hidden;
}

.ribbon-center::before {
  right: 100%;
}

.ribbon-center::after {
  left: 100%;
}

.ribbon-circle {
  position: relative;
  width: 380px;
  min-height: 380px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.55), transparent 30%),
    linear-gradient(135deg, #071a24, #0f766e);
  color: #ffffff;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 46px;
  box-shadow: 0 32px 90px rgba(7,26,36,.22);
  animation: centerFloat 5s ease-in-out infinite;
}

.ribbon-circle::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 2px dashed rgba(37,211,179,.45);
  animation: spinRing 18s linear infinite;
}

.ribbon-circle span {
  width: 78px;
  height: 78px;
  border-radius: 26px;
  background: #ffc857;
  color: #071a24;
  display: grid;
  place-items: center;
  font-size: 38px;
  margin-bottom: 20px;
  animation: fanSpin 4s linear infinite;
}

.ribbon-circle h3 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 14px;
}

.ribbon-circle p {
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  margin: 0;
}

/* INFO */
.ribbon-info {
  max-width: 980px;
  margin: 55px auto 0;
  padding: 34px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 22px 70px rgba(7,26,36,.09);
  text-align: center;
}

.ribbon-info > p {
  color: #344650;
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.ribbon-location {
  padding: 20px 24px;
  border-radius: 20px;
  background: #f7fdfd;
  border: 1px solid rgba(15,118,110,.14);
  display: flex;
  gap: 16px;
  align-items: center;
  text-align: left;
}

.ribbon-location span {
  color: #0f766e;
  font-size: 34px;
}

.ribbon-location p {
  color: #344650;
  margin: 0;
  line-height: 1.7;
}

.ribbon-location b {
  color: #0f766e;
}

.ribbon-action {
  margin-top: 26px;
}

.ribbon-action a {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 50px;
  background: #ffc857;
  color: #071a24;
  text-decoration: none;
  font-weight: 900;
  transition: .35s;
}

.ribbon-action a:hover {
  background: #25d3b3;
  transform: translateY(-6px);
}

.ribbon-action small {
  display: block;
  margin-top: 14px;
  color: #50656d;
  font-weight: 700;
}

.ribbon-particle {
  position: absolute;
  z-index: 3;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(15,118,110,.32);
  box-shadow:
    90px 60px 0 rgba(37,211,179,.28),
    180px 110px 0 rgba(255,200,87,.35),
    280px 40px 0 rgba(15,118,110,.18);
  animation: particleRibbon 8s ease-in-out infinite;
}

.rp-1 {
  top: 20%;
  left: 12%;
}

.rp-2 {
  bottom: 20%;
  right: 14%;
  animation-delay: 2s;
}

@keyframes ribbonMove {
  0%,100% {
    transform: rotate(-5deg) translateY(0);
  }
  50% {
    transform: rotate(-5deg) translateY(-20px);
  }
}

@keyframes centerFloat {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes spinRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fanSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes particleRibbon {
  0%,100% {
    transform: translateY(0) translateX(0);
    opacity: .25;
  }
  50% {
    transform: translateY(-36px) translateX(25px);
    opacity: .75;
  }
}

@media (max-width: 991px) {
  .ribbon-wrapper {
    grid-template-columns: 1fr;
  }

  .ribbon-center::before,
  .ribbon-center::after {
    display: none;
  }

  .ribbon-circle {
    width: 100%;
    min-height: auto;
    border-radius: 34px;
  }
}

@media (max-width: 575px) {
  .allergen-ribbon-section {
    padding: 75px 0;
  }

  .ribbon-title h2 {
    font-size: 36px;
  }

  .ribbon-card,
  .ribbon-info {
    padding: 26px 20px;
  }

  .ribbon-location {
    align-items: flex-start;
  }

  .ribbon-action a {
    width: 100%;
  }
}

.duct-gallery-section {
  position: relative;
  padding: 95px 0;
  background: #ffffff;
  overflow: hidden;
}

.duct-gallery-section::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 68%;
  height: 100%;
  background: #071a24;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.duct-gallery-section::after {
  content: "";
  position: absolute;
  right: 44%;
  top: 0;
  width: 260px;
  height: 100%;
  background: linear-gradient(180deg, #25d3b3, #0f766e);
  clip-path: polygon(55% 0, 100% 0, 45% 100%, 0 100%);
  opacity: .85;
}

.gallery-fade-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 34%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.98)),
    url("images/gallery-bg.webp") center / cover no-repeat;
  opacity: .65;
}

.gallery-wrap {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 34% 66%;
  align-items: center;
  gap: 40px;
}

.gallery-text {
  padding-right: 25px;
}

.gallery-text span {
  color: #0f766e;
  font-size: 14px;
  font-weight: 900;
}

.gallery-text h2 {
  color: #071a24;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 900;
  margin: 12px 0 22px;
}

.gallery-text p {
  color: #50656d;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.gallery-text a {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, #0f766e, #25d3b3);
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  transition: .35s;
}

.gallery-text a:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(15,118,110,.28);
}

/* SLIDER */
.gallery-slider {
  overflow: hidden;
  padding: 30px 0;
}

.gallery-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: gallerySlide 18s linear infinite;
}

.gallery-slider:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-card {
  position: relative;
  flex: 0 0 290px;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,.25);
  transition: .4s;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,29,43,0) 34%, rgba(6,29,43,.82) 100%);
  pointer-events: none;
}

.gallery-card:hover {
  transform: translateY(-14px);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

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

.gallery-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  z-index: 2;
}

.gallery-caption b {
  position: absolute;
  top: -58px;
  left: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f766e, #25d3b3);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 23px;
}

.gallery-caption span {
  display: block;
  color: #9df8ea;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0,0,0,.35);
}

.gallery-caption h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  margin-top: 6px;
  line-height: 1.2;
  text-shadow: 0 10px 28px rgba(0,0,0,.45);
}

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

/* duplicate cards for smooth loop if needed */
.gallery-track::after {
  content: "";
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .duct-gallery-section::before {
    width: 100%;
    clip-path: none;
  }

  .duct-gallery-section::after,
  .gallery-fade-img {
    display: none;
  }

  .gallery-wrap {
    grid-template-columns: 1fr;
  }

  .gallery-text {
    text-align: center;
    padding-right: 0;
  }

  .gallery-text h2 {
    color: #ffffff;
  }

  .gallery-text p {
    color: rgba(255,255,255,.78);
  }

  .gallery-slider {
    overflow-x: auto;
  }

  .gallery-track {
    animation: none;
    padding-bottom: 12px;
  }
}

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

  .gallery-card {
    flex-basis: 250px;
    height: 350px;
  }
}

.microbial-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(37,211,179,.14), transparent 26%),
    radial-gradient(circle at 82% 78%, rgba(255,200,87,.16), transparent 24%),
    linear-gradient(135deg, #fbfffd, #eafff9);
  overflow: hidden;
}

.microbial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(15,118,110,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,118,110,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  animation: microGrid 18s linear infinite;
}

.microbial-section::after {
  content: "";
  position: absolute;
  width: 760px;
  height: 230px;
  right: -240px;
  top: 90px;
  border-radius: 150px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(7,26,36,.07) 0 4px,
      transparent 4px 46px
    ),
    linear-gradient(135deg, rgba(37,211,179,.16), rgba(255,255,255,.75));
  transform: rotate(-10deg);
  animation: microDuctFloat 7s ease-in-out infinite;
}

.microbial-main-card,
.benefits-title,
.system-benefits-grid {
  position: relative;
  z-index: 4;
}

/* MAIN CARD */
.microbial-main-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: 58px;
  border-radius: 36px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(15,118,110,.14);
  box-shadow: 0 28px 90px rgba(7,26,36,.1);
  text-align: center;
  overflow: hidden;
}

.microbial-badge {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 50px;
  background: rgba(37,211,179,.13);
  color: #0f766e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.microbial-main-card h2 {
  color: #071a24;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 24px;
}

.microbial-main-card h2 span {
  display: block;
  color: #0f766e;
}

.microbial-main-card p {
  color: #344650;
  font-size: 17px;
  line-height: 1.75;
  max-width: 930px;
  margin: 0 auto 18px;
}

.microbial-main-card b {
  color: #0f766e;
}

.microbial-cta {
  margin-top: 32px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.microbial-cta a {
  padding: 16px 34px;
  border-radius: 50px;
  background: #ffc857;
  color: #071a24;
  text-decoration: none;
  font-weight: 900;
  transition: .35s;
}

.microbial-cta a:hover {
  background: #25d3b3;
  transform: translateY(-6px);
}

.microbial-cta span {
  max-width: 620px;
  color: #50656d;
  font-weight: 700;
  line-height: 1.6;
}

/* AIR LINES */
.microbial-air {
  position: absolute;
  width: 620px;
  height: 120px;
  border-top: 3px solid rgba(37,211,179,.22);
  border-radius: 50%;
  z-index: 1;
}

.microbial-air::before,
.microbial-air::after {
  content: "";
  position: absolute;
  left: 55px;
  width: 82%;
  height: 100%;
  border-top: 2px solid rgba(15,118,110,.13);
  border-radius: 50%;
}

.microbial-air::before {
  top: 28px;
}

.microbial-air::after {
  top: 56px;
}

.air-one {
  left: -160px;
  top: 34%;
  animation: microAir 7s linear infinite;
}

.air-two {
  right: -170px;
  bottom: 22%;
  animation: microAir 6s linear infinite reverse;
}

/* TITLE */
.benefits-title {
  text-align: center;
  margin: 70px auto 42px;
}

.benefits-title span {
  color: #0f766e;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.benefits-title h3 {
  color: #071a24;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  margin-top: 12px;
}

/* BENEFITS */
.system-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.system-card {
  position: relative;
  padding: 36px 30px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(15,118,110,.14);
  box-shadow: 0 22px 70px rgba(7,26,36,.08);
  overflow: hidden;
  transition: .4s;
}

.system-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(37,211,179,.12);
  transition: .4s;
}

.system-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 34px 90px rgba(7,26,36,.14);
}

.system-card:hover::before {
  transform: scale(1.4);
}

.system-card.featured {
  background: linear-gradient(135deg, #071a24, #0f766e);
}

.system-card.featured h4,
.system-card.featured p,
.system-card.featured .progress-top span {
  color: #ffffff;
}

.system-card.featured .progress-line {
  background: rgba(255,255,255,.22);
}

.system-icon {
  position: relative;
  z-index: 3;
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0f766e, #25d3b3);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 32px;
  margin-bottom: 24px;
}

.system-card.featured .system-icon {
  background: #ffc857;
  color: #071a24;
}

.system-card h4 {
  position: relative;
  z-index: 3;
  color: #071a24;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 14px;
}

.system-card p {
  position: relative;
  z-index: 3;
  color: #50656d;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.progress-wrap {
  position: relative;
  z-index: 3;
}

.progress-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.progress-top span {
  color: #50656d;
  font-weight: 800;
  font-size: 13px;
}

.progress-top b {
  color: #0f766e;
  font-weight: 900;
}

.system-card.featured .progress-top b {
  color: #ffc857;
}

.progress-line {
  height: 12px;
  border-radius: 50px;
  background: rgba(15,118,110,.12);
  overflow: hidden;
}

.progress-line i {
  display: block;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, #0f766e, #25d3b3, #ffc857);
  position: relative;
  animation: progressLoad 2s ease forwards;
}

.progress-line i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  animation: progressShine 2s linear infinite;
}

/* PARTICLES */
.micro-particle {
  position: absolute;
  z-index: 3;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(15,118,110,.28);
  box-shadow:
    90px 60px 0 rgba(37,211,179,.28),
    180px 110px 0 rgba(255,200,87,.35),
    280px 40px 0 rgba(15,118,110,.18);
  animation: microParticle 8s ease-in-out infinite;
}

.mp-1 {
  top: 18%;
  left: 12%;
}

.mp-2 {
  top: 55%;
  right: 12%;
  animation-delay: 1.5s;
}

.mp-3 {
  bottom: 16%;
  left: 45%;
  animation-delay: 2.3s;
}

/* ANIMATIONS */
@keyframes microGrid {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 46px 46px;
  }
}

@keyframes microDuctFloat {
  0%,100% {
    transform: rotate(-10deg) translateY(0);
  }
  50% {
    transform: rotate(-10deg) translateY(-18px);
  }
}

@keyframes microAir {
  0% {
    transform: translateX(-120px) scaleX(.72);
    opacity: .05;
  }
  50% {
    opacity: .75;
  }
  100% {
    transform: translateX(240px) scaleX(1.25);
    opacity: .05;
  }
}

@keyframes microParticle {
  0%,100% {
    transform: translateY(0) translateX(0);
    opacity: .25;
  }
  50% {
    transform: translateY(-35px) translateX(28px);
    opacity: .75;
  }
}

@keyframes progressLoad {
  from {
    width: 0;
  }
}

@keyframes progressShine {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .microbial-section {
    padding: 80px 0;
  }

  .microbial-main-card {
    padding: 42px 28px;
  }

  .system-benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .microbial-main-card {
    padding: 34px 20px;
  }

  .microbial-main-card h2 {
    font-size: 36px;
  }

  .microbial-cta a {
    width: 100%;
  }
}


.counter-section-dark {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #071a24 0%, #0b353a 45%, #0f766e 100%);
}

.counter-section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.12), transparent 18%),
    radial-gradient(circle at 80% 70%, rgba(37,211,179,.18), transparent 22%),
    repeating-radial-gradient(
      circle at center,
      transparent 0 18px,
      rgba(255,255,255,.06) 18px 20px
    );
  animation: bgMove 18s linear infinite;
}

.counter-section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .09;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 45px 45px;
}

.counter-wrapper-dark {
  position: relative;
  z-index: 3;
}

.counter-image-dark {
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.counter-image-dark img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.counter-image-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(7,26,36,.65), rgba(7,26,36,.2)),
    linear-gradient(90deg, rgba(7,26,36,.35), transparent);
}

.quality-card-dark {
  position: absolute;
  right: 70px;
  top: 0;
  width: 250px;
  height: 330px;
  background: linear-gradient(180deg, #0f766e, #25d3b3);
  border-radius: 0 0 38px 38px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
  padding: 32px;
  box-shadow: 0 25px 70px rgba(0,0,0,.35);
}

.quality-icon-dark {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: #ffffff;
  color: #0f766e;
  display: grid;
  place-items: center;
  font-size: 45px;
  margin-bottom: 28px;
  animation: airSpin 6s linear infinite;
}

.quality-card-dark h3 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 12px;
}

.quality-card-dark p {
  font-size: 15px;
  opacity: .9;
}

.counter-box-dark {
  width: 90%;
  margin: -75px auto 0;
  position: relative;
  z-index: 8;
  padding: 35px;
  border-radius: 34px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 25px 70px rgba(0,0,0,.28);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.counter-item-dark {
  text-align: center;
  transition: .4s;
}

.counter-item-dark:hover {
  transform: translateY(-12px);
}

.counter-icon-dark {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 2px solid rgba(15,118,110,.15);
  display: grid;
  place-items: center;
  font-size: 32px;
  color: #0f766e;
  position: relative;
}

.counter-icon-dark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px dashed #25d3b3;
  border-radius: 50%;
  animation: iconRotate 12s linear infinite;
}

.counter-item-dark h2 {
  font-size: 46px;
  font-weight: 900;
  color: #071a24;
  margin-bottom: 5px;
}

.counter-item-dark span {
  color: #50656d;
  font-weight: 700;
}

/* Animations */
@keyframes bgMove {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes iconRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes airSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .counter-box-dark {
    grid-template-columns: repeat(2, 1fr);
  }

  .quality-card-dark {
    right: 25px;
  }
}

@media (max-width: 767px) {
  .counter-section-dark {
    padding: 80px 0;
  }

  .counter-image-dark img {
    height: 380px;
  }

  .quality-card-dark {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: auto;
    border-radius: 0;
    padding: 38px 20px;
  }

  .counter-box-dark {
    width: 100%;
    margin: 0;
    border-radius: 0 0 34px 34px;
    grid-template-columns: 1fr;
  }
}

.faq-card-section {
  position: relative;
  padding: 105px 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(37,211,179,.14), transparent 24%),
    radial-gradient(circle at 85% 82%, rgba(255,200,87,.16), transparent 22%),
    linear-gradient(135deg, #ffffff, #f7fdfd);
  overflow: hidden;
}

.faq-card-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(15,118,110,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,118,110,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  animation: faqCardGrid 18s linear infinite;
}

.faq-card-section::after {
  content: "";
  position: absolute;
  width: 720px;
  height: 220px;
  left: -220px;
  top: 42%;
  border-radius: 150px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(7,26,36,.07) 0 4px,
      transparent 4px 46px
    ),
    linear-gradient(135deg, rgba(37,211,179,.13), rgba(255,255,255,.8));
  transform: rotate(10deg);
  animation: faqDuctFloat 7s ease-in-out infinite;
}

.faq-card-title,
.faq-card-grid {
  position: relative;
  z-index: 4;
}

.faq-card-title {
  max-width: 820px;
  margin: 0 auto 55px;
  text-align: center;
}

.faq-card-title span {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(37,211,179,.12);
  color: #0f766e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.faq-card-title h2 {
  color: #071a24;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.06;
  font-weight: 900;
  margin-bottom: 16px;
}

.faq-card-title p {
  color: #50656d;
  font-size: 18px;
  line-height: 1.7;
}

.faq-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.faq-glass-card {
  position: relative;
  padding: 34px;
  border-radius: 30px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,118,110,.14);
  box-shadow: 0 22px 70px rgba(7,26,36,.08);
  overflow: hidden;
  transition: .4s;
}

.faq-glass-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: rgba(37,211,179,.12);
  transition: .4s;
}

.faq-glass-card::after {
  content: "";
  position: absolute;
  left: -120px;
  top: 38%;
  width: 340px;
  height: 85px;
  border-top: 3px solid rgba(37,211,179,.22);
  border-radius: 50%;
  opacity: 0;
  animation: cardAirMove 5s linear infinite;
}

.faq-glass-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 34px 90px rgba(7,26,36,.14);
  border-color: rgba(15,118,110,.28);
}

.faq-glass-card:hover::before {
  transform: scale(1.45);
}

.faq-glass-card:hover::after {
  opacity: 1;
}

.faq-number {
  position: relative;
  z-index: 3;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0f766e, #25d3b3);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 22px;
  box-shadow: 0 16px 35px rgba(15,118,110,.24);
}

.faq-glass-card h3 {
  position: relative;
  z-index: 3;
  color: #071a24;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 900;
  margin-bottom: 18px;
}

.faq-glass-card p {
  position: relative;
  z-index: 3;
  color: #50656d;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.faq-glass-card a {
  position: relative;
  z-index: 3;
  color: #0f766e;
  text-decoration: none;
  font-weight: 900;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.faq-glass-card a span {
  transition: .35s;
}

.faq-glass-card a:hover span {
  transform: translate(5px, -5px);
}

.faq-float {
  position: absolute;
  z-index: 3;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15,118,110,.28);
  box-shadow:
    90px 60px 0 rgba(37,211,179,.25),
    180px 110px 0 rgba(255,200,87,.34),
    280px 40px 0 rgba(15,118,110,.18);
  animation: faqFloat 8s ease-in-out infinite;
}

.f1 {
  top: 16%;
  left: 10%;
}

.f2 {
  top: 58%;
  right: 10%;
  animation-delay: 1.5s;
}

.f3 {
  bottom: 14%;
  left: 46%;
  animation-delay: 2.4s;
}

@keyframes faqCardGrid {
  from { background-position: 0 0; }
  to { background-position: 46px 46px; }
}

@keyframes faqDuctFloat {
  0%,100% {
    transform: rotate(10deg) translateY(0);
  }
  50% {
    transform: rotate(10deg) translateY(-18px);
  }
}

@keyframes cardAirMove {
  0% {
    transform: translateX(-80px) scaleX(.7);
    opacity: .05;
  }
  50% {
    opacity: .75;
  }
  100% {
    transform: translateX(180px) scaleX(1.25);
    opacity: .05;
  }
}

@keyframes faqFloat {
  0%,100% {
    transform: translateY(0) translateX(0);
    opacity: .25;
  }
  50% {
    transform: translateY(-35px) translateX(25px);
    opacity: .75;
  }
}

@media (max-width: 991px) {
  .faq-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .faq-card-section {
    padding: 75px 0;
  }

  .faq-card-title h2 {
    font-size: 36px;
  }

  .faq-glass-card {
    padding: 26px 22px;
  }

  .faq-glass-card h3 {
    font-size: 21px;
  }
}


.contact-map-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(37,211,179,.14), transparent 25%),
    radial-gradient(circle at 85% 75%, rgba(255,200,87,.15), transparent 22%),
    linear-gradient(135deg, #ffffff, #f7fdfd);
  overflow: hidden;
}

.contact-map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(15,118,110,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,118,110,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  animation: contactGrid 18s linear infinite;
}

.contact-shape {
  position: absolute;
  width: 680px;
  height: 200px;
  border-radius: 140px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(7,26,36,.07) 0 4px,
      transparent 4px 45px
    ),
    linear-gradient(135deg, rgba(37,211,179,.14), rgba(255,255,255,.75));
  animation: contactFloat 7s ease-in-out infinite;
}

.cs-1 {
  right: -220px;
  top: 90px;
  transform: rotate(-10deg);
}

.cs-2 {
  left: -260px;
  bottom: 80px;
  transform: rotate(10deg);
}

.contact-title,
.contact-grid {
  position: relative;
  z-index: 4;
}

.contact-title {
  max-width: 800px;
  margin: 0 auto 55px;
  text-align: center;
}

.contact-title span {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(37,211,179,.13);
  color: #0f766e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.contact-title h2 {
  color: #071a24;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.06;
  font-weight: 900;
  margin-bottom: 16px;
}

.contact-title p {
  color: #50656d;
  font-size: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
}
/*==========================
 CONTACT FORM
===========================*/

.contact-form-card{

    background:#fff;
    padding:45px;
    border-radius:35px;
    box-shadow:0 25px 70px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
    border:1px solid rgba(15,118,110,.12);

}

.contact-form-card::before{

    content:"";
    position:absolute;
    right:-100px;
    top:-100px;

    width:260px;
    height:260px;

    border-radius:50%;

    background:rgba(37,211,179,.08);

}

.contact-head{

    position:relative;
    z-index:2;

    margin-bottom:35px;

}

.contact-head span{

    display:inline-block;

    background:rgba(37,211,179,.12);

    color:#0f766e;

    padding:10px 22px;

    border-radius:40px;

    font-size:13px;

    font-weight:800;

    text-transform:uppercase;

    margin-bottom:15px;

}

.contact-head h3{

    color:#071a24;

    font-size:40px;

    font-weight:800;

    margin-bottom:15px;

}

.contact-head p{

    color:#50656d;

    line-height:1.8;

}

/*==========================
 GRID
===========================*/

.cc-fcf-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

/*==========================
 INPUTS
===========================*/

.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select{

    width:100%;

    background:#f7fbfc;

    border:2px solid transparent;

    border-radius:18px;

    padding:17px 20px;

    font-size:15px;

    color:#071a24;

    transition:.35s;

    outline:none;

}

.contact-form-card textarea{

    height:170px;

    resize:none;

    margin:18px 0;

}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus{

    border-color:#25d3b3;

    background:#fff;

    box-shadow:0 0 0 5px rgba(37,211,179,.12);

}

/*==========================
 DATE
===========================*/

.cc-fcf-label{

    display:block;

    margin:20px 0 12px;

    color:#071a24;

    font-weight:700;

}

.cc-fcf-date{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:15px;

}

/*==========================
 BUTTON
===========================*/

.contact-form-card input[type=submit]{

    margin-top:25px;

    background:linear-gradient(135deg,#0f766e,#25d3b3);

    color:#fff;

    border:none;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    border-radius:60px;

    padding:18px;

    transition:.4s;

}

.contact-form-card input[type=submit]:hover{

    transform:translateY(-8px);

    background:linear-gradient(135deg,#ffc857,#f8b400);

    color:#071a24;

    box-shadow:0 20px 35px rgba(255,200,87,.35);

}

/*==========================
 PLACEHOLDER
===========================*/

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder{

    color:#8b9ca4;

}

/*==========================
 SELECT
===========================*/

.contact-form-card select{

    appearance:none;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%230f766e' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6.5 6 6.5-6'/%3E%3C/svg%3E");

    background-repeat:no-repeat;

    background-position:right 18px center;

    padding-right:45px;

}

/*==========================
 RESPONSIVE
===========================*/

@media(max-width:991px){

.cc-fcf-grid{

grid-template-columns:1fr;

}

.cc-fcf-date{

grid-template-columns:1fr;

}

.contact-form-card{

padding:35px;

}

}

@media(max-width:576px){

.contact-form-card{

padding:25px;

border-radius:25px;

}

.contact-head h3{

font-size:30px;

}

.contact-head p{

font-size:15px;

}

}
.contact-form-card,
.contact-info-card {
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid rgba(15,118,110,.14);
  box-shadow: 0 25px 80px rgba(7,26,36,.1);
  overflow: hidden;
}

.contact-form-card {
  padding: 42px;
}

.contact-form-card h3 {
  color: #071a24;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 25px;
}

.contact-form-card fieldset {
  border: 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid rgba(15,118,110,.16);
  background: #f7fdfd;
  border-radius: 16px;
  padding: 16px 18px;
  color: #071a24;
  font-size: 15px;
  outline: none;
  transition: .3s;
}

.contact-form-card textarea {
  min-height: 150px;
  margin-top: 16px;
  resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: #0f766e;
  box-shadow: 0 0 0 4px rgba(37,211,179,.13);
  background: #ffffff;
}

.contact-form-card button {
  margin-top: 18px;
  width: 100%;
  border: 0;
  padding: 17px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #0f766e, #25d3b3);
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
  transition: .35s;
}

.contact-form-card button:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(15,118,110,.28);
}

.contact-info-card {
  padding: 26px;
  background: linear-gradient(135deg, #071a24, #0f766e);
}

.contact-info-box {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  margin-bottom: 16px;
}

.contact-info-box span {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #ffc857;
  color: #071a24;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 900;
}

.contact-info-box h4 {
  color: #ffffff;
  font-size: 19px;
  margin-bottom: 5px;
}

.contact-info-box p,
.contact-info-box a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  line-height: 1.6;
}

.contact-mail-box span {
  background: transparent;
}

.contact-mail-box a {
  background: transparent !important;
}

.map-box {
  height: 310px;
  width: 100vw;
  max-width: 100%;
  border-radius: 0;
  overflow: hidden;
  margin-top: 18px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border: 0;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FOOTER */
.duct-footer {
  position: relative;
  padding: 80px 0 25px;
  background: #071a24;
  overflow: hidden;
}

.duct-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(37,211,179,.18), transparent 25%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, 46px 46px, 46px 46px;
}

.footer-main,
.footer-bottom {
  position: relative;
  z-index: 3;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr .7fr .8fr .9fr;
  gap: 34px;
  padding-bottom: 45px;
  align-items: stretch;
}

.footer-brand,
.footer-links {
  min-height: 100%;
  padding: 28px 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}

.footer-logo {
  color: #ffffff;
  text-decoration: none;
  font-size: 25px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-brand {
  align-items: center;
}

.footer-logo-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.footer-logo-stacked {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.footer-logo-stacked img {
  display: block;
}

.footer-logo span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #25d3b3, #ffc857);
  color: #071a24;
  display: grid;
  place-items: center;
  animation: footerFan 4s linear infinite;
}

.footer-brand p,
.footer-links p {
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 22px;
}

.footer-call {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 50px;
  background: #ffc857;
  color: #071a24;
  text-decoration: none;
  font-weight: 900;
  transition: .35s;
}

.footer-call:hover {
  background: #25d3b3;
  transform: translateY(-5px);
}

.footer-links h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.service-areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.service-areas-list li {
  margin-bottom: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37,211,179,.16);
  border: 1px solid rgba(37,211,179,.26);
  color: #ffffff;
  font-weight: 700;
}

.footer-links a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: .3s;
}

.footer-links a:hover {
  color: #25d3b3;
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,.62);
}

@keyframes contactGrid {
  from { background-position: 0 0; }
  to { background-position: 46px 46px; }
}

@keyframes contactFloat {
  0%,100% { margin-top: 0; }
  50% { margin-top: -18px; }
}

@keyframes footerFan {
  to { transform: rotate(360deg); }
}

@media (max-width: 991px) {
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main {
    text-align: center;
  }

  .footer-brand,
  .footer-links {
    padding: 24px 20px;
  }

  .footer-logo {
    justify-content: center;
  }

  .service-areas-list {
    justify-content: center;
  }
}

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

  .contact-form-card {
    padding: 28px 20px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-box {
    align-items: flex-start;
  }
}

.before-after-section{

padding:110px 0;

background:#f8fffd;

position:relative;

overflow:hidden;

}

.before-after-section::before{

content:"";

position:absolute;

left:-250px;
top:-150px;

width:550px;
height:550px;

border-radius:50%;

background:rgba(37,211,179,.08);

}

.before-after-section::after{

content:"";

position:absolute;

right:-220px;
bottom:-180px;

width:500px;
height:500px;

border-radius:50%;

background:rgba(255,200,87,.08);

}

.section-title-center{

text-align:center;

max-width:780px;

margin:auto auto 70px;

position:relative;

z-index:2;

}

.section-title-center span{

display:inline-block;

padding:10px 25px;

background:rgba(37,211,179,.12);

color:#0f766e;

border-radius:50px;

font-weight:800;

font-size:13px;

margin-bottom:18px;

}

.section-title-center h2{

font-size:52px;

font-weight:800;

color:#071a24;

margin-bottom:18px;

}

.section-title-center p{

color:#50656d;

line-height:1.8;

font-size:18px;

}

.before-after-wrapper{

display:grid;

grid-template-columns:1fr 130px 1fr;

align-items:center;

gap:30px;

position:relative;

z-index:2;

}

.before-card,
.after-card{

position:relative;

overflow:hidden;

border-radius:30px;

box-shadow:0 25px 70px rgba(0,0,0,.12);

transition:.4s;

}

.before-card:hover,
.after-card:hover{

transform:translateY(-12px);

}

.before-card img,
.after-card img{

width:100%;

height:480px;

object-fit:cover;

transition:.5s;

}

.before-card:hover img,
.after-card:hover img{

transform:scale(1.08);

}

.image-tag{

position:absolute;

top:25px;

left:25px;

padding:12px 28px;

border-radius:50px;

font-weight:700;

font-size:15px;

color:#fff;

}

.before-tag{

background:#d62828;

}

.after-tag{

background:#0f766e;

}

.middle-arrow{

display:flex;

justify-content:center;

align-items:center;

}

.circle-arrow{

width:95px;

height:95px;

border-radius:50%;

background:linear-gradient(135deg,#0f766e,#25d3b3);

display:flex;

justify-content:center;

align-items:center;

font-size:42px;

color:#fff;

box-shadow:0 20px 45px rgba(15,118,110,.35);

animation:arrowMove 1.6s infinite;

}

.result-counter{

margin-top:70px;

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

}

.result-counter div{

background:#fff;

padding:35px;

border-radius:25px;

text-align:center;

box-shadow:0 18px 50px rgba(0,0,0,.08);

transition:.35s;

}

.result-counter div:hover{

transform:translateY(-10px);

}

.result-counter h3{

font-size:46px;

color:#0f766e;

font-weight:800;

margin-bottom:8px;

}

.result-counter span{

color:#50656d;

font-weight:600;

}

@keyframes arrowMove{

0%,100%{

transform:translateX(0);

}

50%{

transform:translateX(12px);

}

}

@media(max-width:992px){

.before-after-wrapper{

grid-template-columns:1fr;

}

.middle-arrow{

transform:rotate(90deg);

margin:10px 0;

}

.result-counter{

grid-template-columns:1fr;

}

.section-title-center h2{

font-size:38px;

}

}
