.contacts-page {
	--contacts-navy: #153a57;
	--contacts-blue: #1688c7;
	--contacts-blue-dark: #0c6fae;
	--contacts-sky: #eaf5fc;
	--contacts-line: #cfe4f2;
	--contacts-text: #3a5a73;
	color: var(--contacts-text);
	display: grid;
	gap: 24px;
	margin-top: 24px;
}

.contacts-page *,
.contacts-page *::before,
.contacts-page *::after {
	box-sizing: border-box;
}

.contacts-page h2,
.contacts-page h3,
.contacts-page p {
	margin-top: 0;
}

.contacts-hero {
	background:
		radial-gradient(circle at 9% 9%, rgba(255, 255, 255, .9), transparent 25%),
		linear-gradient(135deg, #f5fbff 0%, #e7f4fc 100%);
	border: 1px solid var(--contacts-line);
	border-radius: 24px;
	display: grid;
	gap: 34px;
	grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
	overflow: hidden;
	padding: 42px;
	position: relative;
}

.contacts-hero::after {
	border: 1px solid rgba(22, 136, 199, .12);
	border-radius: 50%;
	content: "";
	height: 310px;
	position: absolute;
	right: -120px;
	top: -170px;
	width: 310px;
}

.contacts-hero__content {
	align-self: center;
	max-width: 670px;
	position: relative;
	z-index: 1;
}

.contacts-eyebrow,
.contacts-section-head > div > span,
.contacts-social > div:first-child > span {
	color: var(--contacts-blue-dark);
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.contacts-hero h1 {
	color: var(--contacts-navy) !important;
	font-size: clamp(32px, 4vw, 48px) !important;
	font-weight: 700 !important;
	letter-spacing: -.035em;
	line-height: 1.08 !important;
	margin: 0 0 18px !important;
}

.contacts-hero__content > p {
	font-size: 17px;
	line-height: 1.7;
	margin-bottom: 26px;
	max-width: 620px;
}

.contacts-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.contacts-button {
	align-items: center;
	border: 1px solid var(--contacts-blue);
	border-radius: 13px;
	display: inline-flex;
	font-size: 15px;
	font-weight: 700;
	gap: 10px;
	justify-content: center;
	min-height: 50px;
	padding: 0 22px;
	text-decoration: none !important;
	transition: background .2s ease, color .2s ease, transform .2s ease;
}

.contacts-button:hover {
	transform: translateY(-2px);
}

.contacts-button svg,
.contacts-channel__icon svg,
.contacts-section-head__icon svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.contacts-button svg {
	height: 19px;
	width: 19px;
}

.contacts-button--primary {
	background: var(--contacts-blue);
	color: #fff !important;
}

.contacts-button--primary:hover {
	background: var(--contacts-blue-dark);
}

.contacts-button--secondary {
	background: rgba(255, 255, 255, .72);
	color: var(--contacts-blue-dark) !important;
}

.contacts-button--secondary:hover {
	background: #fff;
}

.contacts-location {
	background: rgba(255, 255, 255, .86);
	border: 1px solid rgba(255, 255, 255, .95);
	border-radius: 20px;
	box-shadow: 0 16px 42px rgba(21, 58, 87, .1);
	overflow: hidden;
	padding: 22px;
	position: relative;
	z-index: 1;
}

.contacts-location__map {
	background:
		linear-gradient(rgba(255, 255, 255, .58), rgba(255, 255, 255, .58)),
		linear-gradient(90deg, transparent 48%, rgba(22, 136, 199, .12) 49%, rgba(22, 136, 199, .12) 51%, transparent 52%),
		linear-gradient(transparent 48%, rgba(22, 136, 199, .12) 49%, rgba(22, 136, 199, .12) 51%, transparent 52%),
		var(--contacts-sky);
	background-size: auto, 46px 46px, 46px 46px, auto;
	border-radius: 14px;
	height: 145px;
	margin-bottom: 20px;
	overflow: hidden;
	position: relative;
}

.contacts-location__route {
	border: 2px dashed rgba(22, 136, 199, .32);
	border-radius: 50%;
	height: 155px;
	position: absolute;
	transform: rotate(-18deg);
	width: 260px;
}

.contacts-location__route--one {
	left: -55px;
	top: 34px;
}

.contacts-location__route--two {
	right: -85px;
	top: -78px;
	transform: rotate(28deg);
}

.contacts-location__pin {
	align-items: center;
	background: var(--contacts-blue);
	border: 6px solid rgba(22, 136, 199, .18);
	background-clip: padding-box;
	border-radius: 50%;
	color: #fff;
	display: flex;
	height: 54px;
	justify-content: center;
	left: 58%;
	position: absolute;
	top: 43%;
	transform: translate(-50%, -50%);
	width: 54px;
}

.contacts-location__pin svg {
	fill: none;
	height: 25px;
	stroke: currentColor;
	stroke-width: 1.8;
	width: 25px;
}

.contacts-location__label {
	color: #7890a3;
	display: block;
	font-size: 12px;
	margin-bottom: 7px;
}

.contacts-location > strong {
	color: var(--contacts-navy);
	display: block;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.5;
}

.contacts-location > a {
	align-items: center;
	color: var(--contacts-blue-dark) !important;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 10px;
	margin-top: 15px;
	text-decoration: none !important;
}

.contacts-channels {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contacts-channel {
	align-items: center;
	background: #fff;
	border: 1px solid var(--contacts-line);
	border-radius: 18px;
	display: flex;
	gap: 16px;
	min-width: 0;
	padding: 20px;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.contacts-channel:hover {
	border-color: #a9d6ef;
	box-shadow: 0 12px 30px rgba(21, 58, 87, .08);
	transform: translateY(-2px);
}

.contacts-channel__icon,
.contacts-section-head__icon {
	align-items: center;
	background: var(--contacts-sky);
	border-radius: 13px;
	color: var(--contacts-blue);
	display: flex;
	flex: 0 0 auto;
	height: 46px;
	justify-content: center;
	width: 46px;
}

.contacts-channel__icon svg,
.contacts-section-head__icon svg {
	height: 23px;
	width: 23px;
}

.contacts-channel > div {
	min-width: 0;
}

.contacts-channel > div > span {
	color: #7890a3;
	display: block;
	font-size: 12px;
	margin-bottom: 4px;
}

.contacts-channel a {
	color: var(--contacts-navy) !important;
	display: block;
	font-size: 17px;
	font-weight: 700;
	overflow-wrap: anywhere;
	text-decoration: none !important;
}

.contacts-info {
	display: grid;
	gap: 20px;
	grid-template-columns: 1.15fr .85fr;
}

.contacts-schedule,
.contacts-reception,
.contacts-social {
	background: #fff;
	border: 1px solid var(--contacts-line);
	border-radius: 20px;
	padding: 28px;
}

.contacts-section-head {
	align-items: center;
	display: flex;
	gap: 15px;
	margin-bottom: 24px;
}

.contacts-section-head > div > span {
	margin-bottom: 4px;
}

.contacts-section-head h3,
.contacts-social h3 {
	color: var(--contacts-navy) !important;
	font-size: 24px !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	margin: 0 !important;
}

.contacts-schedule__rows {
	display: grid;
	gap: 1px;
}

.contacts-schedule__rows > div {
	align-items: center;
	background: #f7fbfe;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	padding: 14px 16px;
}

.contacts-schedule__rows > div:first-child {
	border-radius: 12px 12px 0 0;
}

.contacts-schedule__rows > div:last-child {
	border-radius: 0 0 12px 12px;
}

.contacts-schedule__rows span {
	font-size: 14px;
}

.contacts-schedule__rows strong {
	color: var(--contacts-navy);
	font-size: 15px;
}

.contacts-schedule__weekend strong {
	color: #7890a3;
}

.contacts-reception {
	background: linear-gradient(145deg, #fff 0%, #edf8fe 100%);
}

.contacts-reception > p {
	font-size: 15px;
	margin: 0 0 5px;
}

.contacts-reception > strong {
	color: var(--contacts-navy);
	display: block;
	font-size: 28px;
	margin-bottom: 22px;
}

.contacts-reception > a {
	align-items: center;
	color: var(--contacts-blue-dark) !important;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 15px;
	text-decoration: none !important;
}

.contacts-social {
	align-items: center;
	display: flex;
	gap: 30px;
	justify-content: space-between;
}

.contacts-social > div:first-child > span {
	margin-bottom: 5px;
}

.contacts-social__links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.contacts-social__links a {
	align-items: center;
	background: var(--contacts-sky);
	border: 1px solid transparent;
	border-radius: 14px;
	color: var(--contacts-navy) !important;
	display: flex;
	font-size: 14px;
	font-weight: 700;
	gap: 10px;
	min-height: 54px;
	padding: 7px 15px 7px 8px;
	text-decoration: none !important;
	transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.contacts-social__links a:hover {
	background: #fff;
	border-color: var(--contacts-line);
	transform: translateY(-2px);
}

.contacts-social__links img {
	border-radius: 50%;
	display: block;
	height: 38px;
	object-fit: contain;
	width: 38px;
}

@media (max-width: 980px) {
	.contacts-hero {
		grid-template-columns: 1fr;
	}

	.contacts-location {
		display: grid;
		grid-template-columns: 180px 1fr;
		column-gap: 20px;
	}

	.contacts-location__map {
		grid-row: 1 / span 4;
		height: 100%;
		margin: 0;
		min-height: 170px;
	}

	.contacts-location__label {
		align-self: end;
	}

	.contacts-channels {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.contacts-page {
		gap: 16px;
		margin-top: 16px;
	}

	.contacts-hero {
		border-radius: 20px;
		gap: 24px;
		padding: 26px 20px 20px;
	}

	.contacts-hero__content > p {
		font-size: 15px;
		line-height: 1.6;
	}

	.contacts-hero__actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.contacts-location {
		display: block;
		padding: 16px;
	}

	.contacts-location__map {
		height: 140px;
		margin-bottom: 18px;
		min-height: 0;
	}

	.contacts-channels,
	.contacts-info {
		grid-template-columns: 1fr;
	}

	.contacts-channel {
		padding: 16px;
	}

	.contacts-schedule,
	.contacts-reception,
	.contacts-social {
		border-radius: 18px;
		padding: 20px;
	}

	.contacts-section-head h3,
	.contacts-social h3 {
		font-size: 21px !important;
	}

	.contacts-schedule__rows > div {
		align-items: flex-start;
		flex-direction: column;
		gap: 5px;
	}

	.contacts-social {
		align-items: stretch;
		flex-direction: column;
	}

	.contacts-social__links {
		display: grid;
		grid-template-columns: 1fr;
	}

	.contacts-social__links a {
		justify-content: flex-start;
	}
}

@media (max-width: 430px) {
	.contacts-hero__actions {
		grid-template-columns: 1fr;
	}
}
