/* ===== SECTION: Footer - Start ===== */
footer {
	position: relative;
	width: 100%;
	padding: 60px 0 20px;
	overflow: hidden;
}

/* Footer Content */
footer .footer-content {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 4fr);
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer .footer-col {
	display: block;
	width: 100%;
	min-width: 0;
}

/* Footer Brand */
footer .footer-logo {
	display: inline-block;
	margin-bottom: 20px;
}

footer .footer-logo .logo {
	display: block;
}

footer .footer-description {
	color: rgba(255, 255, 255, 0.7);
	width: 100%;
	max-width: 340px;
	line-height: 22px;
}

/* Section headers */
footer .h3 {
	margin-bottom: 20px;
}

/* Footer Menu */
footer .footer-menu {
	display: flex;
	flex-direction: column;
	gap: 12px;
	list-style: none;
	padding: 0;
	margin: 0;
}

footer .footer-menu li a {
	color: rgba(255, 255, 255, 0.7);
	transition: color 0.3s ease;
}

footer .footer-menu li a:hover {
	color: var(--white);
}

/* Footer Social */
footer .footer-social-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

footer .footer-social-link {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: rgba(255, 255, 255, 0.85);
	transition: color 0.3s ease;
}

footer .footer-social-link:hover {
	color: var(--white);
}

footer .footer-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--primary);
	border-radius: var(--radius-max);
	flex-shrink: 0;
	transition: background 0.3s ease;
}

footer .footer-social-link:hover .footer-social-icon {
	background: var(--primary-hover);
}

footer .footer-social-icon .icon {
	width: 20px;
	height: 20px;
	filter: brightness(0) invert(1);
}

footer .footer-social-label {
	font-size: 15px;
	line-height: 18px;
	font-weight: 500;
}

/* Footer Bottom */
footer .footer-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 25px;
}

footer .copyright-text {
	color: rgba(255, 255, 255, 0.55);
	font-size: 13px;
}

/* Adaptive 1279px */
@media (max-width: 1279px) {
	footer {
		padding: 50px 0 20px;
	}

	footer .footer-content {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 30px;
		padding-bottom: 30px;
	}

	footer .footer-col,
	footer .footer-col-nav,
	footer .footer-col-social {
		grid-column: auto !important;
	}

	footer .footer-col-brand {
		grid-column: 1 / -1 !important;
	}

	footer .footer-logo {
		margin-bottom: 15px;
	}

	footer .h3 {
		margin-bottom: 15px;
	}
}

@media (max-width: 768px) {
	footer {
		padding: 40px 0 20px;
	}

	footer .footer-content {
		grid-template-columns: minmax(0, 1fr);
		gap: 25px;
	}

	footer .footer-col,
	footer .footer-col-brand,
	footer .footer-col-nav,
	footer .footer-col-social {
		grid-column: 1 / -1 !important;
	}

	footer .footer-description {
		max-width: 100%;
	}

	footer .footer-bottom {
		justify-content: flex-start;
		padding-top: 20px;
	}
}

/* ===== SECTION: Footer - End ===== */
