/* Footer Structure */
.wl-site-footer {
	background-color: var(--wl-color-primary);
	color: var(--wl-color-muted);
	padding: 5rem 0 2rem;
	margin-top: 5rem;
	position: relative;
}

.wl-site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(to right, var(--wl-color-blue), var(--wl-color-accent));
}

/* Footer Widget Grid */
.wl-footer-widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 3rem;
	margin-bottom: 4rem;
}

.wl-footer-widget-title {
	color: var(--wl-color-white);
	font-size: 1.15rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.wl-footer-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.wl-footer-widget li {
	margin-bottom: 0.75rem;
}

.wl-footer-widget a {
	color: var(--wl-color-muted);
	text-decoration: none;
	transition: color 0.3s, transform 0.3s;
	display: inline-block;
}

.wl-footer-widget a:hover {
	color: var(--wl-color-white);
	transform: translateX(5px);
}

.wl-footer-brand p {
	font-size: 0.95rem;
	line-height: 1.7;
	margin-top: 1rem;
	color: var(--wl-color-muted);
}

/* Footer Bottom Bar */
.wl-site-info {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 2rem;
	font-size: 0.9rem;
	color: var(--wl-color-muted);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}

/* Social Icons */
.wl-social-icons {
	display: flex;
	gap: 1rem;
}

.wl-social-icons a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	color: var(--wl-color-white);
	transition: background-color 0.3s, transform 0.3s;
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 600;
}

.wl-social-icons a:hover {
	background-color: var(--wl-color-blue);
	transform: translateY(-3px);
	color: var(--wl-color-white);
}
