/* Footer */
.footer {
	background: var(--bg-dark);
	padding: 80px 0 40px;
	border-top: 1px solid var(--border-color);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.footer-brand .logo {
	margin-bottom: 20px;
}

.footer-brand p {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.8;
	max-width: 360px;
}

.footer-title {
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	color: var(--text-primary);
	margin-bottom: 24px;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	font-size: 14px;
	color: var(--text-secondary);
	transition: all 0.3s ease;
}

.footer-links a:hover {
	color: var(--orange-light);
	padding-left: 8px;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 40px;
	border-top: 1px solid var(--border-color);
}

.footer-copy {
	font-size: 13px;
	color: var(--text-muted);
}

.footer-socials {
	display: flex;
	gap: 16px;
}

.social-link {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	font-size: 16px;
	transition: all 0.3s ease;
}

.social-link:hover {
	border-color: var(--orange-primary);
	color: var(--orange-light);
	background: rgba(184, 134, 11, 0.1);
}
