/* Contact Form 7 custom styles */
.wpcf7 .ma-cf7-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 639px) {
  .wpcf7 .ma-cf7-row { grid-template-columns: 1fr; }
}
.wpcf7 .ma-cf7-col,
.wpcf7 .ma-cf7-full { display: flex; flex-direction: column; gap: .35rem; }
.wpcf7 .ma-cf7-full { margin-bottom: 1.25rem; }
.wpcf7 label {
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brown-mid);
  font-weight: 500;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  border: 1px solid var(--border-c);
  border-radius: 2px;
  background: var(--cream);
  color: var(--brown-dark);
  font-family: var(--font-body);
  padding: .7rem 1rem;
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
  appearance: auto;
}
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(180,140,80,.12);
  outline: none;
}
.wpcf7 textarea { resize: vertical; min-height: 120px; }

/* KVKK / consent rows */
.wpcf7 .ma-cf7-consent {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .9rem;
  font-size: .85rem;
  color: var(--brown-mid);
  line-height: 1.55;
}
.wpcf7 .ma-cf7-consent .wpcf7-form-control-wrap {
  flex-shrink: 0;
  margin-top: 2px;
}
.wpcf7 .ma-cf7-check { cursor: pointer; margin-top: 2px; }
.wpcf7 .ma-cf7-consent a { color: var(--gold); text-decoration: underline; }
.wpcf7 .ma-cf7-consent .wpcf7-not-valid-tip {
  display: block;
  font-size: .75rem;
  color: #c00;
  margin-top: 2px;
}

/* Submit button */
.wpcf7 .ma-cf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--brown-dark);
  color: var(--cream) !important;
  border: none;
  padding: .85rem 2.25rem;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, transform .2s;
  border-radius: 2px;
  width: 100%;
  margin-top: .5rem;
}
.wpcf7 .ma-cf7-submit:hover {
  background: var(--gold);
  transform: translateY(-1px);
}
.wpcf7 .ma-cf7-submit.wpcf7-spinner-active { opacity: .7; cursor: wait; }

/* Validation messages */
.wpcf7-not-valid-tip {
  color: #c00;
  font-size: .78rem;
  margin-top: 3px;
  display: block;
}
.wpcf7-response-output {
  margin-top: 1rem !important;
  padding: .75rem 1rem !important;
  border-radius: 3px !important;
  font-size: .875rem !important;
  font-family: var(--font-body) !important;
}
.wpcf7-mail-sent-ok { background: #edfbe4 !important; border: 1px solid #5cb85c !important; color: #2d6a2d !important; }
.wpcf7-mail-sent-ng,
.wpcf7-validation-errors { background: #fff0f0 !important; border: 1px solid #c00 !important; color: #8b0000 !important; }
