/*--------------------------------------------------------------
  FP Contact Map — секція контактів з картою (головна)
--------------------------------------------------------------*/

.fp-contact-map {
	position: relative;
	padding: 56px 0 72px;
	background: #f7f9fc;
}

.fp-contact-map__container {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}

.fp-contact-map__heading {
	margin: 0 0 32px;
	font-family: var(--nexin-font);
	font-size: 1.75rem;
	font-weight: 700;
	color: #10284f;
	text-align: center;
}

.fp-contact-map__inner {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 32px;
	align-items: stretch;
}

.fp-contact-map__map-wrap {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(15, 39, 84, 0.08);
	border: 1px solid rgba(13, 44, 104, 0.08);
}

.fp-contact-map__map {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	background: #e8ecf4;
}

.fp-contact-map__iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.fp-contact-map__info {
	display: flex;
	align-items: stretch;
}

.fp-contact-map__card {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	padding: 28px 24px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 12px 40px rgba(15, 39, 84, 0.06);
	border: 1px solid rgba(13, 44, 104, 0.08);
	justify-content: center;
}

.fp-contact-map__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 18px 0;
	border-bottom: 1px solid rgba(13, 44, 104, 0.06);
}

.fp-contact-map__item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.fp-contact-map__item:first-child {
	padding-top: 0;
}

.fp-contact-map__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(24, 78, 168, 0.1);
	color: #184ea8;
	font-size: 18px;
}

.fp-contact-map__item-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.fp-contact-map__label {
	font-family: var(--nexin-font);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #6b7892;
}

.fp-contact-map__value {
	font-family: var(--nexin-font);
	font-size: 16px;
	line-height: 1.4;
	color: #10284f;
	margin: 0;
	font-style: normal;
}

.fp-contact-map__link {
	color: #184ea8;
	text-decoration: none;
	transition: color 0.2s ease;
}

.fp-contact-map__link:hover {
	color: #0d367c;
}

.fp-contact-map__write-trigger {
	display: inline;
	padding: 0;
	margin: 0;
	border: 0;
	background: none;
	font: inherit;
	cursor: pointer;
	text-align: left;
}

.fp-contact-map__item--social .fp-contact-map__item-content {
	gap: 12px;
}

.fp-contact-map__social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.fp-contact-map__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(24, 78, 168, 0.1);
	color: #184ea8;
	font-size: 18px;
	transition: background 0.2s ease, color 0.2s ease;
}

.fp-contact-map__social-link:hover {
	background: #184ea8;
	color: #fff;
}

@media (max-width: 991px) {
	.fp-contact-map {
		padding: 44px 0 56px;
	}

	.fp-contact-map__inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.fp-contact-map__map-wrap {
		order: 1;
	}

	.fp-contact-map__info {
		order: 2;
	}

	.fp-contact-map__map {
		padding-bottom: 50%;
	}

	.fp-contact-map__heading {
		font-size: 1.5rem;
		margin-bottom: 24px;
	}
}

@media (max-width: 767px) {
	.fp-contact-map {
		padding: 32px 0 44px;
	}

	.fp-contact-map__container {
		padding-left: 12px;
		padding-right: 12px;
	}

	.fp-contact-map__heading {
		font-size: 1.35rem;
		margin-bottom: 20px;
	}

	.fp-contact-map__card {
		padding: 20px 18px;
		border-radius: 16px;
	}

	.fp-contact-map__item {
		padding: 14px 0;
		gap: 12px;
	}

	.fp-contact-map__icon {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.fp-contact-map__value {
		font-size: 15px;
	}

	.fp-contact-map__map-wrap {
		border-radius: 16px;
	}

	.fp-contact-map__social-link {
		width: 40px;
		height: 40px;
		font-size: 16px;
		border-radius: 10px;
	}
}
