.nh-contact-form-wrap {
	background-color: #0D0D0D;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-family: 'Inter', sans-serif;
}
@media (min-width: 768px) {
	.nh-contact-form-wrap { padding: 3rem; }
}

.nh-contact-form .nh-field { margin-bottom: 1.5rem; }

.nh-contact-form label {
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.15em !important;
	color: rgba(255, 255, 255, 0.6) !important;
	margin-bottom: 0.5rem;
}

.nh-contact-form input[type="text"],
.nh-contact-form input[type="email"],
.nh-contact-form select,
.nh-contact-form textarea {
	width: 100%;
	background: transparent !important;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	padding: 0.5rem 0;
	color: #FFFFFF !important;
	-webkit-text-fill-color: #FFFFFF;
	font-family: inherit;
	font-size: 1rem;
	outline: none;
	transition: border-color 0.2s ease;
	box-sizing: border-box;
	box-shadow: none !important;
}

.nh-contact-form select option { background-color: #0D0D0D; color: #FFFFFF; }

/* Autofill (browsers force a white/black background + dark text by default) */
.nh-contact-form input:-webkit-autofill,
.nh-contact-form input:-webkit-autofill:focus {
	-webkit-box-shadow: 0 0 0 1000px #0D0D0D inset !important;
	-webkit-text-fill-color: #FFFFFF !important;
}

.nh-contact-form textarea { resize: none; }

.nh-contact-form input::placeholder,
.nh-contact-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.nh-contact-form input:focus,
.nh-contact-form select:focus,
.nh-contact-form textarea:focus {
	border-bottom-color: #10B7B5;
}

.nh-hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; overflow: hidden; }

.nh-submit-btn {
	width: 100%;
	background-color: #A93226;
	color: #FFFFFF;
	border: none;
	padding: 1rem;
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	cursor: pointer;
	transition: background-color 0.2s ease;
}
.nh-submit-btn:hover { background-color: #8a1f1f; }
.nh-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.nh-form-response {
	margin-top: 1rem;
	font-size: 0.9rem;
}
.nh-form-response.nh-success { color: #10B7B5; }
.nh-form-response.nh-error { color: #ff8a80; }
