﻿.modern-footer {
	background-color: #f8f9fa;
	padding: 4rem 2rem 2rem;
	font-family: 'Segoe UI', sans-serif;
	color: #212529;
	border-top: 1px solid #dee2e6;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	gap: 20px;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2rem;
	text-align: center;
}

.footer-col {
	flex: 1 1 250px;
	min-width: 250px;
}

.footer-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #343a40;
}

.footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

	.footer-list li {
		margin: 0.5rem 0;
		font-size: 0.95rem;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
	}

	.footer-list a {
		color: #007bff;
		text-decoration: none;
		transition: color 0.3s ease;
	}

		.footer-list a:hover {
			color: #0056b3;
			text-decoration: underline;
		}

	.footer-list i {
		color: #6c757d;
		font-size: 1rem;
	}

.footer-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 20px;
}

.footer-social {
	display: flex;
	gap: 1rem;
	align-items: center;
	flex-direction: row;
}

.social-link {
	color: #f8f9fa;
	background-color: #4895ef;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background 0.3s ease, transform 0.2s ease;
	text-decoration: none;
}

	.social-link:hover {
		background-color: #34495e;
		transform: translateY(-3px);
	}

.map-link {
	text-decoration: none;
	color: #f8f9fa;
}

@media (max-width: 768px) {
	.footer-grid {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}
