body.contact-page {
  position: relative;
  background: transparent !important;
}

body.contact-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.38)),
    url('/images/indexbg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.txt5 {
  color: #ffe100 !important;
}
/* FORM KUTUSU METALİK SİLVER ARKA PLAN */
.right-block {
  background: linear-gradient(145deg, #c7c6c6, #e6e6e6) !important;
}
.left-block {
  background: linear-gradient(145deg, #c7c6c6, #e6e6e6) !important;
}
main {
  background: rgba(255, 255, 255, 0.34) !important;
  backdrop-filter: blur(8px); /* cam efekti */
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.iletisim-input,
.iletisim-textarea {
  width: 100%;
  border: 2px solid #696666; /* Siyah */
  border-radius: 10px;
  padding: 12px;
  background: #fff;
  cursor: text;
  transition: border-color 0.25s ease;
}

/* Hover → Kırmızı */
.iletisim-input:hover,
.iletisim-textarea:hover {
  border-color: #d00000;
}

/* Focus → Daha koyu kırmızı */
.iletisim-input:focus,
.iletisim-textarea:focus {
  border-color: #9b0000;
  outline: none;
}

/* Satırın düzgün hizalanması */
.linkedin-row {
  display: flex;
  align-items: center;
  gap: 12px; /* "LinkedIn:" ile ikon arası boşluk */
}

/* Footer'daki style ile aynı ikon kutusu */
.linkedin-icon-wrapper {
  width: 28px;
  height: 28px;
  background: #0f1625; /* footer arka planı */
  border-radius: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
}

/* LinkedIn SVG simgesi */
.linkedin-icon {
  width: 17px;
  height: 17px;
  filter: brightness(2); /* beyaz görünmesi için */
}
.linkedin-icon-wrapper:hover {
  transform: scale(1.03);
  opacity: 1;
}
.iletisim-input::placeholder,
.iletisim-textarea::placeholder {
  color: black !important;
}
/* Checkbox alanı */
.kvkk-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-top: 10px;
}

/* Checkbox */
.kvkk-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 5px;
  accent-color: #d00000;
  cursor: pointer;
}

/* Linkler */
.kvkk-link {
  color: #0a66c2;
  font-weight: 500;
  text-decoration: underline;
}

.kvkk-link:hover {
  color: #004182;
}

/* Pasif buton (tıklanamaz) */
.gonder-btn-disabled {
  background: #9aa0a6;
  color: white;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Aktif buton */
.gonder-btn-active {
  background-color: rgb(182, 21, 24);
  color: white;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease;
}
.gonder-btn-active:hover {
  background: #dc0000;
}
