.pawpal-contact-card {
	--pawpal-cf-navy: #0d1b2a;
	--pawpal-cf-coral: #ff6b6b;
	--pawpal-cf-coral-dark: #e95858;
	--pawpal-cf-green: #238c62;
	--pawpal-cf-cream: #f7f3f0;
	--pawpal-cf-line: #d9dee3;
	--pawpal-cf-muted: #6b7785;
	width: 100%;
	max-width: 820px;
	margin: 0 auto;
	padding: clamp(22px, 4vw, 38px);
	border: 1px solid var(--pawpal-cf-line);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(13, 27, 42, .07);
	color: var(--pawpal-cf-navy);
}

.pawpal-contact-form {
	display: grid;
	gap: 20px;
}

.pawpal-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.pawpal-contact-field {
	display: grid;
	gap: 7px;
}

.pawpal-contact-field label {
	margin: 0;
	color: var(--pawpal-cf-navy);
	font-size: 13.5px;
	font-weight: 700;
	line-height: 1.4;
}

.pawpal-contact-field label > span[aria-hidden="true"] {
	color: var(--pawpal-cf-coral-dark);
}

.pawpal-contact-optional {
	color: var(--pawpal-cf-muted);
	font-size: 12px;
	font-weight: 400;
}

.pawpal-contact-field input,
.pawpal-contact-field textarea {
	width: 100%;
	margin: 0;
	border: 1.5px solid var(--pawpal-cf-line);
	border-radius: 10px;
	background: #fff;
	color: var(--pawpal-cf-navy);
	font: inherit;
	font-size: 15px;
	line-height: 1.5;
	box-shadow: none;
	transition: border-color .16s ease, box-shadow .16s ease;
}

.pawpal-contact-field input {
	height: 49px;
	padding: 0 14px;
}

.pawpal-contact-field textarea {
	min-height: 155px;
	padding: 12px 14px;
	resize: vertical;
}

.pawpal-contact-field input:focus,
.pawpal-contact-field textarea:focus {
	outline: none;
	border-color: var(--pawpal-cf-coral);
	box-shadow: 0 0 0 3px rgba(255, 107, 107, .14);
}

.pawpal-contact-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: start;
	min-width: 160px;
	min-height: 50px;
	margin: 0;
	padding: 0 25px;
	border: 0;
	border-radius: 10px;
	background: var(--pawpal-cf-coral);
	color: #fff;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: background .16s ease, transform .16s ease;
}

.pawpal-contact-submit:hover,
.pawpal-contact-submit:focus {
	background: var(--pawpal-cf-coral-dark);
	color: #fff;
	transform: translateY(-1px);
}

.pawpal-contact-submit:focus-visible {
	outline: 2px solid var(--pawpal-cf-navy);
	outline-offset: 3px;
}

.pawpal-contact-notice {
	margin: 0 0 20px;
	padding: 13px 15px;
	border: 1px solid transparent;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
}

.pawpal-contact-notice.is-success {
	border-color: #b8dfcc;
	background: #e8f6ef;
	color: var(--pawpal-cf-green);
}

.pawpal-contact-notice.is-error {
	border-color: #f2c7c7;
	background: #fff0f0;
	color: #a82f2f;
}

.pawpal-contact-hp {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

@media (max-width: 640px) {
	.pawpal-contact-grid {
		grid-template-columns: 1fr;
	}

	.pawpal-contact-submit {
		width: 100%;
	}
}

