
/* ===== CONTACT FORM ===== */
.contact-form {
	max-width: 640px;
	border-radius: 12px;
	padding: 10px 0;
	margin-bottom: 5px;
}
.form-group {
	margin-bottom: 22px;
}
.form-group:last-of-type {
	margin-bottom: 28px;
}
.contact-form label {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 6px;
}
.label-optional {
	font-weight: 400;
	color: #9ca3af;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 12px 14px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	color: #1f2937;
	background: #f9fafb;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	transition:
		border-color 0.2s,
		box-shadow 0.2s;
	outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #9ca3af;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: #1f3557;
	box-shadow: 0 0 0 3px rgba(31, 53, 87, 0.1);
	background: #fff;
}
.contact-form select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 40px;
	cursor: pointer;
}
.contact-form textarea {
	resize: vertical;
	min-height: 120px;
}
.form-submit {
	display: inline-block;
	padding: 14px 36px;
	font-family: 'Inter', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	background: #1f3557;
	border: none;
    margin-bottom: 15px;
	border-radius: 8px;
	cursor: pointer;
	transition:
		background 0.2s,
		transform 0.15s;
}
.form-submit:hover {
	background: #2a4570;
}
.form-submit:active {
	transform: scale(0.98);
}
.form-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
.form-alert {
	padding: 14px 16px;
	border-radius: 8px;
	font-size: 15px;
	line-height: 1.5;
	margin-bottom: 20px;
}
.form-alert--success {
	background: #ecfdf5;
	color: #065f46;
	border: 1px solid #a7f3d0;
}
.form-alert--error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}
.form-disclaimer {
	color: #9ca3af;
    line-height: 1.15 !important;
}