.wfb-form {
	max-width: 620px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	font-family: inherit;
}

.wfb-form__row {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.wfb-form__row--split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

@media ( max-width: 560px ) {
	.wfb-form__row--split {
		grid-template-columns: 1fr;
	}
}

.wfb-form label {
	font-weight: 500;
	font-size: 14px;
	margin: 0 0 0 0;
	display: block;
}

.wfb-form input[type="text"],
.wfb-form input[type="email"],
.wfb-form input[type="tel"],
.wfb-form select,
.wfb-form textarea {
	width: 100%;
	padding: 11px 13px;
	border: 1px solid #d7dadd;
	border-radius: 8px;
	font-size: 15px;
	background: #fff;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wfb-form input:focus,
.wfb-form select:focus,
.wfb-form textarea:focus {
	outline: none;
	border-color: #25d366;
	box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.wfb-form textarea {
	resize: vertical !important;
	overflow: auto;
	min-height: 110px;
	max-height: 420px;
}

.wfb-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.wfb-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #25d366;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 13px 22px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.15s ease, opacity 0.15s ease;
}

.wfb-form__submit:hover:not(:disabled) {
	background-color: #1da851;
}

.wfb-form__submit:disabled {
	opacity: 0.7;
	cursor: default;
}

.wfb-form__spinner {
	width: 15px;
	height: 15px;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-top-color: #fff;
	border-radius: 50%;
	display: inline-block;
	animation: wfb-spin 0.7s linear infinite;
}

/* Native [hidden] davranışı bazı temaların global CSS'i tarafından eziliyor
 * olabilir (ör. genel "display" reset'leri) — burada açıkça garanti ediyoruz.
 * Sonsuz dönen çember hatası buradan kaynaklanıyordu. */
.wfb-form__spinner[hidden] {
	display: none !important;
}

@keyframes wfb-spin {
	to {
		transform: rotate( 360deg );
	}
}

.wfb-form__notice {
	font-size: 14px;
	padding: 0;
	min-height: 1em;
}

.wfb-form__notice--ok {
	color: #0a7c42;
}

.wfb-form__notice--error {
	color: #c0392b;
}

/* İletişim sayfasındaki "Size nasıl yardımcı olabilirim?" başlığı (WPBakery
 * metin bloğu, .contact-right sütunu) — sitedeki genel h1 ağırlığından
 * bağımsız olarak burada 500'e sabitleniyor. Etki alanı sadece bu sütunla
 * sınırlı, sitenin başka yerlerindeki h1'leri etkilemiyor. */
.contact-right h1 {
	font-weight: 500;
}
