/* [project]/src/styles/ContactUsPage.css [client] (css) */
.contact-hero {
  background-color: #222;
  background-image: linear-gradient(#0000, #0000), url("/projectbim/img/contactuspage/Rectangle-156.png");
  background-position: center;
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: 50vh;
  min-height: 500px;
  display: flex;
  position: relative;
}

.contact-hero-content {
  text-align: center;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-hero-subtitle {
  letter-spacing: 2.5px;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  display: block;
}

.contact-hero-title {
  font-size: var(--font-size-h1);
  color: var(--color-white);
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

.contact-hero-title span {
  color: var(--color-primary);
}

@media (max-width: 1024px) {
  .contact-hero {
    height: 50vh;
    min-height: 400px;
  }

  .contact-hero-title {
    font-size: clamp(28px, 4vw, 42px);
  }
}

@media (max-width: 768px) {
  .contact-hero {
    background-attachment: scroll;
    height: auto;
    min-height: 350px;
    padding: 60px 0;
  }

  .contact-hero-content {
    padding: 0 30px;
  }

  .contact-hero-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .contact-hero-subtitle {
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    min-height: 300px;
    padding: 50px 0;
  }

  .contact-hero-title {
    font-size: 22px;
  }

  .contact-hero-subtitle {
    font-size: 13px;
  }
}

/*# sourceMappingURL=src_styles_ContactUsPage_css_65f1660e._.single.css.map*/