/* =====================================================================
   Dri Right stylesheet — self-contained, no framework dependencies.
   Sections: 1) reset/base  2) page styles  3) component behaviour layer
   ===================================================================== */

/* ---------- 1. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-primary);
  color: var(--grey);
}
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; }
p, figure { margin: 0; }
img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
  border: 0;
}
a { background-color: transparent; color: inherit; text-decoration: none; }
button { font-family: inherit; font-size: inherit; cursor: pointer; }
iframe { border: none; }

/* inline-block helper */
.inline-block { display: inline-block; max-width: 100%; }

/* container clearfix — keeps child margins from collapsing through (was .w-container) */
.block-container::before,
.block-container::after { content: " "; display: table; }
.block-container::after { clear: both; }

:root {
  --grey: #636565;
  --secondary: #242424;
  --font-primary: "Fira Sans", sans-serif;
  --accent: #124474;
  --white: white;
  --primary: #68c39b;
  --off-white: #fafafa;
  --black: black;
}

.block-container {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .block-container {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .block-container {
    max-width: none;
  }
}

a {
  color: var(--grey);
  text-decoration: none;
}

.hero {
  background-image: linear-gradient(90deg, #fff 45%, #0000 59%), url('../images/fire-hero-bg.webp');
  background-position: 0 0, 100% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.hero.home {
  background-image: linear-gradient(90deg, #fff 45%, #0000 59%), url('../images/home-hero-bg.webp');
  background-position: 0 0, 100%;
}

.hero.water {
  background-image: linear-gradient(90deg, #fff 45%, #0000 59%), url('../images/water-hero-bg.webp');
  background-position: 0 0, 100%;
  background-size: auto, cover;
}

.hero.mold {
  background-image: linear-gradient(90deg, #fff 45%, #0000 59%), url('../images/mold-hero-bg.webp');
  background-position: 0 0, 100%;
}

.hero.about-us {
  background-image: linear-gradient(90deg, #fff 45%, #0000 59%), url('../images/about-us-hero-bg.webp');
  background-position: 0 0, 100%;
  background-size: auto, cover;
}

.hero.resources {
  background-image: linear-gradient(90deg, #fff 45%, #0000 59%), url('../images/resources-hero-bg.webp');
  background-position: 0 0, 100%;
}

.hero.reconstruction {
  background-image: linear-gradient(90deg, #fff 45%, #0000 59%), url('../images/reconstruction-hero-bg.webp');
  background-position: 0 0, 100%;
}

.hero.storm {
  background-image: linear-gradient(90deg, #fff 45%, #0000 59%), url('../images/storem-hero-bg.webp');
  background-position: 0 0, 100%;
}

.padding-global {
  max-width: 95vw;
}

.hero-cta-button-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: var(--secondary);
  vertical-align: baseline;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 445px;
  height: 120px;
  transition: all .2s;
  display: inline-flex;
}

.hero-cta-button-wrapper:hover {
  background-color: var(--grey);
  box-shadow: 0 2px 5px #0000008a;
}

.body {
  font-family: var(--font-primary);
  color: var(--grey);
  font-size: 16px;
  line-height: 22px;
}

.body.accent {
  color: var(--accent);
}

.body.white {
  color: var(--white);
}

.body.white.grid {
  font-size: 40px;
  line-height: 40px;
}

.hero-cta-button-text {
  color: var(--white);
  letter-spacing: 1px;
  font-size: 40px;
  font-weight: 700;
  line-height: 28px;
}

.hero-cta-button-subtext {
  color: var(--white);
  letter-spacing: 1px;
  font-size: 20px;
  line-height: 22px;
}

.hero-cta-button-text-wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.main-logo-img {
  object-fit: contain;
  height: 150px;
}

.h1-heading {
  color: var(--secondary);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
}

.h1-heading.white {
  color: var(--white);
}

.subheading {
  font-size: 24px;
}

.subheading.white {
  color: var(--white);
}

.subheading.hero {
  width: 550px;
  margin-left: 0;
}

.subheading.in-hero {
  width: 80%;
  margin-left: 0;
}

.subheading.experience-card {
  color: var(--accent);
  text-align: left;
  padding: 0;
  font-weight: 700;
}

.subheading.experiece-card-text {
  color: var(--secondary);
  font-weight: 600;
}

.hero-text-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  max-width: 800px;
  display: flex;
}

.hero-wrapper-left {
  z-index: 2;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50vw;
  max-width: 1800px;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  position: relative;
}

.text-block {
  width: 80%;
}

.social-proof-bar {
  background-image: linear-gradient(90deg, #68c39be6, #124474e6), url('../images/social-proof-bar-bg.webp');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.social-proof-wrapper {
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.social-proof-bar-text {
  width: 275px;
  color: var(--white);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.social-proof-bar-image {
  height: 60px;
}

.services-wrapper {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.services-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: minmax(500px, 1fr) repeat(auto-fit, minmax(500px, 1fr));
  grid-template-columns: 375px 375px 375px;
  grid-auto-rows: minmax(500px, 1fr);
  grid-auto-flow: row;
  place-items: stretch stretch;
}

.services-text-wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.serivce-card-heading {
  color: var(--secondary);
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
}

.serivce-card-heading.small {
  font-size: 30px;
  line-height: 30px;
}

.service-card-inner-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--white);
  border-radius: 10px;
  flex-flow: column;
  align-items: center;
  width: 280px;
  padding: 20px 40px;
  display: inline-flex;
  box-shadow: 0 4px 6px 6px #0003;
  position: relative;
  z-index: 2;
}

.service-card-divider {
  background-color: var(--grey);
  width: 200px;
  height: 3px;
}

.service-card-text {
  text-align: center;
}

.service-card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  width: 375px;
  height: 500px;
  padding: 50px;
  transition: all .2s;
  box-shadow: 4px 4px 4px #00000080;
}

.service-card-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 4px 4px 4px 7px #00000080;
}

/* Parallax image layer — overfilled so it can pan with the cursor without
   exposing the card edges. JS drives --px / --py; the container stays put. */
.service-card-wrapper::before {
  content: "";
  position: absolute;
  inset: -40px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0);
  transition: transform .35s ease-out;
  will-change: transform;
  z-index: 0;
  pointer-events: none;
}

/* One-shot "shine" sweep across the background, fired on each hover-enter. */
.service-card-wrapper::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -150%;
  width: 80%;
  height: 220%;
  background: linear-gradient(90deg, #fff0 0%, #ffffff8c 50%, #fff0 100%);
  transform: rotate(18deg);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.service-card-wrapper:hover::after {
  animation: service-card-shine .75s ease-out;
}

@keyframes service-card-shine {
  0% { left: -150%; opacity: 0; }
  12% { opacity: 1; }
  100% { left: 150%; opacity: 0; }
}

.service-card-wrapper.water::before {
  background-image: linear-gradient(#00000080, #00000080), url('../images/services-water.webp');
}

.service-card-wrapper.fire::before {
  background-image: linear-gradient(#00000080, #00000080), url('../images/services-fire.webp');
}

.service-card-wrapper.mold::before {
  background-image: linear-gradient(#00000080, #00000080), url('../images/services-mold.webp');
}

.service-card-wrapper.reconstruction::before {
  background-image: linear-gradient(#00000080, #00000080), url('../images/services-construction.webp');
}

.service-card-wrapper.storm::before {
  background-image: linear-gradient(#00000080, #00000080), url('../images/storm-bg.webp');
}

.service-card-wrapper.contents::before {
  background-image: linear-gradient(#00000080, #00000080), url('../images/contents-bg.webp');
}

@media (prefers-reduced-motion: reduce) {
  .service-card-wrapper::before { transition: none; }
  .service-card-wrapper:hover::after { animation: none; }
}

.cta-bar {
  background-color: var(--secondary);
}

.cta-bar-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  height: 60px;
  margin: 20px auto;
  display: flex;
}

.cta-bar-icon {
  height: 60px;
}

.cta-bar-text {
  color: var(--white);
  text-align: left;
  font-size: 20px;
  font-weight: 600;
}

.urgency-cta-button {
  background-color: var(--white);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  min-width: 325px;
  height: 100%;
  padding-left: 50px;
  padding-right: 50px;
  transition: all .2s;
  display: flex;
}

.urgency-cta-button:hover {
  background-color: var(--grey);
}

.urgency-cta-button-text {
  color: var(--primary);
  font-size: 32px;
  font-weight: 700;
  line-height: 28px;
}

.proudly-serving-wrapper {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.meet-owner-img-wrapper {
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 700px;
  height: 600px;
  display: flex;
  overflow: hidden;
  box-shadow: 10px 10px 2px #12447480;
}

.proudly-serving-image {
  object-fit: cover;
  object-position: 30% 50%;
  min-width: 100%;
  min-height: 100%;
  max-height: 100%;
}

.proudly-serving-cta-button {
  z-index: 2;
  background-color: var(--primary);
  cursor: pointer;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  padding: 15px 50px;
  transition: all .2s;
  display: flex;
  position: relative;
}

.proudly-serving-cta-button:hover {
  background-color: var(--grey);
}

.proudly-serving-cta-button-text {
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
  line-height: 28px;
}

.oklahoma-graphic {
  z-index: 1;
  width: 150%;
  max-width: none;
  height: 150%;
  position: absolute;
  inset: -150px auto auto -500px;
}

.proudly-serving-inner-wrapper {
  z-index: 2;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  align-items: flex-start;
  margin: 100px 50px;
  display: flex;
  position: relative;
}

.proudly-serving-text-wrapper {
  z-index: 2;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  width: 800px;
  display: flex;
  position: relative;
}

.testimonial-card {
  border: 2px solid var(--primary);
  border-radius: 20px;
  flex-flow: column;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
}

.slide-nav {
  position: relative;
}

.testimonial {
  padding-top: 100px;
  padding-bottom: 100px;
}

.right-arrow {
  justify-content: center;
  align-items: center;
  display: flex;
}

.slide {
  width: 33%;
  padding-left: 20px;
  padding-right: 20px;
}

.testimonial-text-wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.slider {
  background-color: #0000;
}

.left-arrow {
  justify-content: center;
  align-items: center;
  display: flex;
}

.testimonial-wrapper {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  width: auto;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.testimonial-mask {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  border-top: 6px solid var(--primary);
  background-color: var(--secondary);
}

.footer-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 100px;
  display: flex;
}

.footer-grid {
  border-bottom-width: 1px;
  border-bottom-color: #000;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.footer-cta-button {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: var(--primary);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  min-width: 360px;
  padding: 15px 50px;
  display: inline-flex;
}

.footer-social-icons-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.footer-social-icon-img {
  object-fit: none;
  border-radius: 10px;
  width: 30px;
  height: 30px;
  overflow: hidden;
}

.footer-cta-button-text {
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
  line-height: 28px;
}

.footer-cta-icon {
  height: 40px;
}

.hero-wrapper-right {
  z-index: 2;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  background-color: var(--white);
  border-radius: 100px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: inline-flex;
  position: absolute;
  right: 20px;
  box-shadow: 0 4px 4px 6px #0003;
}

.hero-wrapper {
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.footer-block-wrapper {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.footer-logo-img {
  max-width: none;
  height: 100px;
}

.footer-logo-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.dot {
  color: var(--primary);
  font-weight: 700;
}

.footer-subheading {
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.footer-link-list-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.footer-bottom-wrapper {
  border-top: 1px solid var(--grey);
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.footer-bottom-inner-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.upliftdigital-logo {
  height: 20px;
}

.navbar {
  background-color: #0000;
  padding-left: 5px;
  padding-right: 5px;
}

.navbar.current {
  color: var(--accent);
  font-weight: 500;
}

.nav-menu {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  justify-content: center;
  align-items: center;
  display: flex;
}

.container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.service-impact-main-img {
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 20px;
  min-width: 100%;
  min-height: 100%;
  max-height: 100%;
  box-shadow: 10px 10px 2px #12447480;
}

.service-impact-image-wrapper {
  width: 50%;
  display: flex;
  position: relative;
}

.service-impact-wrapper {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: space-between;
  align-items: stretch;
  width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.service-impact-inner-wrapper {
  z-index: 2;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  align-items: flex-start;
  width: 60%;
  display: flex;
  position: relative;
}

.service-impact-subimg {
  border-radius: 20px;
  height: 220px;
  position: absolute;
  top: 225px;
  left: -47px;
}

.service-impact-subimg.water {
  height: 180px;
  top: 251px;
  left: 299px;
}

.service-impact-subimg.mold1 {
  top: -24px;
  left: -59px;
}

.service-impact-subimg.mold2 {
  height: 350px;
  top: 136px;
  left: 504px;
}

.service-impact-subimg.reconstruction2 {
  top: 304px;
  left: 299px;
}

.service-impact-subimg.reconstruction1 {
  object-fit: cover;
  width: 250px;
  height: 325px;
  top: -17px;
  left: -70px;
}

.service-impact-subimg.storm2 {
  top: -21px;
  left: -41px;
}

.service-impact-subimg.storm1 {
  top: 325px;
  left: 425px;
}

.service-impact-subimg.contents {
  height: 300px;
  top: 335px;
}

.our-process {
  background-image: linear-gradient(#124474c9, #124474c9), url('../images/our-process-bg.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 50px;
  padding-bottom: 50px;
}

.our-process-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.our-process-text-wrapper {
  z-index: 2;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  flex-flow: column;
  display: flex;
  position: relative;
}

.our-process-grid {
  grid-template-rows: minmax(225px, 1fr);
  grid-template-columns: 300px 300px 300px;
}

.our-process-grid.reconstruction {
  grid-template-rows: minmax(225px, 1fr) auto auto;
}

.our-process-block-wrapper {
  text-align: center;
  background-image: url('../images/Layer-1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  padding: 70px 35px 35px;
  display: flex;
}

.faq-wrapper {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  text-align: center;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.accordion-item {
  width: 100%;
  min-height: 100px;
  position: relative;
  overflow: hidden;
}

.accordion-toggle {
  z-index: 1;
  border: 1px solid var(--secondary);
  background-image: linear-gradient(90deg, #ffffff80, var(--primary)), url('../images/faq-bg.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  align-items: center;
  height: 100px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
}

.dropdown-list {
  background-color: #0000;
  padding: 20px;
  display: block;
  position: static;
}

.faq-text {
  color: var(--white);
  font-size: 32px;
  font-weight: 500;
  line-height: 28px;
}

.service-main-logo-wrapper {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.service-main-logo-icon {
  filter: saturate(0%);
  object-fit: contain;
  width: 60px;
}

.service-main-logo-text {
  font-size: 40px;
  line-height: 72px;
}

.service-impact-text-wrapper {
  z-index: 2;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
  position: relative;
}

.meet-owner-wrapper {
  justify-content: center;
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.meet-owner-inner-wrapper {
  z-index: 2;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  align-items: flex-start;
  margin-left: 50px;
  margin-right: 50px;
  display: flex;
  position: relative;
}

.meet-owner-text-wrapper {
  z-index: 2;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  width: 800px;
  display: flex;
  position: relative;
}

.text-span-2 {
  font-size: 24px;
}

.experience-wrapper {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: space-between;
  width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.experience-inner-wrapper {
  z-index: 2;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  align-items: stretch;
  width: 60%;
  display: flex;
  position: relative;
}

.experience-text-wrapper {
  z-index: 2;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.experience-image-wrapper {
  width: 50%;
  height: 700px;
  display: flex;
  position: relative;
}

.experience-main-img {
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 20px;
  min-width: 100%;
  min-height: 100%;
  max-height: 100%;
  box-shadow: 10px 10px 2px #12447480;
}

.experience-sub-img._1 {
  object-fit: cover;
  border-radius: 20px;
  width: 200px;
  height: 300px;
  position: absolute;
  top: 16px;
  left: -35px;
}

.experience-sub-img._2 {
  border-radius: 20px;
  width: 350px;
  position: absolute;
  inset: -3% -12% auto auto;
}

.experience-sub-img._3 {
  box-sizing: content-box;
  object-fit: cover;
  border-radius: 20px;
  width: 350px;
  height: 200px;
  position: absolute;
  inset: auto auto -4% -7%;
}

.image-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: 300px 300px 300px 300px 300px 300px 300px 300px 300px 300px 300px 300px 300px;
  grid-template-columns: 15vw 15vw 15vw 15vw 15vw;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  display: grid;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.resources-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  display: grid;
}

.article-card {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-image: linear-gradient(180deg, var(--white), var(--off-white));
  border-radius: 20px;
  flex-flow: column;
  width: 100%;
  height: 100%;
  padding: 20px 40px;
  transition: all .2s;
  display: flex;
  box-shadow: 4px 4px 6px 6px #00000040;
}

.article-card:hover {
  background-color: #68c39b91;
  background-image: none;
}

.article-card-divider {
  background-color: var(--secondary);
  width: 200px;
  height: 3px;
  margin-left: auto;
  margin-right: auto;
}

.article-card-heading {
  color: var(--secondary);
  text-align: center;
  letter-spacing: 1px;
  font-size: 20px;
  font-weight: 700;
}

.article-card-body {
  text-align: center;
}

.article-card-heading-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: center;
  flex-flow: column;
  display: flex;
}

.proudly-serving-img-wrapper {
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 700px;
  height: 700px;
  display: flex;
  overflow: hidden;
  box-shadow: 10px 10px 2px #12447480;
}

.mobile-navbar-wrapper {
  display: none;
}

.experience-card-wrapper {
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.experience-card {
  grid-row-gap: 20px;
  background-color: var(--off-white);
  border-radius: 20px;
  flex-flow: column;
  align-items: flex-start;
  width: 30%;
  padding: 15px;
  display: flex;
}

.experience-card-text-wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.experience-list-item-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}

.div-block-47 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.experience-check-icon {
  width: 30px;
}

.ghl-form.contact-page {
  background-image: linear-gradient(#ffffff80, #ffffff80), url('../images/contact-form-bg.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.ghl-form-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: stretch;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.ghl-form-text-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-right: 4px solid var(--primary);
  text-align: right;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 800px;
  padding-right: 10px;
  display: flex;
}

.ghl-form-embed {
  min-width: 650px;
}

.gallery-img {
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
  max-height: 100%;
}

.social-links {
  background-color: var(--secondary);
}

.social-links-wrapper {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}

.social-link-text-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.social-icons-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  display: flex;
}

.social-icon-img {
  border-radius: 10px;
  width: 60px;
  min-width: 60px;
  max-width: none;
  height: 60px;
  min-height: 60px;
  overflow: hidden;
}

.google-map {
  justify-content: flex-start;
  align-items: center;
}

.google-map-wrapper {
  flex-flow: column;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.google-map-embed {
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
}

.google-map-text-wrapper {
  z-index: 2;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 10px;
  display: flex;
}

.google-map-embed-wrapper {
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 1600px;
  height: 500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
  box-shadow: 10px 10px 2px #12447480;
}

.text-span-3 {
  font-weight: 600;
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  .hero {
    background-image: linear-gradient(90deg, #fff 55%, #0000 70%), url('../images/fire-hero-bg.webp');
    background-position: 0 0, 100% 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .hero.home {
    background-image: linear-gradient(90deg, #fff 55%, #0000 70%), url('../images/home-hero-bg.webp');
    background-position: 0 0, 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .body {
    font-size: 12px;
    line-height: 18px;
  }

  .h1-heading {
    font-size: 48px;
    line-height: 50px;
  }

  .subheading {
    font-size: 18px;
    line-height: 16px;
  }

  .subheading.in-hero {
    width: auto;
  }

  .hero-text-wrapper {
    width: 50vw;
  }

  .hero-wrapper-left {
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .text-block {
    width: auto;
    font-size: 12px;
    line-height: 18px;
  }

  .social-proof-bar-text {
    font-size: 15px;
    line-height: 17px;
  }

  .services-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: 400px 400px auto;
    grid-template-columns: 300px 300px;
  }

  .serivce-card-heading {
    font-size: 36px;
    line-height: 36px;
  }

  .serivce-card-heading.small {
    font-size: 26px;
    line-height: 26px;
  }

  .service-card-inner-wrapper {
    width: 200px;
  }

  .service-card-divider {
    width: 100px;
  }

  .service-card-wrapper {
    width: auto;
    height: auto;
  }

  .cta-bar-text {
    font-size: 15px;
    line-height: 17px;
  }

  .urgency-cta-button {
    min-width: 300px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .urgency-cta-button-text {
    font-size: 24px;
    line-height: 20px;
  }

  .proudly-serving-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .meet-owner-img-wrapper {
    width: auto;
    height: 400px;
  }

  .proudly-serving-image {
    object-position: 50% 50%;
  }

  .proudly-serving-cta-button-text {
    font-size: 24px;
    line-height: 20px;
  }

  .oklahoma-graphic {
    object-fit: scale-down;
    width: 100%;
    inset: -47% 0% 0%;
  }

  .proudly-serving-inner-wrapper {
    width: 100%;
    margin: 0;
  }

  .slide {
    width: 50%;
  }

  .testimonial-text-wrapper {
    padding-left: 50px;
    padding-right: 50px;
  }

  .testimonial-wrapper {
    width: auto;
  }

  .testimonial-mask {
    width: 85vw;
  }

  .footer-cta-button {
    min-width: 250px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-cta-button-text {
    font-size: 24px;
    line-height: 20px;
  }

  .hero-wrapper-right {
    width: 300px;
    margin-right: 0;
  }

  .navbar {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-menu {
    justify-content: flex-start;
    align-items: center;
    padding-left: 20px;
  }

  .service-impact-image-wrapper {
    width: auto;
  }

  .service-impact-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    width: auto;
  }

  .service-impact-inner-wrapper {
    width: auto;
  }

  .service-impact-subimg {
    height: 300px;
    inset: -11% 2% auto auto;
  }

  .service-impact-subimg.water {
    inset: 65% 3% auto auto;
  }

  .service-impact-subimg.mold1 {
    inset: -5% auto auto 2%;
  }

  .service-impact-subimg.mold2 {
    inset: auto 1% -3% auto;
  }

  .service-impact-subimg.reconstruction2 {
    height: 250px;
    inset: auto 3% -6% auto;
  }

  .service-impact-subimg.reconstruction1 {
    inset: -4% auto auto 1%;
  }

  .service-impact-subimg.storm2 {
    height: 200px;
    inset: -5% auto auto 2%;
  }

  .service-impact-subimg.storm1 {
    object-fit: cover;
    width: 400px;
    height: 200px;
    inset: auto 4% -6% auto;
  }

  .service-impact-subimg.contents {
    height: 400px;
    inset: -6% 0% auto auto;
  }

  .our-process-grid {
    grid-template-rows: minmax(225px, 1fr) minmax(225px, 1fr);
    grid-template-columns: 300px 300px;
  }

  .our-process-grid.reconstruction {
    grid-template-rows: minmax(225px, 1fr) minmax(225px, 1fr) minmax(225px, 1fr) minmax(225px, 1fr) minmax(225px, 1fr);
  }

  .accordion-toggle {
    background-image: linear-gradient(90deg, #ffffff80, var(--primary)), url('../images/faq-bg.webp');
    white-space: normal;
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .dropdown-list {
    font-size: 13px;
    line-height: 13px;
  }

  .faq-text {
    font-size: 24px;
    line-height: 22px;
  }

  .meet-owner-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    align-items: stretch;
  }

  .meet-owner-inner-wrapper {
    margin-left: 0;
    margin-right: 0;
  }

  .meet-owner-text-wrapper {
    width: auto;
  }

  .experience-wrapper {
    flex-flow: column;
    width: auto;
  }

  .experience-inner-wrapper {
    width: auto;
  }

  .experience-image-wrapper {
    width: 100%;
  }

  .experience-main-img {
    height: 600px;
    min-height: auto;
    max-height: none;
  }

  .experience-sub-img._1 {
    width: 250px;
    height: 400px;
    top: -51px;
    left: 1%;
  }

  .experience-sub-img._2 {
    width: 300px;
    top: 7%;
    left: auto;
    right: 15px;
  }

  .experience-sub-img._3 {
    width: 50vw;
    height: 300px;
    inset: auto 0% -10% 7%;
  }

  .image-grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: 100px 100px 100px 100px 100px 100px 100px 100px 100px 100px 100px 100px 100px 100px 100px 100px;
    grid-template-columns: 20vw 20vw 20vw 20vw;
  }

  .resources-grid {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .proudly-serving-img-wrapper {
    width: 100%;
    height: 400px;
  }

  .menu-button.is-open {
    background-color: #fff;
  }

  .icon {
    color: var(--grey);
  }

  .ghl-form-wrapper {
    flex-flow: column;
    align-items: stretch;
  }

  .ghl-form-text-wrapper {
    text-align: left;
    border-right-style: none;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    padding-right: 0;
  }

  .ghl-form-embed {
    min-width: auto;
  }

  .dropdown-toggle-2 {
    padding-left: 0;
  }

  .dropdown {
    display: block;
  }

  .social-icons-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .google-map-text-wrapper {
    margin-left: 0;
    margin-right: 0;
  }

  .google-map-embed-wrapper {
    width: 100%;
    height: 400px;
  }
}

@media screen and (max-width: 767px) {
  .hero.home {
    margin-top: 0;
  }

  .hero-cta-button-wrapper {
    width: auto;
    height: auto;
    padding: 10px 20px;
  }

  .hero-cta-button-text {
    font-size: 30px;
    line-height: 26px;
  }

  .hero-cta-button-subtext {
    font-size: 16px;
    line-height: 16px;
  }

  .social-proof-bar-text {
    width: 20%;
  }

  .social-proof-bar-image {
    height: 40px;
  }

  .services-grid {
    grid-template-rows: 400px 400px auto auto auto auto;
    grid-template-columns: 300px;
  }

  .cta-bar-wrapper {
    height: auto;
  }

  .urgency-cta-button {
    min-width: 200px;
    height: 50px;
  }

  .oklahoma-graphic {
    top: -55%;
  }

  .proudly-serving-text-wrapper {
    width: auto;
  }

  .slide {
    width: 100%;
  }

  .testimonial-text-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

  .testimonial-mask {
    width: 80vw;
  }

  .footer-grid {
    text-align: center;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .hero-wrapper-right {
    display: none;
  }

  .footer-block-wrapper, .footer-logo-wrapper, .footer-link-list-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .service-impact-subimg {
    height: 200px;
  }

  .service-impact-subimg.water {
    height: 150px;
  }

  .service-impact-subimg.mold2 {
    height: 250px;
  }

  .service-impact-subimg.reconstruction2 {
    height: 175px;
  }

  .service-impact-subimg.reconstruction1 {
    width: 150px;
    height: 250px;
  }

  .service-impact-subimg.storm2 {
    height: 150px;
  }

  .service-impact-subimg.storm1 {
    width: 200px;
    height: 100px;
  }

  .service-impact-subimg.contents {
    height: 300px;
  }

  .our-process-grid {
    grid-template-rows: minmax(225px, 1fr) minmax(225px, 1fr) minmax(225px, 1fr);
    grid-template-columns: 300px;
  }

  .our-process-grid.reconstruction {
    grid-template-rows: minmax(225px, 1fr) minmax(225px, 1fr) minmax(225px, 1fr) minmax(225px, 1fr) minmax(225px, 1fr) minmax(225px, 1fr) minmax(225px, 1fr) minmax(225px, 1fr) minmax(225px, 1fr);
  }

  .faq-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .dropdown-list {
    font-size: 12px;
  }

  .experience-sub-img._1 {
    width: 150px;
    height: 200px;
  }

  .experience-sub-img._2 {
    width: 200px;
  }

  .experience-sub-img._3 {
    height: 200px;
  }

  .resources-grid {
    grid-template-rows: auto auto auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .mobile-navbar-wrapper {
    z-index: 5;
    background-color: var(--white);
    border-bottom: 3px solid var(--primary);
    display: block;
  }

  .image {
    height: 40px;
  }

  .menu-button {
    width: 100vw;
  }

  .icon {
    width: 25px;
    margin-left: auto;
    margin-right: auto;
  }

  .dropdown-toggle-2 {
    padding-left: 5px;
  }

  .social-icons-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }
}

@media screen and (max-width: 479px) {
  .hero {
    background-image: linear-gradient(#ffffffe6, #ffffffe6), url('../images/fire-hero-bg.webp');
    background-position: 0 0, 100% 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .hero.home {
    background-image: linear-gradient(#ffffffe6, #ffffffe6), url('../images/home-hero-bg.webp');
    background-position: 0 0, 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .hero.water {
    background-image: linear-gradient(#ffffffe6, #ffffffe6), url('../images/water-hero-bg.webp');
    background-position: 0 0, 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .hero.mold {
    background-image: linear-gradient(#ffffffe6, #ffffffe6), url('../images/mold-hero-bg.webp');
    background-position: 0 0, 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .hero.about-us {
    background-image: linear-gradient(#ffffffe6, #ffffffe6), url('../images/about-us-hero-bg.webp');
    background-position: 0 0, 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .hero.resources {
    background-image: linear-gradient(#ffffffe6, #ffffffe6), url('../images/resources-hero-bg.webp');
    background-position: 0 0, 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .hero.reconstruction {
    background-image: linear-gradient(#ffffffe6, #ffffffe6), url('../images/reconstruction-hero-bg.webp');
    background-position: 0 0, 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .hero.storm {
    background-image: linear-gradient(#ffffffe6, #ffffffe6), url('../images/storem-hero-bg.webp');
    background-position: 0 0, 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .hero-cta-button-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: auto;
    height: auto;
    padding: 10px 20px;
  }

  .hero-cta-button-text {
    font-size: 20px;
    line-height: 18px;
  }

  .hero-cta-button-subtext {
    font-size: 12px;
    line-height: 12px;
  }

  .main-logo-img {
    width: 50vw;
    height: auto;
  }

  .h1-heading {
    font-size: 36px;
    line-height: 36px;
  }

  .hero-text-wrapper {
    width: auto;
  }

  .hero-wrapper-left {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .text-block, .social-proof-bar-text {
    font-size: 10px;
    line-height: 16px;
  }

  .services-text-wrapper {
    text-align: center;
  }

  .cta-bar-wrapper {
    flex-flow: column;
  }

  .cta-bar-icon {
    display: none;
  }

  .proudly-serving-cta-button {
    margin-left: auto;
    margin-right: auto;
  }

  .proudly-serving-text-wrapper {
    text-align: center;
  }

  .testimonial-text-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-wrapper {
    padding: 20px 0;
  }

  .footer-cta-icon {
    height: 30px;
  }

  .hero-wrapper {
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-impact-subimg {
    height: 100px;
    top: -6%;
  }

  .service-impact-subimg.water {
    height: 100px;
  }

  .service-impact-subimg.mold2 {
    height: 150px;
  }

  .service-impact-subimg.reconstruction2 {
    height: 125px;
  }

  .service-impact-subimg.reconstruction1 {
    width: 100px;
    height: 125px;
    left: 5%;
  }

  .service-impact-subimg.storm2 {
    height: 80px;
    top: -10%;
  }

  .service-impact-subimg.storm1 {
    height: 80px;
    bottom: -11%;
  }

  .service-impact-subimg.contents {
    height: 200px;
    inset: auto auto -6% 3%;
  }

  .faq-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .accordion-toggle {
    text-shadow: 1px 1px 2px #fff;
    white-space: normal;
    background-position: 125%;
    font-size: 14px;
    line-height: 14px;
  }

  .dropdown-list {
    padding: 12px;
    font-size: 10px;
  }

  .faq-text {
    text-shadow: none;
  }

  .service-main-logo-icon {
    width: 40px;
  }

  .experience-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .experience-sub-img._1 {
    top: 117px;
  }

  .experience-sub-img._2 {
    top: -5%;
    right: 3px;
  }

  .experience-sub-img._3 {
    width: 80vw;
  }

  .image {
    height: 30px;
  }

  .menu-button {
    width: 100vw;
  }

  .icon {
    width: 25px;
  }

  .ghl-form-text-wrapper, .social-link-text-wrapper {
    width: auto;
  }

  .social-icon-img {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }
}

/* ---------- 3. Component behaviour layer (overrides where needed) ---------- */

/* ===== Responsive navbar ===== */
.navbar { position: relative; }
/* restore the vertical padding the links had as Webflow .w-nav-link (drives navbar height) */
.nav-menu > a { padding-top: 20px; padding-bottom: 20px; }

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

/* hamburger glyph (drawn in CSS) */
.icon {
  position: relative;
  width: 25px;
  height: 2px;
  background: currentColor;
  color: var(--grey);
  transition: background .2s ease;
}
.icon::before, .icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease;
}
.icon::before { top: -8px; }
.icon::after { top:  8px; }
.navbar.is-open .icon { background: transparent; }
.navbar.is-open .icon::before { transform: translateY(8px) rotate(45deg); }
.navbar.is-open .icon::after { transform: translateY(-8px) rotate(-45deg); }

/* ===== Nav dropdowns (Our Services / Social) ===== */
.dropdown { position: relative; display: inline-block; }
.dropdown-toggle-2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
/* caret (drawn in CSS) */
.dropdown-icon {
  order: 2;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  color: var(--grey);
  transition: transform .2s ease;
}
.dropdown.is-open .dropdown-icon { transform: rotate(180deg); }

.nav-dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  display: none;
  flex-direction: column;
  background: var(--white);
  border-radius: 10px;
  padding: 6px 0;
  z-index: 900;
  box-shadow: 0 6px 16px #0000002e;
}
.nav-dropdown-list a { display: block; white-space: nowrap; padding: 8px 20px; }
.dropdown.is-open .nav-dropdown-list { display: flex; }

/* ===== FAQ accordion ===== */
.accordion-toggle {
  justify-content: space-between;
  padding: 0 20px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.accordion-item { transition: height .5s ease; }
.accordion-icon {
  order: 2;
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-left: 16px;
  color: var(--secondary);
  transition: transform .5s ease;
}
.accordion-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translate(-50%, -65%) rotate(45deg);
}
.accordion-item.is-open .accordion-icon { transform: rotate(180deg); }

/* ===== Testimonial slider ===== */
.slider { position: relative; -webkit-user-select: none; user-select: none; }
.testimonial-mask { position: relative; overflow: hidden; }
.slider-track {
  display: flex;
  align-items: stretch;        /* every slide matches the tallest card's height */
  transition: transform .5s ease;
  will-change: transform;
}
.slide { flex: 0 0 auto; display: flex; }  /* card stretches to fill the slide */
.left-arrow, .right-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 3;
  cursor: pointer;
}
.left-arrow { left: 0; }
.right-arrow { right: 0; }
.left-arrow.is-disabled, .right-arrow.is-disabled { opacity: .3; cursor: default; pointer-events: none; }
.slide-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 12px;
}
.slider-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #242424;
  cursor: pointer;
  transition: background .2s ease;
}
.slider-dot.active { background: var(--primary); }

/* ===== Gallery lightbox ===== */
.gallery-img { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vmin;
  background: #000000ee;
}
.lightbox.is-open { display: flex; }
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px #000000a6;
}
.lightbox button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff1a;
  color: #fff;
  border: none;
  border-radius: 50%;
  line-height: 1;
  transition: background .2s ease;
}
.lightbox button:hover { background: #ffffff40; }
.lightbox-close {
  top: 3vmin;
  right: 3vmin;
  width: 48px;
  height: 48px;
  font-size: 32px;
}
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  font-size: 26px;
}
.lightbox-prev { left: 3vmin; }
.lightbox-next { right: 3vmin; }
@media screen and (max-width: 767px) {
  .lightbox-prev, .lightbox-next { width: 44px; height: 44px; font-size: 20px; }
  .lightbox-close { width: 40px; height: 40px; font-size: 26px; }
}

/* ===== Collapsed nav ( <= 991px ) ===== */
@media screen and (max-width: 991px) {
  .menu-button { display: flex; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px;
    background: var(--white);
    box-shadow: 0 8px 12px #00000026;
  }
  .navbar.is-open .nav-menu { display: flex; }
  /* open menu: each item fills the row width with centered text */
  .nav-menu > a { width: 100%; text-align: center; }
  .dropdown { display: block; width: 100%; }
  .dropdown-toggle-2 { width: 100%; justify-content: center; }
  .nav-dropdown-list {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 6px;
  }
  .nav-dropdown-list a { text-align: center; }
}

/* =====================================================================
   Micro-interactions (progressive enhancement — all gated by JS + motion prefs)
   ===================================================================== */

/* --- scroll reveal (fade + rise); hidden state only applies once JS is ready --- */
.anim-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
}
.anim-ready .reveal.is-visible { opacity: 1; transform: none; }

/* --- layered-image cursor parallax (smoothing handled inline by JS) --- */
.experience-image-wrapper img,
.service-impact-image-wrapper img { backface-visibility: hidden; }

/* --- dark sections: faint green glow that tracks the cursor --- */
.cta-bar,
.social-links,
.footer { position: relative; overflow: hidden; }
.cta-bar > *,
.social-links > *,
.footer > * { position: relative; z-index: 1; }
.cta-bar::before,
.social-links::before,
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), #68c39b59, transparent 70%);
}
.cta-bar.glow-active::before,
.social-links.glow-active::before,
.footer.glow-active::before { opacity: 1; }

/* --- button & card hover polish --- */
.urgency-cta-button,
.proudly-serving-cta-button,
.footer-cta-button,
.hero-cta-button-wrapper {
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.urgency-cta-button:hover,
.proudly-serving-cta-button:hover,
.footer-cta-button:hover,
.hero-cta-button-wrapper:hover { transform: translateY(-2px); }

.article-card { transition: transform .25s ease, box-shadow .25s ease, background-color .2s ease, background-image .2s ease; }
.article-card:hover { transform: translateY(-6px); }

.footer-social-icon-img,
.social-icon-img { transition: transform .25s ease; }
.footer-social-icon-img:hover,
.social-icon-img:hover { transform: scale(1.12); }

.footer-link-list-wrapper a { transition: color .2s ease; }
.footer-link-list-wrapper a:hover { color: var(--primary); }

/* --- desktop nav-link underline grow --- */
@media screen and (min-width: 992px) {
  .nav-menu > a { position: relative; }
  .nav-menu > a::after {
    content: "";
    position: absolute;
    left: 5px;
    right: 5px;
    bottom: 12px;
    height: 2px;
    border-radius: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .25s ease;
  }
  .nav-menu > a:hover::after,
  .nav-menu > a.current::after { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .anim-ready .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .cta-bar::before, .social-links::before, .footer::before { display: none; }
}
