/**
 * Contact Form 7 — Custom Styles
 *
 * Only loaded on pages that contain a CF7 form.
 *
 * @package PLGutterMaterials
 */

/* ── Layout ── */

.wpcf7-form p {
	margin-bottom: 1.25rem;
}

.wpcf7-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.35rem;
	font-size: 0.95rem;
	color: #2c2c2c;
}

/* ── Inputs & Textarea ── */

.wpcf7-form .wpcf7-form-control:not(.wpcf7-submit) {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid #c3c4c7;
	border-radius: 4px;
	font-size: 1rem;
	font-family: inherit;
	background: #fafafa;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	box-sizing: border-box;
}

.wpcf7-form .wpcf7-form-control:not(.wpcf7-submit):focus {
	outline: none;
	border-color: #c8944a;
	box-shadow: 0 0 0 2px rgba(200, 148, 74, 0.2);
	background: #fff;
}

.wpcf7-form .wpcf7-textarea {
	min-height: 160px;
	resize: vertical;
}

/* ── Submit Button ── */

.wpcf7-form .wpcf7-submit {
	display: inline-block;
	padding: 0.85rem 2.5rem;
	background: #c8944a;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.1s ease;
}

.wpcf7-form .wpcf7-submit:hover {
	background: #b07e3a;
}

.wpcf7-form .wpcf7-submit:active {
	transform: scale(0.98);
}

/* ── Validation ── */

.wpcf7-form .wpcf7-not-valid {
	border-color: #d63638;
}

.wpcf7-form .wpcf7-not-valid-tip {
	color: #d63638;
	font-size: 0.85rem;
	margin-top: 0.25rem;
}

.wpcf7-form .wpcf7-response-output {
	margin: 1rem 0 0;
	padding: 0.75rem 1rem;
	border-radius: 4px;
	font-size: 0.9rem;
}
