/* ============================================
   FOOTER STYLES (self-contained, used site-wide)
   ============================================ */

.main-footer {
	background: #2c2c2c;
	color: #fff;
	margin-top: 60px;
	padding: 50px 0 0;
	font-size: 14px;
}

.footer-container {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0 60px;
	box-sizing: border-box;
}

.footer-nav {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.footer-col .social-links {
	justify-content: center;
}

.footer-col h3 {
	color: #E02060;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-col ul {
	list-style: none;
}

.footer-col ul li {
	margin-bottom: 10px;
}

.footer-col a {
	color: #bbb;
	text-decoration: none;
	transition: all 0.2s ease;
	font-size: 13px;
}

.footer-col a:hover {
	color: #E02060;
	text-decoration: underline;
	padding-left: 5px;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	width: 40px;
	height: 40px;
	background: rgba(224, 32, 96, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: all 0.2s ease;
	color: #E02060;
}

.social-links a:hover {
	background: #E02060;
	color: white;
	transform: translateY(-3px);
}

/* Regions */
.footer-regions {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-regions > h3 {
	color: #E02060;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-align: center;
}

.footer-regions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 6px 24px;
	text-align: center;
}

a.footer-region-head,
a.footer-region-head:link,
a.footer-region-head:visited {
	display: block;
	color: #bbb;
	font-weight: normal;
	font-size: 13px;
	text-decoration: none;
	transition: all 0.2s ease;
}

a.footer-region-head:hover {
	color: #E02060;
	text-decoration: underline;
}

.footer-region-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-region-col ul li {
	margin-bottom: 6px;
}

.footer-region-col ul li a {
	color: #bbb;
	text-decoration: none;
	font-size: 13px;
	transition: all 0.2s ease;
}

.footer-region-col ul li a:hover {
	color: #E02060;
	text-decoration: underline;
}

.footer-bottom {
	padding: 30px 0;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
	color: #aaa;
	font-size: 12px;
	margin-bottom: 15px;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 0;
	flex-wrap: wrap;
	font-size: 12px;
}

.footer-links a {
	color: #bbb;
	text-decoration: none;
	padding: 0 10px;
	transition: color 0.2s ease;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links a:last-child {
	border-right: none;
}

.footer-links a:hover {
	color: #E02060;
}

/* Tablet (max 1024px) */
@media screen and (max-width: 1024px) {
	.footer-nav {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
		margin-bottom: 25px;
		padding-bottom: 25px;
	}

	.footer-col h3 {
		font-size: 14px;
	}

	.footer-col a {
		font-size: 12px;
	}

	.footer-links {
		flex-direction: column;
		gap: 10px;
		align-items: center;
	}

	.footer-links a {
		padding: 5px 0;
		border: none;
	}
}

/* Mobile (max 768px) */
@media screen and (max-width: 768px) {
	.main-footer {
		margin-top: 40px;
		padding: 30px 0 0;
	}

	.footer-nav {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.footer-col h3 {
		font-size: 13px;
		margin-bottom: 10px;
	}

	.footer-col ul li {
		margin-bottom: 8px;
	}

	.footer-col a {
		font-size: 11px;
	}

	.footer-regions-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.copyright {
		font-size: 11px;
		margin-bottom: 10px;
	}

	.footer-links {
		font-size: 11px;
	}

	.social-links {
		justify-content: center;
	}
}
