/* --------------------------------------------------------------------------
   Contact Page Styles
   -------------------------------------------------------------------------- */

.contacts-hero {
	padding: 80px 0;
	background-color: var(--color-white);
}

.contacts-hero__container {
	display: flex;
	gap: 70px;
	align-items: center;
}

.contacts-hero__info {
	flex: 0 0 50%;
}

.contacts-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: var(--color-green);
	font-size: 48px;
	line-height: 1.15;
	margin: 0 0 18px 0;
}

.contacts-under-title {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
	color: #7f7f7f;
	margin: 0 0 28px 0;
}

.contacts-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.contacts-list__item {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: #4a4a4a;
}

.contacts-hero__media {
	flex: 0 0 50%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.contacts-hero__image {
	width: 100%;
	max-width: 520px;
	height: auto;
	display: block;
}

.contacts-map {
	padding: 70px 0 0;
	background-color: var(--color-bg-light);
}

.contacts-map__container {
	max-width: 1440px;
	margin: 0 auto;
}

.contacts-map__title {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: var(--color-green);
	font-size: 40px;
	line-height: 1.2;
	margin: 0 0 28px 0;
}

.contacts-map__map {
	width: 100vw;
	height: 520px;
	border-radius: 12px;
	overflow: hidden;
	background: #e9efe3;
	max-width: none;
	/* Make map span full viewport width while title stays constrained by `.container`. */
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

/* Responsive */
@media (max-width: 991px) {
	.contacts-hero {
		padding: 50px 0;
	}

	.contacts-hero__container {
		flex-direction: column;
		gap: 28px;
		text-align: center;
	}

	.contacts-hero__info {
		flex: 0 0 auto;
		width: 100%;
	}

	.contacts-hero__media {
		flex: 0 0 auto;
		width: 100%;
		justify-content: center;
	}

	.contacts-title {
		font-size: 34px;
		margin-bottom: 14px;
	}

	.contacts-under-title {
		margin-bottom: 22px;
	}

	.contacts-map {
		padding: 55px 0 0;
	}

	.contacts-map__title {
		font-size: 30px;
		margin-bottom: 20px;
	}

	.contacts-map__map {
		height: 360px;
	}
}

