/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.hero__inner {
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.hero__stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
}

.hero__badge-text {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero__title {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 32px;
}

.hero__cta {
  font-size: 16px;
  padding: 16px 40px;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--brand-accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.hero__trust-text {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .hero {
    min-height: 500px;
  }

  .hero__title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 450px;
  }

  .hero__content {
    padding: 60px 20px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__trust {
    flex-direction: column;
    gap: 12px;
  }

  .hero__cta {
    width: 100%;
    justify-content: center;
  }
}


/* ==========================================================================
   INTRO
   ========================================================================== */
.intro {
  padding: 80px 0;
  background-color: var(--white);
}

.intro__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro__eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-accent);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.intro__heading {
  font-size: 36px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 24px;
}

.intro__paragraph {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.intro__cta-line {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-top: 8px;
}

.intro__cta-line a {
  color: var(--brand-accent);
  font-weight: 700;
  transition: color 0.2s ease;
}

.intro__cta-line a:hover {
  color: var(--brand-accent-hover);
}

.intro__image {
  border-radius: 8px;
  overflow: hidden;
}

.intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .intro {
    padding: 60px 0;
  }

  .intro__container {
    gap: 40px;
  }

  .intro__heading {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .intro {
    padding: 48px 0;
  }

  .intro__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro__heading {
    font-size: 26px;
  }

  .intro__image {
    order: -1;
  }
}


/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.services__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.services__heading {
  font-size: 36px;
  font-weight: 800;
  color: var(--black);
  text-align: center;
  margin-bottom: 16px;
}

.services__intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.services__card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.services__card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.services__card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-accent);
  margin-bottom: 12px;
}

.services__card-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.services__card-text a {
  color: var(--brand-accent);
  font-weight: 600;
  transition: color 0.2s ease;
}

.services__card-text a:hover {
  color: var(--brand-accent-hover);
  text-decoration: underline;
}

.services__card-image {
  width: 100%;
  border-radius: 6px;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .services {
    padding: 60px 0;
  }

  .services__heading {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 48px 0;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services__heading {
    font-size: 26px;
  }
}


/* ==========================================================================
   RESIDENTIAL-COMMERCIAL
   ========================================================================== */
.rescom {
  padding: 80px 0;
  background-color: var(--white);
}

.rescom__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.rescom__heading {
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-accent);
  text-align: center;
  margin-bottom: 16px;
}

.rescom__intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.rescom__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.rescom__row:last-child {
  margin-bottom: 0;
}

.rescom__row--reverse {
  direction: ltr;
}

.rescom__row--reverse .rescom__text {
  order: 1;
}

.rescom__row--reverse .rescom__image {
  order: 2;
}

.rescom__image {
  border-radius: 8px;
  overflow: hidden;
}

.rescom__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.rescom__subtitle {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.rescom__paragraph {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
}

@media (max-width: 1024px) {
  .rescom {
    padding: 60px 0;
  }

  .rescom__heading {
    font-size: 30px;
  }

  .rescom__row {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .rescom {
    padding: 48px 0;
  }

  .rescom__heading {
    font-size: 26px;
  }

  .rescom__row {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .rescom__row--reverse .rescom__text {
    order: 2;
  }

  .rescom__row--reverse .rescom__image {
    order: 1;
  }
}


/* ==========================================================================
   WHY-CHOOSE
   ========================================================================== */
.why-choose {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.why-choose__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.why-choose__heading {
  font-size: 36px;
  font-weight: 800;
  color: var(--black);
  text-align: center;
  margin-bottom: 48px;
}

.why-choose__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-choose__image {
  border-radius: 8px;
  overflow: hidden;
}

.why-choose__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.why-choose__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.why-choose__list-item {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.why-choose__list-item::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--brand-accent);
  font-weight: 700;
  font-size: 16px;
}

.why-choose__cta {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text-primary);
}

.why-choose__cta a {
  color: var(--brand-accent);
  font-weight: 700;
  transition: color 0.2s ease;
}

.why-choose__cta a:hover {
  color: var(--brand-accent-hover);
}

@media (max-width: 1024px) {
  .why-choose {
    padding: 60px 0;
  }

  .why-choose__heading {
    font-size: 30px;
  }

  .why-choose__grid {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .why-choose {
    padding: 48px 0;
  }

  .why-choose__heading {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .why-choose__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


/* service-areas styles promoted to global.css by evidence-reviews-testimonials assembler */

/* reviews-widget and faq styles promoted to global.css by septic-services assembler */
