/* ============================================================
   PREMIUM MODERN FOOTER (THEME COLORS)
   ============================================================ */
.wl-site-footer {
	background-color: #030712; /* Deep modern black/blue */
	color: #9ca3af;
	padding: 5rem 0 2rem;
	margin-top: 5rem;
	position: relative;
	overflow: hidden;
}

/* Glowing Top Border */
.wl-site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, #2563eb 50%, transparent 100%);
	opacity: 0.8;
	box-shadow: 0 0 20px 2px rgba(37, 99, 235, 0.4);
}

/* Faded Grid Pattern */
.wl-site-footer::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 40px 40px;
	background-position: center center;
	mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
	-webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
	pointer-events: none;
	z-index: 0;
}

/* Footer Widget Grid */
.wl-footer-widgets {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 2fr;
	gap: 3rem;
	margin-bottom: 4rem;
	position: relative;
	z-index: 1;
}

@media (max-width: 992px) {
	.wl-footer-widgets {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem;
	}
}

@media (max-width: 576px) {
	.wl-footer-widgets {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

/* Widget Titles */
.wl-footer-widget-title,
.wl-footer-subheading {
	color: #f8fafc;
	font-size: 1.05rem;
	margin-bottom: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	position: relative;
	display: inline-block;
}

.wl-footer-widget-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -6px;
	height: 2px;
	width: 25px;
	background: #2563eb;
	border-radius: 2px;
	transition: width 0.3s ease;
}

.wl-footer-widget:hover .wl-footer-widget-title::after {
	width: 45px;
}

.wl-footer-subheading {
	margin-top: 2.5rem;
}

/* Widget Content Lists */
.wl-footer-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

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

.wl-footer-widget a {
	color: #9ca3af;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 0.95rem;
	position: relative;
	display: inline-flex;
	align-items: center;
	padding-left: 1.25rem; /* Space for the bullet point */
}

.wl-footer-widget a:hover {
	color: #ffffff;
	transform: translateX(4px);
}

/* Glowing Point/Icon */
.wl-footer-widget ul li a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #2563eb;
	box-shadow: 0 0 8px #2563eb;
	transition: all 0.3s ease;
}

.wl-footer-widget ul li a:hover::before {
	background-color: #ffffff;
	box-shadow: 0 0 10px #ffffff;
}

/* Hover Underline */
.wl-footer-widget ul li a::after {
	content: '';
	display: block;
	width: 0;
	height: 2px;
	background: #2563eb;
	position: absolute;
	bottom: -4px;
	left: 1.25rem;
	transition: width 0.3s ease;
}

.wl-footer-widget ul li a:hover::after {
	width: calc(100% - 1.25rem);
}

/* Brand Section Styling */
.wl-footer-logo {
	color: #ffffff;
	font-size: 1.75rem;
	margin-bottom: 0.5rem;
	font-weight: 800;
	letter-spacing: -0.5px;
}

.wl-footer-tagline {
	font-size: 0.9rem;
	color: #6b7280;
	margin-bottom: 1.5rem;
}

.wl-footer-widget p {
	font-size: 0.95rem;
	line-height: 1.7;
	color: #9ca3af;
}

/* Contact Info */
.wl-footer-contact p {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.wl-footer-contact svg {
	color: #2563eb;
}

/* Subscribe Form */
.wl-footer-subscribe {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.wl-subscribe-input-wrap {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	padding: 0.5rem 1rem;
	transition: all 0.3s ease;
}

.wl-subscribe-input-wrap:focus-within {
	border-color: #2563eb;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.wl-subscribe-input-wrap svg {
	color: #9ca3af;
	margin-right: 0.75rem;
}

.wl-subscribe-input-wrap input {
	border: none;
	background: transparent;
	color: #ffffff;
	font-size: 0.95rem;
	width: 100%;
	outline: none;
}

.wl-subscribe-input-wrap input::placeholder {
	color: #6b7280;
}

.wl-subscribe-btn {
	background: #2563eb;
	color: #ffffff;
	border: none;
	padding: 0.75rem 1.75rem;
	font-size: 0.9rem;
	font-weight: 700;
	border-radius: 6px;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	align-self: flex-start;
	box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.wl-subscribe-btn:hover {
	background: #1d4ed8;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

/* Footer Bottom Bar (Copyright & Social) */
.wl-site-info {
	border-top: 1px solid #222;
	padding-top: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	position: relative;
}

/* Social Icons - Glassmorphism */
.wl-social-icons {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
}

.wl-social-icons a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: #9ca3af;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	backdrop-filter: blur(4px);
}

.wl-social-icons a:hover {
	transform: translateY(-4px) scale(1.05);
	color: #ffffff;
}

/* Brand specific hover colors */
.wl-social-icons a.wl-social-fb:hover { 
	background-color: #1877F2; 
	border-color: #1877F2;
	box-shadow: 0 8px 15px rgba(24, 119, 242, 0.3); 
}
.wl-social-icons a.wl-social-tw:hover { 
	background-color: #1DA1F2; 
	border-color: #1DA1F2;
	box-shadow: 0 8px 15px rgba(29, 161, 242, 0.3); 
}
.wl-social-icons a.wl-social-ig:hover { 
	background-color: #E1306C; 
	border-color: #E1306C;
	box-shadow: 0 8px 15px rgba(225, 48, 108, 0.3); 
}
.wl-social-icons a.wl-social-yt:hover { 
	background-color: #FF0000; 
	border-color: #FF0000;
	box-shadow: 0 8px 15px rgba(255, 0, 0, 0.3); 
}
.wl-social-icons a.wl-social-tg:hover { 
	background-color: #0088cc; 
	border-color: #0088cc;
	box-shadow: 0 8px 15px rgba(0, 136, 204, 0.3); 
}
.wl-social-icons a.wl-social-wa:hover { 
	background-color: #25D366; 
	border-color: #25D366;
	box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3); 
}

.wl-social-icons svg {
	width: 18px;
	height: 18px;
}

.wl-copyright {
	font-size: 0.85rem;
	color: #777;
	position: absolute;
	right: 0;
	bottom: 0;
}

@media (max-width: 768px) {
	.wl-site-info {
		align-items: center;
	}
	.wl-copyright {
		position: static;
		margin-top: 1rem;
	}
}
