/* ==========================================================================
   Footer Design - Matching Site Style
   ========================================================================== */

.site-footer-outer {
	position: relative;
	background: linear-gradient(135deg, rgba(30, 25, 39, 0.95), rgba(24, 19, 33, 0.98));
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 50px;
	padding: 50px 0 30px;
	overflow: hidden;
}

.site-footer-gradient {
	position: absolute;
	top: -50px;
	left: 0;
	right: 0;
	height: 100px;
	background: radial-gradient(ellipse at top, rgba(255, 0, 115, 0.1), transparent 70%);
	pointer-events: none;
	filter: blur(20px);
}

.site-footer {
	position: relative;
	display: grid;
	gap: 40px;
	text-align: center;
}

/* Logo Section */
.site-footer-logo-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.site-footer-logo {
	display: inline-block;
	transition: all 0.3s ease;
}

.site-footer-logo img {
	max-height: 50px;
	width: auto;
	filter: brightness(1);
	transition: all 0.3s ease;
}

.site-footer-logo:hover img {
	filter: brightness(1.2);
	transform: translateY(-2px);
}

.site-footer-logo-text {
	font-size: 28px;
	font-weight: 700;
	color: #fff;
}

.site-footer-tagline {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	margin: 0;
	max-width: 400px;
}

/* Menu Section */
.site-footer-menu-section {
	padding: 30px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer-menu a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	padding: 4px 0;
}

.site-footer-menu a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: rgba(255, 0, 115, 0.8);
	transition: width 0.3s ease;
}

.site-footer-menu a:hover {
	color: #ff9efd;
}

.site-footer-menu a:hover::after {
	width: 100%;
}

/* Dropdown menus in footer */
.site-footer-menu .dropdown-toggle {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}

.site-footer-menu .dropdown-menu {
	background: linear-gradient(135deg, rgba(30, 25, 39, 0.95), rgba(24, 19, 33, 0.98));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 8px 0;
	margin-top: 8px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.site-footer-menu .dropdown-menu a {
	padding: 8px 16px;
	display: block;
	font-size: 14px;
}

.site-footer-menu .dropdown-menu a::after {
	display: none;
}

/* Copyright Section */
.site-footer-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding-top: 20px;
}

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

.site-footer-copyright p {
	margin: 0;
	letter-spacing: 0.5px;
}


/* Responsive Design */
@media (min-width: 768px) {
	.site-footer-outer {
		padding: 70px 0 40px;
		margin-top: 80px;
	}

	.site-footer {
		gap: 50px;
	}

	.site-footer-logo img {
		max-height: 60px;
	}

	.site-footer-logo-text {
		font-size: 32px;
	}

	.site-footer-tagline {
		font-size: 15px;
	}

	.site-footer-menu ul {
		gap: 30px;
	}

	.site-footer-menu a {
		font-size: 16px;
	}

	.site-footer-bottom {
		flex-direction: row;
		justify-content: space-between;
		padding-top: 30px;
	}

	.site-footer-copyright {
		font-size: 14px;
	}
}

@media (min-width: 1024px) {
	.site-footer-outer {
		padding: 90px 0 50px;
		margin-top: 100px;
	}

	.site-footer {
		gap: 60px;
	}

	.site-footer-logo img {
		max-height: 70px;
	}

	.site-footer-menu ul {
		gap: 40px;
	}
}
