/* Contact page — layout tweaks on top of contact-footer.css */

.contact-hero {
	padding: 64px 0 28px;
	background: linear-gradient(180deg, var(--primary-light, #E2F6EE) 0%, #ffffff 100%);
}

.contact-hero h1 {
	font-family: var(--font-secondary);
	font-size: 48px;
	font-weight: 700;
	line-height: 110%;
	color: #111;
	margin: 0 0 16px;
	max-width: 760px;
}

.contact-hero p {
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 400;
	line-height: 160%;
	color: #555;
	margin: 0;
	max-width: 720px;
}

.contact-hero + .contact-page.contact-section {
	padding-top: 32px;
	padding-bottom: 72px;
}

.contact-page .contact-find > h1 {
	font-family: var(--font-secondary);
	font-size: 48px;
	font-weight: 700;
	line-height: 110%;
	color: #111;
	margin: 0 0 28px;
}

.contact-card-body h2 {
	font-family: var(--font-secondary);
	font-size: 18px;
	font-weight: 700;
	line-height: 130%;
	color: #111;
	margin: 0 0 4px;
}

.contact-page .contact-find {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-method {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 22px 22px;
	background: #f7f7f7;
	border-radius: 18px;
}

.contact-method-icon {
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--primary);
	color: var(--white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.contact-method h2 {
	font-family: var(--font-secondary);
	font-size: 22px;
	font-weight: 700;
	line-height: 130%;
	color: #111;
	margin: 0 0 6px;
}

.contact-method a {
	display: inline-block;
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 600;
	line-height: 150%;
	color: var(--primary);
	margin: 0 0 10px;
}

.contact-method a:hover {
	opacity: 0.85;
}

.contact-method p {
	font-family: var(--font-primary);
	font-size: 15px;
	font-weight: 400;
	line-height: 160%;
	color: #555;
	margin: 0 0 10px;
}

.contact-method p:last-child {
	margin-bottom: 0;
}

.contact-page .contact-form-wrap h2 {
	font-size: 36px;
}

.contact-page .contact-form-wrap > p {
	max-width: 100%;
}

.contact-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.contact-form select {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid #d9d9d9;
	border-radius: 10px;
	background: var(--white);
	font-family: var(--font-primary);
	font-size: 15px;
	color: #111;
	outline: none;
	box-sizing: border-box;
}

.contact-form select:focus,
.contact-form input[type="date"]:focus {
	border-color: var(--primary);
}

.contact-date-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.contact-date-field span {
	font-family: var(--font-primary);
	font-size: 14px;
	font-weight: 500;
	color: #555;
}

.contact-faq-section {
	background: var(--background, #E2F6EE);
}

@media (max-width: 991px) {
	.contact-hero {
		padding-top: 40px;
	}

	.contact-hero h1 {
		font-size: 36px;
	}

	.contact-hero + .contact-page.contact-section {
		padding-top: 16px;
	}

	.contact-page .contact-find > h1 {
		font-size: 36px;
	}

	.contact-form-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.contact-hero h1 {
		font-size: 28px;
	}

	.contact-method {
		padding: 18px 16px;
	}

	.contact-page .contact-form-wrap h2 {
		font-size: 28px;
	}
}
