:root {
  --dark: #222b37;
  --navy: #172334;
  --green: #7bc42d;
  --light-green: #e9f7d8;
  --white: #ffffff;
  --muted: #6c7785;
}

/* HEADER */
.premium-air-header {
  background: #f7f7f7;
  overflow: hidden;
}

/* HERO */
.premium-hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  padding-bottom: 180px;
  background:
    linear-gradient(90deg, rgba(240,248,250,.94) 0%, rgba(240,248,250,.72) 42%, rgba(240,248,250,.1) 74%),
    url("../air-duct/air-duct-cleaning-banner.webp") center right/cover no-repeat;
}
.premium-hero1 {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  padding-bottom: 180px;
  background:
    linear-gradient(90deg, rgba(240,248,250,.94) 0%, rgba(240,248,250,.72) 42%, rgba(240,248,250,.1) 74%),
    url("../air-duct/air-vent-banner.webp") center right/cover no-repeat;
}
.premium-hero2 {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  padding-bottom: 180px;
  background:
    linear-gradient(90deg, rgba(240,248,250,.94) 0%, rgba(240,248,250,.72) 42%, rgba(240,248,250,.1) 74%),
    url("../air-duct/furnace-cleaning-banner.webp") center right/cover no-repeat;
}
.premium-hero3 {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  padding-bottom: 180px;
  background:
    linear-gradient(90deg, rgba(240,248,250,.94) 0%, rgba(240,248,250,.72) 42%, rgba(240,248,250,.1) 74%),
    url("../air-duct/ac-repair-banner.webp") center right/cover no-repeat;
}
.premium-hero4 {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  padding-bottom: 180px;
  background:
    linear-gradient(90deg, rgba(240,248,250,.94) 0%, rgba(240,248,250,.72) 42%, rgba(240,248,250,.1) 74%),
    url("../air-duct/duct-sealing-banner.webp") center right/cover no-repeat;
}
.premium-hero5 {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  padding-bottom: 180px;
  background:
    linear-gradient(90deg, rgba(240,248,250,.94) 0%, rgba(240,248,250,.72) 42%, rgba(240,248,250,.1) 74%),
    url("../air-duct/dryer-vent-banner.webp") center right/cover no-repeat;
}
.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 45%, rgba(123,196,45,.22), transparent 30%),
    radial-gradient(circle at 82% 70%, rgba(255,255,255,.28), transparent 28%);
  animation: premiumGlow 7s ease-in-out infinite alternate;
  z-index: 1;
}

/* TOP BAR */
.premium-topbar {
  position: relative;
  z-index: 10;
  background: rgba(34, 43, 55, .92);
  color: #fff;
  padding: 9px 0;
  font-size: 12px;
}

.premium-topbar a {
  color: var(--green);
  text-decoration: none;
  font-weight: 900;
}

/* NAV */
.premium-navbar {
  position: relative;
  z-index: 10;
  background:rgba(255, 255, 255, 0.66);
  padding: 18px 0;
  box-shadow: 0 15px 45px rgba(0,0,0,.12);
}

.premium-navbar .navbar-brand {
  color: var(--dark);
  font-size: 28px;
  font-weight: 950;
}

.premium-navbar .navbar-brand span {
  color: var(--green);
}

.premium-navbar .nav-link {
  color: #07111f;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 8px;
  position: relative;
}

.premium-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: .3s ease;
}

.premium-navbar .nav-link:hover::after,
.premium-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.premium-navbar .nav-link:hover,
.premium-navbar .nav-link.active {
  color: var(--green);
}

.premium-navbar .dropdown-menu {
  border: 0;
  border-radius: 0;
  padding: 8px;
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
}

.premium-navbar .dropdown-item {
  font-size: 13px;
  font-weight: 800;
  padding: 10px 14px;
}

.premium-navbar .dropdown-item:hover {
  background: var(--green);
  color: #fff;
}

.premium-nav-btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 15px 28px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(123,196,45,.35);
  animation: pulseGreen 2s infinite;
}

/* HERO CONTENT */
.premium-hero-content {
  max-width: 620px;
  padding-top: 105px;
  position: relative;
  z-index: 5;
  animation: fadeLeft .9s ease both;
}

.premium-subtitle {
  display: inline-block;
  color: var(--navy);
  font-weight: 950;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 12px;
}

.premium-hero-content h1 {
  color: var(--navy);
  font-size: 46px;
  font-weight: 950;
  line-height: 1.05;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.premium-hero-content p {
  color: #363c43;
  font-size: 15px;
  line-height: 1.8;
  max-width: 570px;
}

.premium-outline-btn {
  display: inline-block;
  margin-top: 25px;
  border: 1px solid var(--navy);
  color: var(--navy);
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 31px;
  transition: .3s ease;
}

.premium-outline-btn:hover {
  background: var(--navy);
  color: #fff;
}

/* FLOATING SERVICES */
.premium-floating-services {
  position: relative;
  z-index: 20;
  margin-top: -180px;
  background: transparent;
  padding-bottom: 85px;
}

.premium-card {
  height: 100%;
  min-height: 245px;
  background: #fff;
  text-align: center;
  padding: 38px 24px;
  box-shadow: 0 25px 65px rgba(0,0,0,.12);
  transition: .38s ease;
  position: relative;
  overflow: hidden;
  animation: cardUp .85s ease both;
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transition: .38s ease;
}

.premium-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -55px;
  top: -55px;
  background: rgba(123,196,45,.12);
  border-radius: 50%;
  transition: .38s ease;
}

.premium-card:hover {
  transform: translateY(-18px) scale(1.02);
  box-shadow: 0 38px 85px rgba(0,0,0,.18);
}

.premium-card:hover::before {
  transform: scaleX(1);
}

.premium-card:hover::after {
  transform: scale(1.7);
}

.premium-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--light-green);
  color: var(--green);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: .6s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 8px rgba(123,196,45,.08);
}

.premium-card:hover .premium-icon {
  transform: rotateY(360deg) scale(1.08);
}

.premium-card h3 {
  color: #07111f;
  font-size: 16px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.premium-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 2;
}

.premium-card.dark {
  background: linear-gradient(145deg, #222b37, #121927);
}

.premium-card.dark h3,
.premium-card.dark p {
  color: #fff;
}

.premium-card.dark .premium-icon {
  background: rgba(123,196,45,.16);
}

/* CARD DELAY */
.premium-floating-services .col-lg-3:nth-child(1) .premium-card {
  animation-delay: .1s;
}

.premium-floating-services .col-lg-3:nth-child(2) .premium-card {
  animation-delay: .25s;
}

.premium-floating-services .col-lg-3:nth-child(3) .premium-card {
  animation-delay: .4s;
}

.premium-floating-services .col-lg-3:nth-child(4) .premium-card {
  animation-delay: .55s;
}

/* AIR LINES */
.air-moving-lines span {
  position: absolute;
  left: -420px;
  width: 420px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(123,196,45,.95), rgba(255,255,255,.75), transparent);
  z-index: 3;
  animation: airMove 7s linear infinite;
  filter: drop-shadow(0 0 10px rgba(123,196,45,.6));
}

.air-moving-lines span:nth-child(1) {
  top: 34%;
}

.air-moving-lines span:nth-child(2) {
  top: 48%;
  width: 520px;
  animation-delay: 1.8s;
}

.air-moving-lines span:nth-child(3) {
  top: 62%;
  animation-delay: 3.4s;
}

.air-moving-lines span:nth-child(4) {
  top: 76%;
  width: 560px;
  animation-delay: 5s;
}

/* DUST */
.air-dust i {
  position: absolute;
  width: 7px;
  height: 7px;
  background: rgba(123,196,45,.45);
  border-radius: 50%;
  z-index: 2;
  animation: dustFloat 7s linear infinite;
}

.air-dust i:nth-child(1) { left: 12%; top: 40%; animation-delay: 0s; }
.air-dust i:nth-child(2) { left: 28%; top: 70%; animation-delay: 1.2s; }
.air-dust i:nth-child(3) { left: 50%; top: 38%; animation-delay: 2.3s; }
.air-dust i:nth-child(4) { left: 72%; top: 62%; animation-delay: 3.4s; }
.air-dust i:nth-child(5) { left: 86%; top: 45%; animation-delay: 4.5s; }

/* KEYFRAMES */
@keyframes airMove {
  to {
    transform: translateX(160vw);
  }
}

@keyframes dustFloat {
  0% {
    transform: translateY(0) scale(.8);
    opacity: .15;
  }
  50% {
    transform: translateY(-45px) scale(1.4);
    opacity: .75;
  }
  100% {
    transform: translateY(-90px) scale(.6);
    opacity: 0;
  }
}

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

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

@keyframes premiumGlow {
  from {
    opacity: .65;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(123,196,45,.45);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(123,196,45,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(123,196,45,0);
  }
}

/* MOBILE */
@media (max-width: 991px) {
  .premium-topbar .container {
    flex-direction: column;
    gap: 7px;
    text-align: center;
  }

  .premium-hero {
    min-height: auto;
    padding-bottom: 145px;
    background:
      linear-gradient(rgba(240,248,250,.92), rgba(240,248,250,.92)),
      url("../air-duct/air-duct-cleaning-banner.webp") center/cover no-repeat;
  }

  .premium-hero-content {
    padding: 75px 0 60px;
  }

  .premium-floating-services {
    margin-top: -120px;
  }

  .premium-hero-content h1 {
    font-size: 26px;
  }

  .premium-nav-btn {
    margin-top: 12px;
  }

  .air-moving-lines span {
    opacity: .45;
  }
}


.premium-about-air {
  position: relative;
  overflow: hidden;
  background: #f7f7f7;
  padding: 105px 0;
}

.premium-about-air::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: rgba(123,196,45,.12);
  border-radius: 50%;
  left: -140px;
  top: 120px;
  animation: aboutGlowMove 8s ease-in-out infinite alternate;
}

.about-image-box {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 30px 80px rgba(0,0,0,.16);
  animation: aboutImageFloat 4s ease-in-out infinite;
}

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

.about-image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34,43,55,.12), rgba(123,196,45,.18));
}

.about-floating-badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  background: rgba(255,255,255,.92);
  padding: 22px 26px;
  box-shadow: 0 20px 55px rgba(0,0,0,.18);
  border-left: 5px solid #7bc42d;
  animation: aboutBadgePulse 2.4s infinite;
}

.about-floating-badge strong {
  display: block;
  color: #172334;
  font-size: 24px;
  font-weight: 950;
}

.about-floating-badge span {
  color: #6c7785;
  font-size: 14px;
  font-weight: 800;
}

.about-content {
  position: relative;
  z-index: 3;
  animation: aboutTextIn .9s ease both;
}

.about-subtitle {
  display: inline-block;
  color: #7bc42d;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-content h2 {
  color: #172334;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 950;
  line-height: 1.08;
  margin-bottom: 22px;
}

.about-content p {
  color: #6b7580;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-points {
  display: grid;
  gap: 14px;
  margin: 30px 0;
}

.about-points div {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 16px 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,.06);
  transition: .35s ease;
}

.about-points div:hover {
  transform: translateX(12px);
  box-shadow: 0 22px 55px rgba(0,0,0,.11);
}

.about-points span {
  width: 46px;
  height: 46px;
  background: #e9f7d8;
  color: #7bc42d;
  border: 2px solid #7bc42d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  border-radius: 50%;
}

.about-points strong {
  color: #172334;
  font-size: 16px;
  font-weight: 900;
}

.about-btn {
  display: inline-block;
  background: #7bc42d;
  color: #fff;
  padding: 15px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 950;
  box-shadow: 0 14px 35px rgba(123,196,45,.34);
  animation: aboutBtnPulse 2s infinite;
}

/* Air animation */
.about-air-lines span {
  position: absolute;
  left: -420px;
  width: 420px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(123,196,45,.75), rgba(34,43,55,.25), transparent);
  z-index: 2;
  animation: aboutAirMove 8s linear infinite;
}

.about-air-lines span:nth-child(1) {
  top: 25%;
}

.about-air-lines span:nth-child(2) {
  top: 52%;
  width: 560px;
  animation-delay: 2.4s;
}

.about-air-lines span:nth-child(3) {
  top: 78%;
  animation-delay: 4.8s;
}

@keyframes aboutAirMove {
  to {
    transform: translateX(160vw);
  }
}

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

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

@keyframes aboutTextIn {
  from {
    opacity: 0;
    transform: translateX(45px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes aboutGlowMove {
  from {
    transform: translate(0,0) scale(1);
  }

  to {
    transform: translate(35px,-25px) scale(1.08);
  }
}

@keyframes aboutBadgePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(123,196,45,.35);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(123,196,45,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(123,196,45,0);
  }
}

@keyframes aboutBtnPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(123,196,45,.45);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(123,196,45,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(123,196,45,0);
  }
}

@media (max-width: 991px) {
  .premium-about-air {
    padding: 75px 0;
  }

  .about-image-box,
  .about-image-box img {
    min-height: 360px;
    height: 360px;
  }

  .about-points div:hover {
    transform: translateY(-6px);
  }
}

.why-air-section {
  position: relative;
  overflow: hidden;
  background: #f7f7f7;
  padding: 105px 0;
}

.why-air-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: rgba(123,196,45,.12);
  border-radius: 50%;
  top: 80px;
  left: -140px;
  animation: whyGlow 8s ease-in-out infinite alternate;
}

.why-head {
  max-width: 780px;
  margin: 0 auto 55px;
  position: relative;
  z-index: 3;
}

.why-head span {
  color: #7bc42d;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.why-head h2 {
  color: #172334;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 950;
  margin: 14px 0 16px;
}

.why-head p {
  color: #6c7785;
  font-size: 16px;
  line-height: 1.8;
}

.why-card {
  position: relative;
  z-index: 3;
  height: 100%;
  background: #fff;
  padding: 34px;
  box-shadow: 0 22px 55px rgba(0,0,0,.08);
  transition: .38s ease;
  overflow: hidden;
  animation: whyCardUp .85s ease both;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: #7bc42d;
  transform: scaleX(0);
  transition: .38s ease;
}

.why-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -55px;
  top: -55px;
  border-radius: 50%;
  background: rgba(123,196,45,.12);
  transition: .38s ease;
}

.why-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 36px 80px rgba(0,0,0,.15);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover::after {
  transform: scale(1.7);
}

.why-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #e9f7d8;
  border: 2px solid #7bc42d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
  transition: .6s ease;
  box-shadow: 0 0 0 8px rgba(123,196,45,.08);
}

.why-card:hover .why-icon {
  transform: rotateY(360deg) scale(1.08);
}

.why-card h3 {
  color: #172334;
  font-size: 21px;
  font-weight: 950;
  margin-bottom: 13px;
  position: relative;
  z-index: 2;
}

.why-card p {
  color: #6c7785;
  line-height: 1.75;
  margin: 0;
  position: relative;
  z-index: 2;
}

.why-card.dark {
  background: linear-gradient(145deg, #222b37, #121927);
}

.why-card.dark h3,
.why-card.dark p {
  color: #fff;
}

.why-card.dark .why-icon {
  background: rgba(123,196,45,.16);
}

.why-air-lines span {
  position: absolute;
  left: -420px;
  width: 420px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(123,196,45,.75), rgba(34,43,55,.18), transparent);
  animation: whyAirMove 8s linear infinite;
}

.why-air-lines span:nth-child(1) {
  top: 24%;
}

.why-air-lines span:nth-child(2) {
  top: 52%;
  width: 560px;
  animation-delay: 2.5s;
}

.why-air-lines span:nth-child(3) {
  top: 78%;
  animation-delay: 5s;
}

.why-air-section .col-lg-4:nth-child(1) .why-card { animation-delay: .1s; }
.why-air-section .col-lg-4:nth-child(2) .why-card { animation-delay: .2s; }
.why-air-section .col-lg-4:nth-child(3) .why-card { animation-delay: .3s; }
.why-air-section .col-lg-4:nth-child(4) .why-card { animation-delay: .4s; }
.why-air-section .col-lg-4:nth-child(5) .why-card { animation-delay: .5s; }
.why-air-section .col-lg-4:nth-child(6) .why-card { animation-delay: .6s; }

@keyframes whyAirMove {
  to {
    transform: translateX(160vw);
  }
}

@keyframes whyCardUp {
  from {
    opacity: 0;
    transform: translateY(55px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes whyGlow {
  from {
    transform: translate(0,0) scale(1);
  }

  to {
    transform: translate(35px,-25px) scale(1.08);
  }
}

@media (max-width: 991px) {
  .why-air-section {
    padding: 75px 0;
  }
}
.hvac-efficiency-section {
  position: relative;
  overflow: hidden;
  padding: 115px 0;
  background:
    linear-gradient(90deg, rgba(23,35,52,.88), rgba(23,35,52,.62)),
    url("images/hvac-efficiency-bg.jpg") center/cover no-repeat;
}

.hvac-efficiency-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 45%, rgba(123,196,45,.24), transparent 30%),
    radial-gradient(circle at 85% 60%, rgba(255,255,255,.12), transparent 28%);
  animation: hvacGlow 7s ease-in-out infinite alternate;
}

.hvac-content-box {
  position: relative;
  z-index: 3;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.18);
  padding: 45px;
  box-shadow: 0 35px 90px rgba(0,0,0,.22);
  animation: hvacFadeLeft .9s ease both;
}

.hvac-subtitle {
  display: inline-block;
  color: #7bc42d;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hvac-content-box h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 950;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hvac-content-box p {
  color: rgba(255,255,255,.84);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 15px;
}

.hvac-btn {
  display: inline-block;
  margin-top: 22px;
  background: #7bc42d;
  color: #fff;
  padding: 15px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 950;
  box-shadow: 0 14px 35px rgba(123,196,45,.34);
  animation: hvacPulse 2s infinite;
}

/* Right stacked cards */
.hvac-performance-stack {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 18px;
}

.hvac-mini-card {
  background: rgba(255,255,255,.92);
  padding: 26px;
  box-shadow: 0 25px 65px rgba(0,0,0,.18);
  border-left: 5px solid #7bc42d;
  transition: .35s ease;
  animation: hvacCardIn .85s ease both;
}

.hvac-mini-card:nth-child(2) {
  margin-left: 35px;
  animation-delay: .2s;
}

.hvac-mini-card:nth-child(3) {
  margin-left: 70px;
  animation-delay: .4s;
}

.hvac-mini-card:hover {
  transform: translateX(-14px) scale(1.02);
  box-shadow: 0 35px 85px rgba(0,0,0,.25);
}

.hvac-mini-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: #e9f7d8;
  color: #7bc42d;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  margin-bottom: 14px;
}

.hvac-mini-card h3 {
  color: #172334;
  font-size: 22px;
  font-weight: 950;
  margin-bottom: 10px;
}

.hvac-mini-card p {
  color: #6c7785;
  line-height: 1.7;
  margin: 0;
}

.before-after-card {
  position: relative;
  overflow: hidden;
  min-height: 255px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
  animation: hvacCardIn .85s ease both;
}

.before-card {
  transform: translateX(18px);
}

.after-card {
  transform: translateX(-18px);
  animation-delay: .2s;
}

.before-after-card img {
  width: 100%;
  height: 100%;
  min-height: 255px;
  object-fit: cover;
  display: block;
  transition: transform .55s ease, filter .45s ease;
}

.before-card img {
  filter: grayscale(.18) saturate(.9) brightness(.76);
}

.after-card img {
  filter: saturate(1.08) contrast(1.02) brightness(.92);
}

.before-after-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,16,25,.08) 0%, rgba(10,16,25,.2) 38%, rgba(10,16,25,.82) 100%);
}

.before-after-card:hover img {
  transform: scale(1.07);
}

.before-after-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.before-card .before-after-label {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}

.after-card .before-after-label {
  background: rgba(123,196,45,.18);
  color: #dfffbe;
  border: 1px solid rgba(123,196,45,.38);
}

.before-after-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px 24px 24px;
}

.before-after-overlay h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 950;
  margin: 0 0 8px;
}

.before-after-overlay p {
  color: rgba(255,255,255,.84);
  line-height: 1.7;
  margin: 0;
}

.before-after-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: -2px 0;
  animation: beforeAfterFloat 2.8s ease-in-out infinite;
}

.arrow-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(123,196,45,.9), transparent);
}

.arrow-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #7bc42d;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(123,196,45,.35);
}

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

/* Air animation */
.hvac-air-lines span {
  position: absolute;
  left: -420px;
  width: 420px;
  height: 2px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(123,196,45,.9), rgba(255,255,255,.65), transparent);
  animation: hvacAirMove 8s linear infinite;
  filter: drop-shadow(0 0 10px rgba(123,196,45,.55));
}

.hvac-air-lines span:nth-child(1) {
  top: 27%;
}

.hvac-air-lines span:nth-child(2) {
  top: 52%;
  width: 560px;
  animation-delay: 2.5s;
}

.hvac-air-lines span:nth-child(3) {
  top: 78%;
  animation-delay: 5s;
}

@keyframes hvacAirMove {
  to {
    transform: translateX(160vw);
  }
}

@keyframes hvacGlow {
  from {
    opacity: .65;
    transform: scale(1);
  }

  to {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes hvacFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-45px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hvacCardIn {
  from {
    opacity: 0;
    transform: translateX(55px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hvacPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(123,196,45,.45);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(123,196,45,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(123,196,45,0);
  }
}

@media (max-width: 991px) {
  .hvac-efficiency-section {
    padding: 75px 0;
  }

  .hvac-content-box {
    padding: 30px;
  }

  .hvac-mini-card:nth-child(2),
  .hvac-mini-card:nth-child(3) {
    margin-left: 0;
  }

  .before-card,
  .after-card {
    transform: none;
  }

  .before-after-card {
    min-height: 230px;
  }
}

/* SIMPLE AIR LINES */
.simple-air-lines span {
  position: absolute;
  left: -350px;
  width: 350px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7bc42d, transparent);
  animation: simpleAirMove 8s linear infinite;
}

.simple-air-lines span:nth-child(1) {
  top: 35%;
}

.simple-air-lines span:nth-child(2) {
  top: 70%;
  animation-delay: 3s;
}

/* ANIMATION */
@keyframes simpleAirMove {
  to {
    transform: translateX(150vw);
  }
}

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

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

@media (max-width: 991px) {
  .simple-services-section {
    padding: 70px 0;
  }
}



.simple-services-section {
  position: relative;
  overflow: hidden;
  background: #f7f7f7;
  padding: 100px 0;
}

.simple-services-head {
  max-width: 750px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 3;
}

.simple-services-head span {
  color: #7bc42d;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.simple-services-head h2 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 950;
  color: #172334;
  margin: 12px 0;
}

.simple-services-head p {
  color: #6c7785;
  line-height: 1.8;
}

.simple-services-list {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 3;
}

.service-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 15px 40px rgba(0,0,0,.06);
  transition: .35s ease;
  animation: simpleFadeUp .75s ease both;
  position: relative;
  overflow: hidden;
}

.service-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: #7bc42d;
  transition: .35s ease;
}

.service-point:hover {
  transform: translateX(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
}

.service-point:hover::before {
  height: 100%;
}

.icon-box {
  min-width: 54px;
  width: 54px;
  height: 54px;
  background: #e9f7d8;
  border: 2px solid #7bc42d;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: .55s ease;
  box-shadow: 0 0 0 8px rgba(123,196,45,.08);
}

.icon-box svg {
  width: 25px;
  height: 25px;
  stroke: #7bc42d;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: .45s ease;
}

.service-point:hover .icon-box {
  background: #7bc42d;
  transform: rotateY(360deg) scale(1.08);
}

.service-point:hover .icon-box svg {
  stroke: #fff;
}

.service-point h4 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 950;
  color: #172334;
}

.service-point p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #6c7785;
}

/* Right Box */
.simple-highlight-box {
  background: #fff;
  padding: 45px;
  box-shadow: 0 28px 75px rgba(0,0,0,.09);
  position: relative;
  z-index: 3;
  overflow: hidden;
  animation: simpleFadeRight .85s ease both;
}

.simple-highlight-box::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -85px;
  top: -85px;
  background: rgba(123,196,45,.13);
  border-radius: 50%;
}

.box-label {
  display: inline-block;
  color: #7bc42d;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.simple-highlight-box h3 {
  font-size: 30px;
  font-weight: 950;
  color: #172334;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.simple-highlight-box p {
  color: #6c7785;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.simple-highlight-box ul {
  margin: 24px 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 2;
}

.simple-highlight-box li {
  margin-bottom: 12px;
  color: #172334;
  font-weight: 800;
  position: relative;
  padding-left: 28px;
}

.simple-highlight-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 13px;
  height: 13px;
  background: #7bc42d;
  border-radius: 50%;
  box-shadow: 0 0 0 5px #e9f7d8;
}

.simple-btn {
  display: inline-block;
  background: #7bc42d;
  color: #fff;
  padding: 15px 32px;
  text-decoration: none;
  font-weight: 950;
  border-radius: 50px;
  box-shadow: 0 14px 35px rgba(123,196,45,.34);
  animation: simpleBtnPulse 2s infinite;
  position: relative;
  z-index: 2;
}

/* Air Animation */
.simple-air-lines span {
  position: absolute;
  left: -380px;
  width: 380px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(123,196,45,.8), rgba(34,43,55,.18), transparent);
  animation: simpleAirMove 8s linear infinite;
  z-index: 1;
}

.simple-air-lines span:nth-child(1) {
  top: 34%;
}

.simple-air-lines span:nth-child(2) {
  top: 72%;
  width: 520px;
  animation-delay: 3s;
}

/* Delays */
.simple-services-list .service-point:nth-child(1) { animation-delay: .1s; }
.simple-services-list .service-point:nth-child(2) { animation-delay: .2s; }
.simple-services-list .service-point:nth-child(3) { animation-delay: .3s; }
.simple-services-list .service-point:nth-child(4) { animation-delay: .4s; }
.simple-services-list .service-point:nth-child(5) { animation-delay: .5s; }

@keyframes simpleAirMove {
  to {
    transform: translateX(155vw);
  }
}

@keyframes simpleFadeUp {
  from {
    opacity: 0;
    transform: translateY(38px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes simpleFadeRight {
  from {
    opacity: 0;
    transform: translateX(45px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes simpleBtnPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(123,196,45,.42);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(123,196,45,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(123,196,45,0);
  }
}

@media (max-width: 991px) {
  .simple-services-section {
    padding: 75px 0;
  }

  .simple-highlight-box {
    padding: 32px;
  }

  .service-point:hover {
    transform: translateY(-6px);
  }
}
.team-service-section {
  position: relative;
  overflow: hidden;
  background: #f7f7f7;
  padding: 110px 0;
}

.team-service-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -130px;
  top: 90px;
  background: rgba(123,196,45,.12);
  border-radius: 50%;
  animation: teamGlow 8s ease-in-out infinite alternate;
}

/* Image */
.team-image-card {
  position: relative;
  height: 560px;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(0,0,0,.16);
  animation: teamImageFloat 4s ease-in-out infinite;
}

.team-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23,35,52,.45), rgba(23,35,52,.05));
}

.team-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 3;
  background: rgba(255,255,255,.94);
  padding: 22px 26px;
  border-left: 5px solid #7bc42d;
  box-shadow: 0 22px 55px rgba(0,0,0,.22);
  animation: teamPulse 2.5s infinite;
}

.team-badge strong {
  display: block;
  color: #172334;
  font-size: 24px;
  font-weight: 950;
}

.team-badge small {
  color: #6c7785;
  font-weight: 800;
}

/* Content */
.team-content-box {
  position: relative;
  z-index: 3;
  background: #fff;
  padding: 48px;
  box-shadow: 0 28px 75px rgba(0,0,0,.08);
  animation: teamTextIn .9s ease both;
}

.team-content-box span {
  color: #7bc42d;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.team-content-box h2 {
  color: #172334;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 950;
  line-height: 1.08;
  margin: 15px 0 22px;
}

.team-content-box p {
  color: #6c7785;
  line-height: 1.85;
  font-size: 16px;
}

/* Points */
.team-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.team-points div {
  background: #f8fbf5;
  padding: 22px;
  border-top: 4px solid #7bc42d;
  transition: .35s ease;
}

.team-points div:hover {
  transform: translateY(-10px);
  background: #e9f7d8;
  box-shadow: 0 18px 45px rgba(0,0,0,.09);
}

.team-points b {
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: #7bc42d;
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  margin-bottom: 14px;
}

.team-points h4 {
  color: #172334;
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 8px;
}

.team-points p {
  color: #6c7785;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* Air Lines */
.team-air-lines span {
  position: absolute;
  left: -420px;
  width: 420px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(123,196,45,.75), rgba(34,43,55,.18), transparent);
  animation: teamAirMove 8s linear infinite;
}

.team-air-lines span:nth-child(1) {
  top: 32%;
}

.team-air-lines span:nth-child(2) {
  top: 70%;
  width: 560px;
  animation-delay: 3s;
}

/* Animations */
@keyframes teamAirMove {
  to {
    transform: translateX(160vw);
  }
}

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

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

@keyframes teamTextIn {
  from {
    opacity: 0;
    transform: translateX(45px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes teamGlow {
  from {
    transform: translate(0,0) scale(1);
  }

  to {
    transform: translate(-35px,25px) scale(1.08);
  }
}

@keyframes teamPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(123,196,45,.35);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(123,196,45,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(123,196,45,0);
  }
}

@media (max-width: 991px) {
  .team-service-section {
    padding: 75px 0;
  }

  .team-image-card {
    height: 380px;
  }

  .team-content-box {
    padding: 32px;
  }

  .team-points {
    grid-template-columns: 1fr;
  }
}


.premium-gallery-section {
  background: #f7f7f7;
  padding: 105px 0;
  overflow: hidden;
}

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

.gallery-head span {
  color: #7bc42d;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gallery-head h2 {
  color: #172334;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 950;
  margin: 12px 0;
}

.gallery-head p {
  color: #6c7785;
}

/* Grid */
.premium-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 22px 60px rgba(0,0,0,.12);
  transition: .4s ease;
  animation: galleryFadeUp .8s ease both;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .65s ease;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23,35,52,.92), rgba(23,35,52,.18));
  opacity: 0;
  z-index: 1;
  transition: .4s ease;
}

.gallery-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: #fff;
  opacity: 0;
  transform: translateY(25px);
  transition: .4s ease;
}

.gallery-overlay h3 {
  font-size: 22px;
  font-weight: 950;
  margin-bottom: 5px;
}

.gallery-overlay span {
  color: #7bc42d;
  font-weight: 900;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 36px 85px rgba(0,0,0,.18);
}

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

.gallery-item:hover::before,
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-item.hide {
  display: none;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(23,35,52,.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox img {
  max-width: 90%;
  max-height: 85vh;
  box-shadow: 0 30px 90px rgba(0,0,0,.4);
  animation: lightboxZoom .35s ease both;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  border: 0;
  background: #7bc42d;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
}

/* Animation */
@keyframes galleryFadeUp {
  from {
    opacity: 0;
    transform: translateY(45px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lightboxZoom {
  from {
    opacity: 0;
    transform: scale(.86);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@media (max-width: 575px) {
  .premium-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }
}

.centered-res-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f7f7f7, #eef6f0);
  padding: 110px 0;
  text-align: center;
}

.centered-res-section::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: rgba(123,196,45,.12);
  border-radius: 50%;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  animation: centerGlow 8s ease-in-out infinite alternate;
}

/* Moving background shapes */
.center-bg-shapes .shape {
  position: absolute;
  z-index: 1;
  opacity: .18;
  pointer-events: none;
}

.shape-one {
  width: 180px;
  height: 180px;
  background: #7bc42d;
  border-radius: 50%;
  top: 70px;
  left: 8%;
  animation: shapeFloatOne 7s ease-in-out infinite;
}

.shape-two {
  width: 120px;
  height: 120px;
  border: 18px solid #7bc42d;
  border-radius: 50%;
  right: 10%;
  top: 110px;
  animation: shapeFloatTwo 8s ease-in-out infinite;
}

.shape-three {
  width: 160px;
  height: 160px;
  background: rgba(34,43,55,.75);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  left: 15%;
  bottom: 70px;
  animation: shapeRotate 10s linear infinite;
}

.shape-four {
  width: 210px;
  height: 70px;
  background: #7bc42d;
  border-radius: 80px;
  right: 12%;
  bottom: 90px;
  animation: shapeSlide 6s ease-in-out infinite;
}

/* Content */
.center-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  margin: auto;
  animation: centerFadeUp .9s ease both;
}

.center-sub {
  display: inline-block;
  color: #7bc42d;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.center-content h2 {
  color: #172334;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 950;
  line-height: 1.1;
  margin-bottom: 20px;
}

.center-content p {
  color: #6c7785;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 14px;
}

/* Points */
.center-points {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 35px 0;
  flex-wrap: wrap;
}

.center-points div {
  background: #fff;
  padding: 18px 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: .35s ease;
}

.center-points div:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(0,0,0,.13);
}

.center-points span {
  width: 42px;
  height: 42px;
  background: #7bc42d;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
}

.center-points strong {
  color: #172334;
  font-weight: 900;
}

/* Button */
.center-btn {
  display: inline-block;
  margin-top: 10px;
  background: #7bc42d;
  color: #fff;
  padding: 15px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 950;
  box-shadow: 0 14px 35px rgba(123,196,45,.34);
  animation: centerPulse 2s infinite;
}

/* Air lines */
.center-air-lines {
  position: relative;
  z-index: 2;
}

.center-air-lines span {
  position: absolute;
  left: -350px;
  width: 350px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7bc42d, transparent);
  animation: centerAirMove 8s linear infinite;
}

.center-air-lines span:nth-child(1) {
  top: 30%;
}

.center-air-lines span:nth-child(2) {
  top: 70%;
  animation-delay: 3s;
}

/* Animations */
@keyframes centerAirMove {
  to {
    transform: translateX(150vw);
  }
}

@keyframes centerFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes centerGlow {
  from {
    transform: translateX(-50%) scale(1);
  }

  to {
    transform: translateX(-50%) scale(1.1);
  }
}

@keyframes centerPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(123,196,45,.45);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(123,196,45,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(123,196,45,0);
  }
}

@keyframes shapeFloatOne {
  0%, 100% {
    transform: translate(0,0) scale(1);
  }

  50% {
    transform: translate(25px,-25px) scale(1.08);
  }
}

@keyframes shapeFloatTwo {
  0%, 100% {
    transform: translate(0,0);
  }

  50% {
    transform: translate(-25px,25px);
  }
}

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

@keyframes shapeSlide {
  0%, 100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-35px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .centered-res-section {
    padding: 75px 0;
  }

  .center-points {
    flex-direction: column;
    align-items: center;
  }

  .center-points div {
    width: 100%;
    justify-content: center;
  }

  .shape-one,
  .shape-two,
  .shape-three,
  .shape-four {
    opacity: .08;
  }
}

.circle-counter-section {
  position: relative;
  background: linear-gradient(135deg, #172334, #0f1a28);
  padding: 105px 0;
  overflow: hidden;
}

.circle-counter-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(123,196,45,.18);
  border-radius: 50%;
  left: -150px;
  top: 60px;
  filter: blur(4px);
  animation: circleGlow 7s ease-in-out infinite alternate;
}

.circle-counter-head {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 55px;
}

.circle-counter-head span {
  color: #7bc42d;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.circle-counter-head h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 950;
  margin-top: 12px;
}

.circle-counter-box {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  padding: 38px 22px;
  backdrop-filter: blur(12px);
  transition: .35s ease;
  height: 100%;
}

.circle-counter-box:hover {
  transform: translateY(-12px);
  background: rgba(123,196,45,.10);
  box-shadow: 0 30px 75px rgba(0,0,0,.22);
}

.progress-circle {
  width: 150px;
  height: 150px;
  margin: 0 auto 24px;
  position: relative;
}

.progress-circle svg {
  width: 150px;
  height: 150px;
  transform: rotate(-90deg);
}

.circle-bg,
.circle-fill {
  fill: none;
  stroke-width: 10;
}

.circle-bg {
  stroke: rgba(255,255,255,.13);
}

.circle-fill {
  stroke: #7bc42d;
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;
  transition: stroke-dashoffset 1.8s ease;
  filter: drop-shadow(0 0 8px rgba(123,196,45,.55));
}

.circle-number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 34px;
  font-weight: 950;
}

.circle-counter-box h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  margin-bottom: 8px;
}

.circle-counter-box p {
  color: rgba(255,255,255,.72);
  margin: 0;
}

@keyframes circleGlow {
  from {
    transform: translate(0,0) scale(1);
  }
  to {
    transform: translate(40px, -25px) scale(1.08);
  }
}

@media (max-width: 768px) {
  .circle-counter-section {
    padding: 75px 0;
  }
}

.advantages-points-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f7f7f7, #eef6f0);
  padding: 100px 0;
}

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

.adv-points-head span {
  color: #7bc42d;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.adv-points-head h2 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 950;
  color: #172334;
  margin: 12px 0;
}

.adv-points-head p {
  color: #6c7785;
}

/* LIST */
.adv-points-list {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 3;
}

/* ITEM */
.adv-point {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  padding: 18px 22px;
  box-shadow: 0 15px 40px rgba(0,0,0,.06);
  transition: .35s ease;
  animation: advFadeUp .7s ease both;
}

.adv-point:hover {
  transform: translateX(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
}

/* ICON */
.adv-icon {
  width: 48px;
  height: 48px;
  background: #e9f7d8;
  border: 2px solid #7bc42d;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  transition: .4s ease;
}

.adv-point:hover .adv-icon {
  background: #7bc42d;
  color: #fff;
  transform: rotateY(360deg);
}

/* TEXT */
.adv-point p {
  margin: 0;
  color: #172334;
  font-size: 15px;
  line-height: 1.7;
}

.adv-point strong {
  color: #172334;
}

/* Highlight item */
.adv-point.highlight {
  background: #172334;
}

.adv-point.highlight p,
.adv-point.highlight strong {
  color: #fff;
}

.adv-point.highlight .adv-icon {
  background: rgba(123,196,45,.2);
  border-color: #7bc42d;
}

/* AIR animation */
.adv-points-air span {
  position: absolute;
  left: -350px;
  width: 350px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7bc42d, transparent);
  animation: advAirMove 8s linear infinite;
}

.adv-points-air span:nth-child(1) {
  top: 30%;
}

.adv-points-air span:nth-child(2) {
  top: 70%;
  animation-delay: 3s;
}

/* Animations */
@keyframes advAirMove {
  to {
    transform: translateX(150vw);
  }
}

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

@media (max-width: 768px) {
  .advantages-points-section {
    padding: 70px 0;
  }

  .adv-point {
    align-items: flex-start;
  }
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f7f7f7, #eef6f0);
  padding: 105px 0;
}

.testimonials-head {
  max-width: 760px;
  margin: 0 auto 55px;
  position: relative;
  z-index: 3;
}

.testimonials-head span {
  color: #7bc42d;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.testimonials-head h2 {
  color: #172334;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 950;
  margin: 12px 0;
}

.testimonials-head p {
  color: #6c7785;
  line-height: 1.8;
}

/* Cards */
.testimonial-card {
  position: relative;
  z-index: 3;
  height: 100%;
  background: #fff;
  padding: 34px;
  box-shadow: 0 22px 55px rgba(0,0,0,.08);
  transition: .35s ease;
  animation: testCardUp .8s ease both;
  overflow: hidden;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  right: 22px;
  top: -18px;
  font-size: 110px;
  color: rgba(123,196,45,.14);
  font-weight: 950;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 35px 80px rgba(0,0,0,.14);
}

.stars {
  color: #7bc42d;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.testimonial-card p {
  color: #6c7785;
  line-height: 1.85;
  margin-bottom: 26px;
  position: relative;
  z-index: 2;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.client-icon {
  width: 54px;
  height: 54px;
  background: #e9f7d8;
  color: #7bc42d;
  border: 2px solid #7bc42d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  font-size: 22px;
  transition: .45s ease;
}

.testimonial-card:hover .client-icon {
  background: #7bc42d;
  color: #fff;
  transform: rotateY(360deg);
}

.client-info h4 {
  margin: 0;
  color: #172334;
  font-weight: 950;
  font-size: 18px;
}

.client-info span {
  color: #6c7785;
  font-size: 14px;
  font-weight: 700;
}

.testimonial-card.dark {
  background: linear-gradient(145deg, #222b37, #121927);
}

.testimonial-card.dark p,
.testimonial-card.dark .client-info span {
  color: rgba(255,255,255,.75);
}

.testimonial-card.dark .client-info h4 {
  color: #fff;
}

/* Moving background shapes */
.test-bg-shapes .test-shape {
  position: absolute;
  z-index: 1;
  opacity: .16;
  pointer-events: none;
}

.shape-a {
  width: 190px;
  height: 190px;
  background: #7bc42d;
  border-radius: 50%;
  left: 7%;
  top: 80px;
  animation: testFloatA 7s ease-in-out infinite;
}

.shape-b {
  width: 130px;
  height: 130px;
  border: 18px solid #7bc42d;
  border-radius: 50%;
  right: 9%;
  top: 120px;
  animation: testFloatB 8s ease-in-out infinite;
}

.shape-c {
  width: 150px;
  height: 150px;
  background: rgba(34,43,55,.75);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  left: 14%;
  bottom: 80px;
  animation: testRotate 11s linear infinite;
}

.shape-d {
  width: 220px;
  height: 72px;
  background: #7bc42d;
  border-radius: 80px;
  right: 12%;
  bottom: 90px;
  animation: testSlide 6s ease-in-out infinite;
}

/* Delays */
.testimonials-section .col-lg-4:nth-child(1) .testimonial-card { animation-delay: .1s; }
.testimonials-section .col-lg-4:nth-child(2) .testimonial-card { animation-delay: .25s; }
.testimonials-section .col-lg-4:nth-child(3) .testimonial-card { animation-delay: .4s; }

/* Animations */
@keyframes testCardUp {
  from {
    opacity: 0;
    transform: translateY(45px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes testFloatA {
  0%, 100% {
    transform: translate(0,0) scale(1);
  }

  50% {
    transform: translate(25px,-25px) scale(1.08);
  }
}

@keyframes testFloatB {
  0%, 100% {
    transform: translate(0,0);
  }

  50% {
    transform: translate(-25px,25px);
  }
}

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

@keyframes testSlide {
  0%, 100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-35px);
  }
}

@media (max-width: 991px) {
  .testimonials-section {
    padding: 75px 0;
  }

  .test-bg-shapes .test-shape {
    opacity: .08;
  }
}

.contact-data-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #172334, #0f1a28);
  padding: 110px 0;
  color: #fff;
}

/* LEFT */
.contact-info span {
  color: #7bc42d;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-info h2 {
  font-size: clamp(32px,4vw,48px);
  font-weight: 950;
  margin: 15px 0;
}

.contact-info p {
  color: #cfd8dc;
  line-height: 1.8;
}

.contact-info ul {
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.contact-info li {
  margin-bottom: 10px;
  color: #fff;
}

/* FORM BOX */
.contact-form-box {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  padding: 35px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

/* INPUTS */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 15px;
}

input, select, textarea {
  width: 100%;
  padding: 14px;
  border: none;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 600;
  outline: none;
}

textarea {
  margin-top: 15px;
  height: 90px;
}
    
/* Form Styling */
    .CUS fieldset {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 15px;
      padding: 0;
    }
    
    .CUS input[type="text"],
    .CUS input[type="tel"],
    .CUS input[type="number"],
    .CUS textarea,
    .CUS select {
      padding: 12px 15px !important;
      border: 1px solid rgba(0,0,0,.1) !important;
      border-radius: 8px !important;
      font-size: 14px !important;
      font-family: inherit !important;
      transition: all 0.3s ease !important;
      background:rgb(47, 63, 82);
      color: #fff !important;
    }
    
    .CUS input[type="text"]:focus,
    .CUS input[type="tel"]:focus,
    .CUS input[type="number"]:focus,
    .CUS textarea:focus,
    .CUS select:focus {
      outline: none !important;
      border-color: #7bc42d !important;
      box-shadow: 0 0 0 3px rgba(123, 196, 45, 0.15) !important;
    }
    
    .CUS textarea {
      grid-column: 1 / -1 !important;
      resize: vertical !important;
      min-height: 100px !important;
      width: 100% !important;
      margin-top: 0 !important;
      margin-left: 0 !important;
    }
    
    .CUS p {
      grid-column: 1 / -1 !important;
      margin: 15px 0 10px 0 !important;
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 15px !important;
      align-items: center !important;
    }
    
    .CUS p select,
    .CUS p input[type="number"] {
      margin: 0 !important;
      flex: 1 1 150px !important;
      min-width: 150px !important;
    }
    
    .CUS input[type="submit"] {
      grid-column: 1 / -1 !important;
      padding: 15px 35px !important;
      background: #7bc42d !important;
      color: white !important;
      border: none !important;
      border-radius: 8px !important;
      font-size: 15px !important;
      font-weight: 900 !important;
      cursor: pointer !important;
      transition: all 0.3s ease !important;
      width: 100% !important;
      margin: 10px 0 0 0 !important;
    }
    
    .CUS input[type="submit"]:hover {
      background: #6ab01e !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 8px 20px rgba(123, 196, 45, 0.3) !important;
    }
/* ROW */
.form-row {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.form-row div {
  flex: 1;
}

/* BUTTON */
.submit-btn {
  margin-top: 20px;
  width: 100%;
  padding: 15px;
  background: #7bc42d;
  color: #fff;
  font-weight: 900;
  border: none;
  cursor: pointer;
  transition: .3s;
}

.submit-btn:hover {
  background: #fff;
  color: #172334;
}

/* SHAPES */
.contact-bg-shapes .c-shape {
  position: absolute;
  opacity: .15;
}

.s1 {
  width: 200px;
  height: 200px;
  background: #7bc42d;
  border-radius: 50%;
  top: 50px;
  left: 10%;
  animation: float1 7s infinite;
}

.s2 {
  width: 140px;
  height: 140px;
  border: 15px solid #7bc42d;
  border-radius: 50%;
  right: 10%;
  top: 120px;
  animation: float2 8s infinite;
}

.s3 {
  width: 180px;
  height: 60px;
  background: #7bc42d;
  border-radius: 60px;
  bottom: 80px;
  right: 20%;
  animation: float3 6s infinite;
}
.contact-info-data {
  color: #fff;
  position: relative;
  z-index: 2;
}

.contact-info-data span {
  color: #7bc42d;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-info-data h2 {
  font-size: clamp(30px,4vw,45px);
  font-weight: 950;
  margin: 15px 0 30px;
}

/* ITEM */
.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: .3s ease;
}

.info-item:hover {
  transform: translateX(10px);
  background: rgba(123,196,45,.1);
}

/* ICON */
.info-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(123,196,45,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: .4s ease;
}

.info-item:hover .info-icon {
  background: #7bc42d;
  color: #fff;
  transform: rotateY(360deg);
}

/* TEXT */
.info-item h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
}

.follow-us-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.follow-us-title::before {
  content: "\1F465";
  font-size: 18px;
  line-height: 1;
}

.info-item:has(.follow-us-title) .info-icon {
  font-size: 0;
}

.info-item:has(.follow-us-title) .info-icon::before {
  content: "\1F465";
  font-size: 24px;
  line-height: 1;
}

.info-item p {
  margin: 0;
  color: #cfd8dc;
  font-size: 14px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  transition: .3s ease;
}

.social-links a:hover {
  background: #7bc42d;
  border-color: #7bc42d;
  transform: translateY(-3px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
@keyframes float1 {
  50% { transform: translate(20px,-20px); }
}

@keyframes float2 {
  50% { transform: translate(-20px,20px); }
}

@keyframes float3 {
  50% { transform: translateX(-30px); }
}

/* RESPONSIVE */
@media(max-width:768px){
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }
}

.premium-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #172334, #0f1a28);
  color: #fff;
  padding: 85px 0 25px;
}
.footer-location-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.footer-location-inline li {
  animation: footerLocationUp .7s ease both;
}

.footer-location-inline li:nth-child(1) { animation-delay: .05s; }
.footer-location-inline li:nth-child(2) { animation-delay: .1s; }
.footer-location-inline li:nth-child(3) { animation-delay: .15s; }
.footer-location-inline li:nth-child(4) { animation-delay: .2s; }
.footer-location-inline li:nth-child(5) { animation-delay: .25s; }
.footer-location-inline li:nth-child(6) { animation-delay: .3s; }
.footer-location-inline li:nth-child(7) { animation-delay: .35s; }
.footer-location-inline li:nth-child(8) { animation-delay: .4s; }
.footer-location-inline li:nth-child(9) { animation-delay: .45s; }
.footer-location-inline li:nth-child(10) { animation-delay: .5s; }
.footer-location-inline li:nth-child(11) { animation-delay: .55s; }

.footer-location-inline a {
  display: inline-block;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  padding: 9px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: .35s ease;
}

.footer-location-inline a:hover {
  background: #7bc42d;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(123,196,45,.28);
  padding-left: 14px;
}

@keyframes footerLocationUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-shapes span {
  position: absolute;
  opacity: .12;
  background: #7bc42d;
  pointer-events: none;
}

.footer-shapes span:nth-child(1) {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  left: -80px;
  top: 60px;
  animation: footerFloat 7s ease-in-out infinite;
}

.footer-shapes span:nth-child(2) {
  width: 180px;
  height: 60px;
  border-radius: 80px;
  right: 8%;
  bottom: 70px;
  animation: footerSlide 6s ease-in-out infinite;
}

.footer-box {
  position: relative;
  z-index: 2;
}

.footer-box h3 {
  color: #fff;
  font-size: 26px;
  font-weight: 950;
  margin-bottom: 18px;
}

.footer-box h4 {
  color: #7bc42d;
  font-size: 20px;
  font-weight: 950;
  margin-bottom: 18px;
}

.footer-box p {
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: 10px;
}

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

.footer-box li {
  margin-bottom: 10px;
}

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

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

.footer-contact strong {
  color: #fff;
}
.partners-marquee {
  overflow: hidden;
  background: #172334;
  padding: 14px 0;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marqueeMove 35s linear infinite;
  align-items: center;
}

.marquee-track span {
  color: #7bc42d;
  font-weight: 900;
  margin-right: 10px;
}

/* LINKS */
.marquee-track a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-weight: 800;
  transition: .3s;
  position: relative;
}

.marquee-track a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #7bc42d;
  transition: .3s;
}

.marquee-track a:hover {
  color: #7bc42d;
}

.marquee-track a:hover::after {
  width: 100%;
}

/* PAUSE ON HOVER */
.partners-marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* ANIMATION */
@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.footer-map {
  margin-top: 15px;
  height: 190px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0,0,0,.22);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.72);
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  margin-left: 16px;
  font-weight: 800;
}

.footer-bottom a:hover {
  color: #7bc42d;
}

@keyframes footerFloat {
  0%, 100% {
    transform: translate(0,0) scale(1);
  }
  50% {
    transform: translate(25px,-25px) scale(1.08);
  }
}

@keyframes footerSlide {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-35px);
  }
}

@media (max-width: 768px) {
  .premium-footer {
    padding-top: 65px;
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
  }

  .footer-bottom a {
    margin: 0 8px;
  }
}


.faq-accordion-section {
  background: linear-gradient(135deg, #f7f7f7, #eef6f0);
  padding: 105px 0;
  overflow: hidden;
}

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

.faq-acc-head span {
  color: #7bc42d;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.faq-acc-head h2 {
  color: #172334;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 950;
  margin: 12px 0;
}

.faq-acc-head p {
  color: #6c7785;
  line-height: 1.8;
}

.faq-acc-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
}

.faq-acc-tabs button {
  border: 0;
  background: #fff;
  color: #172334;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(0,0,0,.07);
  transition: .3s ease;
}

.faq-acc-tabs button.active,
.faq-acc-tabs button:hover {
  background: #7bc42d;
  color: #fff;
  transform: translateY(-4px);
}

.faq-acc-content {
  max-width: 920px;
  margin: auto;
}

.faq-panel {
  display: none;
  animation: faqPanelUp .45s ease both;
}

.faq-panel.active {
  display: block;
}

.faq-acc-item {
  background: #fff;
  margin-bottom: 16px;
  box-shadow: 0 18px 45px rgba(0,0,0,.07);
  overflow: hidden;
  transition: .35s ease;
}

.faq-acc-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 65px rgba(0,0,0,.11);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #172334;
  padding: 20px 22px;
  font-size: 17px;
  font-weight: 950;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.faq-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: #e9f7d8;
  border: 2px solid #7bc42d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .35s ease;
}

.faq-question i {
  margin-left: auto;
  width: 34px;
  height: 34px;
  background: #7bc42d;
  color: #fff;
  border-radius: 50%;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: .35s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-answer p {
  color: #6c7785;
  line-height: 1.8;
  padding: 0 24px 22px 82px;
  margin: 0;
}

.faq-acc-item.active .faq-answer {
  max-height: 180px;
}

.faq-acc-item.active .faq-question i {
  transform: rotate(45deg);
  background: #172334;
}

.faq-acc-item.active .faq-icon,
.faq-acc-item:hover .faq-icon {
  background: #7bc42d;
  color: #fff;
  transform: rotateY(360deg);
}

@keyframes faqPanelUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 575px) {
  .faq-question {
    font-size: 15px;
    padding: 18px;
  }

  .faq-answer p {
    padding-left: 22px;
  }
}
