/* Pop-up formunu gizle */
.popup-form {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999; /* Yüksek z-index */
}

/* Pop-up içeriği */
.popup-content {
  background-color: white;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Kapatma düğmesi */
.closeBtn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.closeBtn:hover,
.closeBtn:focus {
  color: black;
  cursor: pointer;
}

/* Sol Ortada Sabit Resim */
.fixed-contact-button {
  position: fixed;
  left: 10px; /* Sol kenardan uzaklık */
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000; /* Yüksek z-index */
  cursor: pointer;
}

.fixed-contact-button img {
  width: 200px;  /* Genişlik 200 piksel */
  height: 52px;  /* Yükseklik 52 piksel */
  object-fit: cover;  /* Resmi orantılı şekilde yerleştir */
}

/* Mobil Cihazlar için Buton Boyutunu Küçültme */
@media (max-width: 768px) {
  .fixed-contact-button img {
    width: 160px; /* %20 küçültülmüş genişlik */
    height: 41.6px; /* %20 küçültülmüş yükseklik */
  }
  
  .fixed-contact-button {
    left: 5px; /* Sol kenardan daha az uzaklık */
    top: 50%;
    z-index: 10000; /* Yüksek z-index */
  }
}

/* Pop-up formunun üzerine tıklanabilir olmasını sağlama */
.popup-form {
  z-index: 9999; /* Pop-up formu da üstte olacak */
}
