.tccs-contact {
	padding: 28px 0 0;
}

.tccs-contact-hero {
	padding: 8px 0 26px;
}

.tccs-contact-breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: #6e7ea5;
	font-size: 0.98rem;
}

.tccs-contact-breadcrumb li {
	display: inline-flex;
	align-items: center;
}

.tccs-contact-breadcrumb li + li::before {
	content: ">";
	margin-right: 10px;
	color: #90a0c6;
}

.tccs-contact-breadcrumb a:hover,
.tccs-contact-breadcrumb a:focus-visible {
	color: var(--tccs-blue);
}

.tccs-contact-hero__content {
	max-width: 700px;
	padding-top: 18px;
}

.tccs-contact-hero h1 {
	margin: 0;
	font-size: clamp(2.8rem, 5vw, 4.2rem);
	line-height: 1.04;
	letter-spacing: -0.04em;
	color: var(--tccs-navy);
}

.tccs-contact-hero p {
	margin: 18px 0 0;
	font-size: 1.08rem;
	line-height: 1.9;
	color: var(--tccs-text-muted);
}

.tccs-contact-layout {
	padding-bottom: 28px;
}

.tccs-contact-layout__grid {
	display: grid;
	grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.4fr) minmax(280px, 0.9fr);
	gap: 26px;
	align-items: start;
}

.tccs-contact-card {
	padding: 28px 24px;
	border: 1px solid var(--tccs-border);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 14px 34px rgba(13, 44, 116, 0.06);
}

.tccs-contact-info {
	display: grid;
	gap: 20px;
}

.tccs-contact-item {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
}

.tccs-contact-item__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(47, 107, 255, 0.08);
	color: var(--tccs-navy);
}

.tccs-contact-item__icon svg,
.tccs-contact-socials svg,
.tccs-contact-map__pin svg,
.tccs-contact-form__submit svg {
	width: 22px;
	height: 22px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.tccs-contact-socials svg.is-fill,
.tccs-contact-socials .is-fill {
	fill: currentColor;
	stroke: none;
}

.tccs-contact-item__body h2,
.tccs-contact-form h2 {
	margin: 0;
	font-size: 1.12rem;
	line-height: 1.3;
	color: var(--tccs-navy);
}

.tccs-contact-item__body p {
	margin: 8px 0 0;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--tccs-text);
}

.tccs-contact-socials {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 16px;
}

.tccs-contact-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: transparent;
	color: var(--tccs-navy);
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tccs-contact-socials a:hover,
.tccs-contact-socials a:focus-visible {
	background: rgba(47, 107, 255, 0.08);
	color: var(--tccs-blue);
	transform: translateY(-1px);
}

.tccs-contact-card__lead {
	margin: 10px 0 0;
	font-size: 0.98rem;
	line-height: 1.75;
	color: var(--tccs-text-muted);
}

.tccs-contact-form__native,
.tccs-contact-form__plugin {
	margin-top: 20px;
}

.tccs-contact-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 14px;
}

.tccs-contact-form__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.tccs-contact-form__field--full {
	grid-column: 1 / -1;
}

.tccs-contact-form label,
.tccs-contact-form .wpcf7-form p,
.tccs-contact-form .wpforms-field-label {
	margin: 0;
	font-size: 0.94rem;
	font-weight: 700;
	color: var(--tccs-text);
}

.tccs-contact-form input,
.tccs-contact-form select,
.tccs-contact-form textarea,
.tccs-contact-form .wpcf7 input,
.tccs-contact-form .wpcf7 select,
.tccs-contact-form .wpcf7 textarea,
.tccs-contact-form .wpforms-container input,
.tccs-contact-form .wpforms-container select,
.tccs-contact-form .wpforms-container textarea {
	width: 100%;
	min-height: 52px;
	padding: 0 16px;
	border: 1px solid rgba(13, 44, 116, 0.12);
	border-radius: 14px;
	background: #ffffff;
	color: var(--tccs-text);
	box-sizing: border-box;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tccs-contact-form textarea,
.tccs-contact-form .wpcf7 textarea,
.tccs-contact-form .wpforms-container textarea {
	min-height: 144px;
	padding: 16px;
	resize: vertical;
}

.tccs-contact-form input:focus,
.tccs-contact-form select:focus,
.tccs-contact-form textarea:focus,
.tccs-contact-form .wpcf7 input:focus,
.tccs-contact-form .wpcf7 select:focus,
.tccs-contact-form .wpcf7 textarea:focus,
.tccs-contact-form .wpforms-container input:focus,
.tccs-contact-form .wpforms-container select:focus,
.tccs-contact-form .wpforms-container textarea:focus {
	border-color: rgba(47, 107, 255, 0.52);
	box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.08);
}

.tccs-contact-form select {
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, #7182ad 50%),
		linear-gradient(135deg, #7182ad 50%, transparent 50%);
	background-position:
		calc(100% - 18px) calc(50% - 2px),
		calc(100% - 12px) calc(50% - 2px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 42px;
}

.tccs-contact-form__submit {
	margin-top: 14px;
	min-width: 172px;
}

.tccs-contact-form .wpcf7-form {
	display: grid;
	gap: 14px;
}

.tccs-contact-form .wpcf7-form-control-wrap {
	display: block;
	margin-top: 8px;
}

.tccs-contact-form .wpcf7-submit,
.tccs-contact-form .wpforms-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 22px;
	border: 0;
	border-radius: 14px;
	background: linear-gradient(180deg, #11378e 0%, #0b2a73 100%);
	color: #ffffff;
	font-weight: 700;
	box-shadow: 0 16px 30px rgba(17, 55, 142, 0.24);
	cursor: pointer;
}

.tccs-contact-map__card {
	padding: 0;
	overflow: hidden;
}

.tccs-contact-map__canvas {
	position: relative;
	min-height: 464px;
	border-radius: 24px;
	overflow: hidden;
	background:
		linear-gradient(125deg, rgba(255, 255, 255, 0.84), rgba(244, 248, 255, 0.98)),
		radial-gradient(circle at 14% 18%, rgba(47, 107, 255, 0.08) 0, rgba(47, 107, 255, 0) 28%),
		radial-gradient(circle at 86% 82%, rgba(47, 107, 255, 0.07) 0, rgba(47, 107, 255, 0) 24%),
		#eef4ff;
}

.tccs-contact-map__canvas::before,
.tccs-contact-map__canvas::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(112, 133, 184, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(112, 133, 184, 0.08) 1px, transparent 1px);
	background-size: 72px 72px;
	pointer-events: none;
}

.tccs-contact-map__canvas::after {
	background-image:
		linear-gradient(60deg, rgba(164, 178, 214, 0.22) 0, rgba(164, 178, 214, 0.22) 2px, transparent 2px, transparent 100%),
		linear-gradient(120deg, rgba(164, 178, 214, 0.18) 0, rgba(164, 178, 214, 0.18) 2px, transparent 2px, transparent 100%);
	background-size: 180px 180px, 240px 240px;
	mix-blend-mode: multiply;
	opacity: 0.6;
}

.tccs-contact-map__road,
.tccs-contact-map__ring {
	position: absolute;
	border-radius: 999px;
}

.tccs-contact-map__road {
	background: rgba(157, 173, 212, 0.28);
}

.tccs-contact-map__road--1 {
	top: 20%;
	left: -6%;
	width: 118%;
	height: 3px;
	transform: rotate(34deg);
}

.tccs-contact-map__road--2 {
	top: 60%;
	left: -14%;
	width: 134%;
	height: 3px;
	transform: rotate(-21deg);
}

.tccs-contact-map__road--3 {
	top: -8%;
	left: 52%;
	width: 3px;
	height: 122%;
	transform: rotate(12deg);
}

.tccs-contact-map__road--4 {
	top: -10%;
	left: 22%;
	width: 3px;
	height: 124%;
	transform: rotate(-8deg);
}

.tccs-contact-map__ring {
	border: 3px solid rgba(47, 107, 255, 0.12);
}

.tccs-contact-map__ring--1 {
	right: -24px;
	bottom: -32px;
	width: 188px;
	height: 188px;
}

.tccs-contact-map__ring--2 {
	left: -46px;
	top: 54px;
	width: 148px;
	height: 148px;
}

.tccs-contact-map__bubble {
	position: absolute;
	top: 34px;
	left: 34px;
	z-index: 3;
	max-width: 250px;
	padding: 18px 20px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 34px rgba(13, 44, 116, 0.14);
}

.tccs-contact-map__bubble strong {
	display: block;
	color: var(--tccs-navy);
	font-size: 1.02rem;
}

.tccs-contact-map__bubble p {
	margin: 10px 0 0;
	font-size: 0.98rem;
	line-height: 1.7;
	color: var(--tccs-text);
}

.tccs-contact-map__pin {
	position: absolute;
	left: 52%;
	top: 54%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin: -29px 0 0 -29px;
	border-radius: 50%;
	background: #2960ff;
	color: #ffffff;
	box-shadow: 0 18px 34px rgba(41, 96, 255, 0.28);
}

.tccs-contact-map__pin::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -10px;
	width: 18px;
	height: 18px;
	background: #2960ff;
	transform: translateX(-50%) rotate(45deg);
	border-radius: 4px;
	z-index: -1;
}

.tccs-contact-map__label {
	position: absolute;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.35;
}

.tccs-contact-map__label--market {
	left: 15%;
	bottom: 24%;
	color: #2d78ff;
}

.tccs-contact-map__label--park {
	right: 10%;
	top: 26%;
	max-width: 120px;
	color: #39a55a;
}

.tccs-contact-map__label--mall {
	right: 9%;
	bottom: 14%;
	max-width: 120px;
	color: #2d78ff;
}

@media (max-width: 1199px) {
	.tccs-contact-layout__grid {
		grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	}

	.tccs-contact-map {
		grid-column: 1 / -1;
	}
}

@media (max-width: 991px) {
	.tccs-contact-layout__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 22px;
	}

	.tccs-contact-info {
		gap: 0;
		border-top: 1px solid rgba(13, 44, 116, 0.08);
	}

	.tccs-contact-item {
		padding: 18px 0;
		border-bottom: 1px solid rgba(13, 44, 116, 0.08);
	}
}

@media (max-width: 767px) {
	.tccs-contact {
		padding-top: 18px;
	}

	.tccs-contact-hero {
		padding-bottom: 22px;
	}

	.tccs-contact-hero__content {
		padding-top: 14px;
	}

	.tccs-contact-hero h1 {
		font-size: clamp(2.55rem, 8vw, 3.4rem);
	}

	.tccs-contact-hero p,
	.tccs-contact-item__body p,
	.tccs-contact-map__bubble p {
		font-size: 0.98rem;
		line-height: 1.8;
	}

	.tccs-contact-card {
		padding: 20px 18px;
		border-radius: 22px;
	}

	.tccs-contact-item {
		grid-template-columns: 74px minmax(0, 1fr);
		gap: 12px;
	}

	.tccs-contact-item__icon {
		width: 54px;
		height: 54px;
	}

	.tccs-contact-form__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.tccs-contact-form__field,
	.tccs-contact-form__field--full {
		grid-column: auto;
	}

	.tccs-contact-form__submit {
		width: 100%;
	}

	.tccs-contact-map__canvas {
		min-height: 360px;
	}

	.tccs-contact-map__bubble {
		top: 22px;
		left: 18px;
		right: 18px;
		max-width: none;
		padding: 16px 18px;
	}

	.tccs-contact-map__pin {
		left: 55%;
		top: 64%;
		width: 52px;
		height: 52px;
		margin: -26px 0 0 -26px;
	}

	.tccs-contact-map__label {
		font-size: 0.82rem;
	}
}
