/* =====================================================
   HOMEPAGE CONTACT US – HERO (HAVEA STYLE)
===================================================== */

.homepage-contactus{
  position: relative;
  height: 100vh;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  /* FOTOĞRAF */
  background-image: url('../img/bg-footer-home.webp'); /* değiştir */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Hafif karartma */
.homepage-contactus__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
  z-index: 1;
}

/* CTA */
.homepage-contactus__cta{
  position: relative;
  z-index: 2;

  padding: 14px 36px;

  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;

  color: #ffffff;
  text-decoration: none;

  border: 1px solid rgba(255,255,255,.7);
  background: transparent;

  transition: all .35s ease;
}

/* Hover */
.homepage-contactus__cta:hover{
  background: rgba(255,255,255,.15);
  border-color: #ffffff;
}

/* Mobil */
@media (max-width: 768px){
  .homepage-contactus__cta{
    padding: 12px 26px;
    font-size: 13px;
    letter-spacing: .1em;
  }
}
