/* ── HERO SECTION ─────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ── Background Slideshow ─────────────────────────── */
.hero__bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  opacity: 0;
  transition: opacity 0.75s ease-in-out;
  border-radius: 0;
}

.hero__bg-slide--active {
  opacity: 1;
}

/* ── Dark Overlay ─────────────────────────────────── */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
}

/* ── Content ──────────────────────────────────────── */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 64px 80px;
  box-sizing: border-box;
}

.hero__heading {
  font-size: clamp(28px, 5.5vw, 72px);
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.5px;
  max-width: 790px;
  margin: 0 0 24px;
  word-break: break-word;
}

.hero__subheading {
  font-size: clamp(16px, 1.7vw, 24px);
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  line-height: 1.6;
  max-width: 790px;
  margin: 0 0 40px;
  word-break: break-word;
}

/* ── CTA Button ───────────────────────────────────── */
.hero__cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #ffffff;
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid #ffffff;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}

.hero__cta-btn:hover {
  background: transparent;
  color: #ffffff;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .hero__content {
    padding: 100px 20px 60px;
  }

  .hero__heading {
    max-width: 100%;
    font-size: clamp(26px, 7vw, 42px);
  }

  .hero__subheading {
    max-width: 100%;
    font-size: clamp(15px, 4vw, 20px);
  }

  .hero__cta-btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

/* ── ABOUT SECTION ────────────────────────────────── */
.about {
  background: #ffffff;
  width: 100%;
  padding: 80px 0;
  box-sizing: border-box;
  overflow: hidden;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
  align-items: start;
  box-sizing: border-box;
}

/* ── Left: Text ───────────────────────────────────── */
.about__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.about__text-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__heading {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  color: #000000;
  line-height: 1.2;
  margin: 0;
  word-break: break-word;
}

.about__subheading {
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 400;
  font-style: italic;
  color: #242424;
  line-height: 1.5;
  margin: 0;
  word-break: break-word;
}

.about__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__body p {
  font-size: 15px;
  color: #242424;
  line-height: 1.7;
  margin: 0;
  word-break: break-word;
}

.about__link {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.about__link:hover {
  color: #a2a3a8;
}

/* ── Right: Cards Grid ────────────────────────────── */
.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  min-width: 0;
}

.about__card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.about__card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}

.about__card:hover .about__card-img {
  transform: scale(1.05);
}

.about__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.18) 55%,
    rgba(0, 0, 0, 0) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  gap: 10px;
  box-sizing: border-box;
}

.about__card-title {
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.about__card-btn {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(162, 163, 168, 0.75);
  color: #000000;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  border: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.about__card-btn:hover {
  background: #ffffff;
  color: #000000;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr;
    padding: 0 32px;
  }

  .about__cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 48px 0;
  }

  .about__inner {
    padding: 0 20px;
    gap: 32px;
  }

  .about__cards {
    grid-template-columns: 1fr 1fr;
  }

  .about__card-overlay {
    padding: 12px;
    gap: 8px;
  }

  .about__card-title {
    font-size: 13px;
  }

  .about__card-btn {
    font-size: 12px;
    padding: 6px 10px;
  }
}

@media (max-width: 380px) {
  .about__cards {
    grid-template-columns: 1fr;
  }
}

/* ── CTA BANNER SECTION ───────────────────────────── */
.cta-banner {
  background-color: rgb(162 163 168);
  width: 100%;
  padding: 80px 24px;
  box-sizing: border-box;
  position: relative;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://lirp.cdn-website.com/7ae2b340/dms3rep/multi/opt/gun-metal-2880w.png");
  background-repeat: repeat;
  background-size: 10px auto;
  opacity: 0.5; /* 👈 adjust this 0 = invisible, 1 = full */
  z-index: 0;
}

.cta-banner__inner {
  position: relative;
  z-index: 1; /* keeps content above the pseudo-element */
}

.cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-banner__heading {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  color: #242424;
  line-height: 1.2;
  margin: 0;
  word-break: break-word;
}

.cta-banner__subheading {
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 400;
  color: #242424;
  line-height: 1.5;
  margin: 0;
  word-break: break-word;
}

.cta-banner__btn {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 32px;
  background: #242424;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid #242424;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
}

.cta-banner__btn:hover {
  background: transparent;
  color: #242424;
  border-color: #242424;
}

@media (max-width: 600px) {
  .cta-banner {
    padding: 56px 20px;
  }

  .cta-banner__btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
  }
}

/* ── SERVICES SECTION ─────────────────────────────── */
/* ── SERVICES SECTION ─────────────────────────────── */
.services {
  position: relative;
  width: 100%;
  padding: 80px 24px;
  box-sizing: border-box;
  overflow: hidden;

  /* PARALLAX BACKGROUND */
  background: url('https://lirp.cdn-website.com/7ae2b340/dms3rep/multi/opt/20251013_161224-1920w.jpg') center / cover no-repeat fixed;
}

/* ── DARK OVERLAY ────────────────────────────────── */
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 36, 36, 0.85);
  z-index: 0;
}

/* ── CONTENT ABOVE OVERLAY ───────────────────────── */
.services__inner {
  position: relative;
  z-index: 1;

  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
/* ── Header ───────────────────────────────────────── */
.services__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.services__heading {
  font-size: clamp(20px, 2.8vw, 36px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
  max-width: 800px;
  word-break: break-word;
}

.services__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
}

.services__intro p {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
  text-align: center;
  word-break: break-word;
}

/* ── Numbered Grid ────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
}

.services__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  opacity: 0;
  transform: translateX(0);
  transition:
    opacity 1.5s ease,
    transform 1.5s ease;
  min-width: 0;
}

.services__item.services__item--visible {
  opacity: 1;
  transform: translateX(0) !important;
}

.services__item[data-dir="left"] {
  transform: translateX(-240px);
}

.services__item[data-dir="right"] {
  transform: translateX(240px);
}

.services__number {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  flex-shrink: 0;
  min-width: 64px;
}

.services__desc {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
  padding-top: 8px;
  word-break: break-word;
  min-width: 0;
}

.services__link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.services__link:hover {
  color: #a2a3a8;
}

/* ── Footer line ──────────────────────────────────── */
.services__footer {
  font-size: 15px;
  color: #ffffff;
  text-align: center;
  margin: 0;
  line-height: 1.7;
  word-break: break-word;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .services {
    padding: 56px 20px;
        background-attachment: scroll;

  }

  .services__inner {
    gap: 40px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services__item[data-dir="left"],
  .services__item[data-dir="right"] {
    transform: translateY(24px);
  }

  .services__number {
    min-width: 52px;
    font-size: 38px;
  }
  
}

/* ── AREAS WE SERVE SECTION ───────────────────────── */
.areas {
  background: #a2a3a8;
  width: 100%;
  padding: 64px 24px;
  box-sizing: border-box;
  overflow: hidden;
}

.areas__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Left: Heading ────────────────────────────────── */
.areas__left {
  flex: 0 0 auto;
}

.areas__heading {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  color: #242424;
  line-height: 1.15;
  margin: 0;
  white-space: nowrap;
}

/* ── Right: Grid ──────────────────────────────────── */
.areas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex: 1;
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1.3s ease,
    transform 1.3s ease;
}

.areas__grid--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Location Cards ───────────────────────────────── */
.areas__card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 16px;
  background: #242424;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border-radius: 12px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
  word-break: break-word;
}

.areas__card:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .areas__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .areas__heading {
    white-space: normal;
  }

  .areas__grid {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .areas {
    padding: 48px 20px;
  }

  .areas__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .areas__card {
    padding: 14px 10px;
    font-size: 13px;
    border-radius: 8px;
  }
}

@media (max-width: 340px) {
  .areas__grid {
    grid-template-columns: 1fr;
  }
}

/* ── WHY CHOOSE US SECTION ────────────────────────── */
.why-us {
  background: #242424;
  width: 100%;
  overflow: hidden;
}

.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin: 0 auto;
}

/* ── Left: Image ──────────────────────────────────── */
.why-us__image-wrap {
  width: 100%;
  position: relative; /* anchor for the absolute img */
  min-height: 300px; /* fallback so it never collapses */
  overflow: hidden;
}

.why-us__image {
  position: absolute; /* detach from flow, fill the wrap */
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.5s ease;
}

.why-us__image-wrap:hover .why-us__image {
  transform: scale(1.03);
}

/* ── Right: Content ───────────────────────────────── */
.why-us__content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  transform: translateX(240px);
  transition:
    opacity 1s ease,
    transform 1s ease;
  box-sizing: border-box;
  min-width: 0;
}

.why-us__content--visible {
  opacity: 1;
  transform: translateX(0);
}

.why-us__heading {
  font-size: clamp(18px, 2.4vw, 30px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
  word-break: break-word;
}

.why-us__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-us__body p {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
  word-break: break-word;
}

/* ── Google Badge ─────────────────────────────────── */
.why-us__badge {
  margin-top: 8px;
}

.why-us__badge a {
  display: inline-block;
}

.why-us__badge-img {
  width: 120px;
  height: auto;
  display: block;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.why-us__badge-img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .why-us__inner {
    grid-template-columns: 1fr;
  }

  .why-us__image-wrap {
    min-height: 300px;
    max-height: 420px;
  }

  .why-us__content {
    padding: 48px 32px;
    transform: translateY(24px);
    opacity: 0;
  }

  .why-us__content--visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .why-us__content {
    padding: 40px 20px;
  }

  .why-us__image-wrap {
    min-height: 240px;
    max-height: 320px;
  }
}
