.contacts-page {
	max-width: 1240px;
	margin: 0 auto;
	/* padding: 40px 20px; */
	/* background-color: #f5f5f5; */
	/* min-height: 100vh; */
}

.contacts-header {
	display: flex;
	align-items: baseline;
	gap: 30px;
	margin-bottom: 40px;
}

.contacts-title {
	font-size: 36px;
	font-weight: 700;
	color: white;
	margin: 0;
}

.contacts-schedule {
	font-size: 16px;
	color: #6b7280;
	margin: 0;
}

.contacts-content {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

.contacts-left {
	flex: 0 0 280px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-card {
	background-color: #333;
	border-radius: 15px;
	padding: 25px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-label {
	font-size: 14px;
	color: #9ca3af;
	margin-bottom: 10px;
}

.contact-value {
	font-size: 24px;
	font-weight: 700;
	color: white;
}

.contact-email {
	font-size: 18px;
	font-weight: 700;
	color: white;
}

.contact-link {
	display: flex;
	align-items: center;
	gap: 15px;
	cursor: pointer;
}

.contact-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	font-size: 20px;
	color: #fff;
}

.contact-icon .fa-paper-plane {
	background-color: #0088cc;
}

.contact-icon-telegram {
	background: linear-gradient(45deg, #0088cc 0%, #0088cc 25%, #0088cc 50%, #0088cc 75%, #0088cc 100%);
}

.contact-icon-instagram {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-icon-whatsapp {
	background-color: #25d366;
}

.contact-icon-youtube {
	background-color: #ff0000;
}

.contact-text {
	font-size: 16px;
	color: white;
	font-weight: 500;
}

.contacts-center {
	flex: 0 0 350px;
}

.contact-office-card {
	background-color: #333333;
	border-radius: 15px;
	padding: 30px;
	position: relative;
	overflow: hidden;
}

.contact-office-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.02) 10px, rgba(0,0,0,0.02) 20px),
		repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0,0,0,0.02) 10px, rgba(0,0,0,0.02) 20px);
	opacity: 0.3;
	pointer-events: none;
}

.office-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 25px;
	position: relative;
	z-index: 1;
}

.office-icon {
	width: 50px;
	height: 50px;
	background-color: #1f2937;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
}

.office-title {
	font-size: 20px;
	font-weight: 700;
	color: white;
}

.office-address {
	margin-bottom: 25px;
	position: relative;
	z-index: 1;
}

.office-address p {
	font-size: 16px;
	color: #fffff;
	margin: 0 0 5px 0;
	line-height: 1.5;
}

.office-map-btn {
	width: 100%;
	background-color: #1f2937;
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 15px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.3s ease;
	position: relative;
	z-index: 1;
}

.office-map-btn:hover {
	background-color: #374151;
}

.contacts-right {
	flex: 1;
	display: flex;
	gap: 30px;
}

.contacts-right-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contacts-subtitle {
	font-size: 18px;
	font-weight: 700;
	color: white;
	margin: 0 0 10px 0;
}

@media (max-width: 1024px) {
	.contacts-content {
		flex-wrap: wrap;
	}
	
	.contacts-left {
		flex: 1 1 100%;
		flex-direction: row;
	}
	
	.contact-card {
		flex: 1;
	}
	
	.contacts-center {
		flex: 1 1 100%;
	}
	
	.contacts-right {
		flex: 1 1 100%;
	}
}

@media (max-width: 768px) {
	.contacts-page {
		padding: 20px 15px;
	}
	
	.contacts-header {
		flex-direction: column;
		gap: 10px;
	}
	
	.contacts-title {
		font-size: 28px;
	}
	
	.contacts-left {
		flex-direction: column;
	}
	
	.contacts-right {
		flex-direction: column;
	}
	
	.contact-value {
		font-size: 20px;
	}
}

@media (max-width: 480px) {
	.contacts-title {
		font-size: 24px;
	}
	
	.contact-office-card {
		padding: 20px;
	}
	
	.office-title {
		font-size: 18px;
	}
	
	.office-address p {
		font-size: 14px;
	}
}



