/* ========================================
	Footer
	======================================== */
.site-footer {
	background: var(--primary-color);
	padding: 60px 0 0;
}

.footer-sponsors {
	padding-bottom: 35px;
	margin-bottom: 40px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-sponsors-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-sponsors-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 24px;
}

.footer-sponsor {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	border-radius: 10px;
	background: rgba(255,255,255,0.06);
	transition: var(--transition);
}

.footer-sponsor:hover {
	background: rgba(255,255,255,0.14);
	transform: translateY(-2px);
}

.footer-sponsor img {
	max-height: 63px;
	width: auto;
	display: block;
	opacity: 0.9;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 60px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
	max-width: 350px;
}

.footer-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 15px;
}

.footer-description {
	color: rgba(255,255,255,0.7);
	line-height: 1.7;
	margin: 0;
}

.footer-navigation h4,
.footer-contact h4 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

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

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

.footer-navigation a {
	color: rgba(255,255,255,0.7);
	font-size: 0.95rem;
	transition: var(--transition);
}

.footer-navigation a:hover {
	color: var(--secondary-color);
	padding-left: 5px;
}

.footer-contact p {
	color: rgba(255,255,255,0.7);
	line-height: 1.8;
	margin: 0;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 0;
}

.footer-copyright {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.footer-copyright p {
	color: rgba(255,255,255,0.5);
	font-size: 0.85rem;
	margin: 0;
}

.footer-disclaimer {
	font-size: 0.75rem !important;
	font-style: italic;
}

.footer-bottom p {
	color: rgba(255,255,255,0.5);
	font-size: 0.85rem;
	margin: 0;
}

.footer-social {
	display: flex;
	gap: 15px;
}

.footer-social a {
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	transition: var(--transition);
}

.footer-social a:hover {
	background: var(--secondary-color);
	transform: translateY(-3px);
}
