/* Contact Page */
.hk-contact-page {
	background: #f4f7f9;
}

.hk-contact-hero {
	background: #0b2f63;
	color: #fff;
	padding: 70px 0;
	text-align: center;
}

.hk-contact-label {
	display: inline-block;
	margin-bottom: 14px;
	color: #00a86b;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.hk-contact-hero h1 {
	margin: 0 0 16px;
	color: #fff;
	font-size: clamp(38px, 5vw, 58px);
	line-height: 1.1;
}

.hk-contact-hero p {
	max-width: 700px;
	margin: 0 auto;
	color: #fff;
	font-size: 18px;
	line-height: 1.7;
}

.hk-contact-section {
	padding: 60px 0;
}

.hk-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: 36px;
	align-items: start;
}

.hk-contact-info,
.hk-contact-form-card {
	background: #fff;
	border: 1px solid #dce4ea;
	border-radius: 18px;
	padding: 36px;
	box-shadow: 0 12px 35px rgba(20, 45, 70, .06);
}

.hk-contact-info h2,
.hk-contact-form-card h2 {
	margin: 0 0 18px;
	color: #082a5c;
	font-size: 32px;
	line-height: 1.2;
}

.hk-contact-info > p {
	margin: 0 0 25px;
	line-height: 1.8;
}

.hk-contact-info a {
	color: #0067b1;
	font-weight: 700;
}

.hk-contact-note {
	margin-top: 25px;
	padding: 20px;
	background: #f2faf7;
	border-left: 4px solid #00a86b;
	border-radius: 8px;
}

.hk-contact-note strong {
	display: block;
	margin-bottom: 7px;
	color: #082a5c;
}

.hk-contact-note p {
	margin: 0;
	line-height: 1.7;
}


/* Form */
.hk-contact-form {
	display: grid;
	gap: 20px;
}

.hk-form-field label {
	display: block;
	margin-bottom: 7px;
	color: #082a5c;
	font-weight: 700;
}

.hk-form-field label span {
	color: #d92d20;
}

.hk-form-field input,
.hk-form-field textarea {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 13px 15px;
	border: 1px solid #ccd7e0;
	border-radius: 8px;
	background: #fff;
	color: #172033;
	font: inherit;
}

.hk-form-field textarea {
	min-height: 160px;
	resize: vertical;
}

.hk-form-field input:focus,
.hk-form-field textarea:focus {
	outline: none;
	border-color: #0067b1;
	box-shadow: 0 0 0 3px rgba(0, 103, 177, .10);
}

.hk-contact-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	padding: 13px 26px;
	border: 0;
	border-radius: 8px;
	background: #ff9518;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
}

.hk-contact-submit:hover {
	opacity: .9;
}


/* IMPORTANT: spam field hidden */
.hk-contact-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}


/* Messages */
.hk-contact-success,
.hk-contact-error {
	margin-bottom: 22px;
	padding: 14px 16px;
	border-radius: 8px;
	font-weight: 600;
}

.hk-contact-success {
	background: #eaf8f2;
	color: #007c51;
}

.hk-contact-error {
	background: #fff0f0;
	color: #b42318;
}


/* Tablet */
@media (max-width: 900px) {
	.hk-contact-grid {
		grid-template-columns: 1fr;
	}

	.hk-contact-hero {
		padding: 55px 0;
	}
}


/* Mobile */
@media (max-width: 600px) {
	.hk-contact-hero {
		padding: 45px 0;
	}

	.hk-contact-hero p {
		font-size: 16px;
	}

	.hk-contact-section {
		padding: 35px 0;
	}

	.hk-contact-info,
	.hk-contact-form-card {
		padding: 24px 20px;
		border-radius: 14px;
	}

	.hk-contact-info h2,
	.hk-contact-form-card h2 {
		font-size: 26px;
	}

	.hk-contact-submit {
		width: 100%;
	}
}