.contact-section {
	padding: 0 100px 180px;
	background-color: #373637;
}

.zapis-container {
	max-width: 1920px;
	margin: 0 auto;
}

.contact-section .section-title-wrapper {
	display: flex;
	align-items: flex-end;
	gap: 60px;
	margin-bottom: 80px;
}

.contact-section .title-line {
	flex-grow: 1;
	border: none;
	height: 2px;
	background-color: #5acafa;
	margin: 0;
}

.contact-section .title-text-content {
	text-align: left;
	flex-shrink: 0;
}

.contact-section .pre-title {
	display: block;
	color: #5acafa;
	font-weight: 400;
	font-style: Regular;
	font-size: 15px;
	line-height: 100%;
	letter-spacing: 0%;
	text-transform: uppercase;
	font-family: 'Bebas Neue Cyrillic', sans-serif;
	margin-bottom: 5px;
	text-align: right;
}

.contact-section .section-title {
	font-family: 'Bebas Neue Cyrillic', sans-serif;
	font-weight: 400;
	font-style: Regular;
	font-size: 64px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #ffffff;
	text-transform: uppercase;
	margin: 0;
	line-height: 0.8;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 35px;
	align-items: stretch;
}


.contact-form-wrapper {
	border: 2px solid #5acafa;
	padding: 40px;
}

.contact-form-title {
	font-family: 'Bebas Neue Cyrillic', sans-serif;
	font-weight: 400;
	font-size: 36px;
	line-height: 1.2;
	color: #ffffff;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 100px;
}

.contact-form {
	display: flex;
	flex-direction: column;
}

.contact-form input[type='text'],
.contact-form input[type='tel'] {
	width: 100%;
	padding: 25px 30px;
	margin-bottom: 20px;
	border: none;
	background-color: #ffffff;
	color: #333;
	box-sizing: border-box;
	font-family: 'Bebas Neue Cyrillic', sans-serif;
	font-weight: 400;
	font-size: 28px;
	line-height: 1;
	border-radius: 0; 
}

.contact-form input::placeholder {
	color: #888;
	text-transform: uppercase;
	font-family: 'Bebas Neue Cyrillic', 'Bebas Neue', sans-serif;
}

.contact-form .btn-solid {
	padding: 18px 40px;
	font-family: 'Bebas Neue Cyrillic', sans-serif;
	font-weight: 400;
	font-size: 28px;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-sizing: border-box;
	background-color: #5acafa;
	border: 2px solid #5acafa;
	color: #000000;
	align-self: flex-end;
	margin-top: 100px;
}

.contact-form .btn-solid:hover {
	background-color: transparent;
	color: #5acafa;
	border-color: #5acafa;
}


.contact-map-wrapper {
	width: 100%;
	height: 100%;
	min-height: 580px;
	overflow: hidden;
	position: relative; 
}

.contact-map-wrapper iframe {
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(100%) invert(90%) contrast(80%);
}


.contact-map-marker {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -100%) rotate(-45deg);
	width: 32px;
	height: 32px;
	background-color: #5acafa; 
	border-radius: 50% 50% 50% 0;
	box-shadow: 0 0 15px rgba(90, 202, 250, 0.8);
	z-index: 2;
	pointer-events: none; 
}

.contact-map-marker-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	width: 40%;
	height: 40%;
	border-radius: 50%;
	background-color: #ffffff;
}



@media (max-width: 1024px) {
	.contact-section {
		padding: 80px 20px;
	}
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.contact-section .section-title {
		font-size: 48px;
	}
	.contact-form-wrapper {
		padding: 30px;
	}
	.contact-form-title {
		margin-bottom: 40px;
	}
	.contact-form input[type='text'],
	.contact-form input[type='tel'] {
		padding: 20px;
		font-size: 22px;
	}
	.contact-form .btn-solid {
		margin-top: 30px;
		font-size: 24px;
	}
	.contact-map-wrapper {
		min-height: 400px;
	}
}

@media (max-width: 768px) {
	.contact-section {
		padding: 60px 20px;
	}
	.contact-section .section-title-wrapper {
		gap: 10px;
		margin-bottom: 40px;
	}
	.contact-section .section-title {
		font-size: 36px;
	}
	.contact-form-title {
		font-size: 30px;
	}
	.contact-form .btn-solid {
		width: 100%;
		text-align: center;
		align-self: center;
	}
	.contact-map-wrapper {
		min-height: 300px;
	}
}
