/* iletisim.html — bağlantı bilgileri kartları + iletişim formu */

.contact-quick-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
@media (max-width: 560px) {
  .contact-quick-cards { grid-template-columns: 1fr; }
}

.contact-card {
  display: block;
  text-decoration: none;
  background: white;
  border: 1px solid #d2d2d7;
  border-radius: 12px;
  padding: 18px 20px;
  color: #1d1d1f;
  transition: border-color 0.15s, transform 0.05s;
}
.contact-card:hover {
  border-color: #0071e3;
}
.contact-card:active {
  transform: scale(0.99);
}

.contact-card-icon {
  font-size: 22px;
  margin-bottom: 6px;
}
.contact-card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #6e6e73;
  margin-bottom: 4px;
}
.contact-card-value {
  font-size: 16px;
  font-weight: 600;
  color: #0071e3;
  margin-bottom: 2px;
  word-break: break-all;
}
.contact-card-note {
  font-size: 12px;
  color: #6e6e73;
}

/* Form */
.contact-form-heading {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}
.contact-form-intro {
  margin: 0 0 18px;
  color: #6e6e73;
  font-size: 14px;
}

/* Honeypot — gizli, sadece bot görür */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* KVKK checkbox row — waiver-row pattern */
.kvkk-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0;
  font-size: 13px;
  color: #424245;
  line-height: 1.5;
  cursor: pointer;
}
.kvkk-row input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #0071e3;
  cursor: pointer;
}
.kvkk-row a {
  color: #0071e3;
  text-decoration: underline;
}

/* Character counter */
.field-counter {
  font-size: 12px;
  font-weight: 400;
  color: #86868b;
  float: right;
}
.field-counter.over { color: #a32218; }

textarea {
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #d2d2d7;
  border-radius: 10px;
  resize: vertical;
  min-height: 120px;
  background: white;
  color: #1d1d1f;
}
textarea:focus {
  outline: none;
  border-color: #0071e3;
}

select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #d2d2d7;
  border-radius: 10px;
  background: white;
  font-family: inherit;
  font-size: 15px;
  color: #1d1d1f;
  cursor: pointer;
}
select:focus {
  outline: none;
  border-color: #0071e3;
}
