/* Pleksi Hızlı Teklif – ön yüz form stilleri */
.phts-wrap {
	--phts-accent: #0a7d3f;
	max-width: 760px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.5;
	color: #1d2327;
}
.phts-title {
	margin: 0 0 8px;
	font-size: 1.6em;
	line-height: 1.25;
}
.phts-intro {
	margin: 0 0 24px;
	color: #50575e;
}
.phts-form {
	background: #fff;
	border: 1px solid #e4e6ea;
	border-radius: 14px;
	padding: 26px 26px 30px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
.phts-section {
	margin: 26px 0 14px;
	padding-bottom: 8px;
	font-size: 1.05em;
	font-weight: 700;
	color: var(--phts-accent);
	border-bottom: 2px solid color-mix(in srgb, var(--phts-accent) 22%, #ffffff);
}
.phts-section:first-of-type,
.phts-title + .phts-section,
.phts-intro + * .phts-section:first-child {
	margin-top: 6px;
}
.phts-field {
	margin: 0 0 16px;
}
.phts-label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	font-size: 0.96em;
}
.phts-req {
	color: #d63638;
}
.phts-form input[type="text"],
.phts-form input[type="email"],
.phts-form input[type="tel"],
.phts-form input[type="number"],
.phts-form input[type="url"],
.phts-form select,
.phts-form textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 11px 13px;
	font-size: 1em;
	border: 1px solid #cfd4da;
	border-radius: 9px;
	background: #fff;
	transition: border-color 0.15s, box-shadow 0.15s;
}
.phts-form input:focus,
.phts-form select:focus,
.phts-form textarea:focus {
	outline: none;
	border-color: var(--phts-accent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--phts-accent) 18%, transparent);
}
.phts-form input[type="file"] {
	width: 100%;
	box-sizing: border-box;
	padding: 12px;
	border: 1px dashed #b6bcc4;
	border-radius: 9px;
	background: #fafbfc;
	cursor: pointer;
}
.phts-help {
	display: block;
	margin-top: 5px;
	font-size: 0.85em;
	color: #6c7781;
}
.phts-check-label {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-weight: 400;
	cursor: pointer;
	line-height: 1.45;
}
.phts-check-label input[type="checkbox"] {
	margin-top: 3px;
	width: 17px;
	height: 17px;
	flex: 0 0 auto;
	accent-color: var(--phts-accent);
}
.phts-checkgroup {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 8px 18px;
}
.phts-type-consent {
	margin-top: 8px;
	padding: 14px;
	background: #f6f7f8;
	border-radius: 9px;
}
.phts-recaptcha-field {
	margin-top: 18px;
}
.phts-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 22px;
}
.phts-submit {
	appearance: none;
	border: none;
	cursor: pointer;
	background: var(--phts-accent);
	color: #fff;
	font-size: 1.02em;
	font-weight: 600;
	padding: 14px 30px;
	border-radius: 10px;
	transition: filter 0.15s, transform 0.05s;
}
.phts-submit:hover {
	filter: brightness(1.07);
}
.phts-submit:active {
	transform: translateY(1px);
}
.phts-submit:disabled {
	opacity: 0.6;
	cursor: default;
}
.phts-note-inline {
	font-size: 0.86em;
	color: #6c7781;
}
.phts-alert {
	margin: 0 0 20px;
	padding: 15px 18px;
	border-radius: 10px;
	font-size: 0.97em;
}
.phts-alert-success {
	background: #edf7ed;
	border: 1px solid #b7e0b7;
	color: #1e4620;
}
.phts-alert-error {
	background: #fdecea;
	border: 1px solid #f5c2bd;
	color: #7a231d;
}
.phts-wa-inline {
	font-weight: 600;
	color: #128c7e;
}
/* Bal küpü – gizle */
.phts-hp {
	position: absolute !important;
	left: -9999px !important;
	top: -9999px !important;
	height: 0;
	overflow: hidden;
}
@media (max-width: 600px) {
	.phts-form {
		padding: 20px 16px 24px;
	}
	.phts-checkgroup {
		grid-template-columns: 1fr;
	}
}
