/* Footer */
.footer {
	color: var(--primary-foreground);
}

.sub-footer{
	background: var(--accent-2);
	opacity: 0.9;
	padding: 3rem 1rem 2rem;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-bottom: 2rem;
}

.footer-info h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.contact-icon {
	width: 1.25rem;
	height: 1.25rem;
	fill: currentColor;
}

.map-placeholder {
	background: #e5e7eb;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #6b7280;
	position: relative;
}

.map-button {
	position: absolute;
	bottom: 0.5rem;
	right: 0.5rem;
	background: var(--accent);
	color: var(--accent-foreground);
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 1.5rem;
	text-align: center;
	font-size: 0.875rem;
	opacity: 0.8;
}

@media (max-width: 767px) {
	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}
