.site-footer 
{
	background-color: var(--dark-bg);
	color: var(--s99-platinum);
	padding: 3rem 0 1rem;
	font-size: 0.9rem;
	line-height: 1.6;
	z-index: 2000;
}

.footer-container 
{
	max-width: var(--footer-container-max-width);
	margin: 0 auto; 
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 2rem; 
	padding: 0 1rem; 
}

.footer-company h3 
{
	font-size: 1.5rem; 
	margin-bottom: 1rem; 
	color: var(--s99-platinum); 
	display: flex;
	flex-wrap: nowrap;
	white-space: nowrap;
    text-shadow: 0 0 15px;
}

.footer-logo 
{
	margin-top: 1.5rem;
}

.footer-logo img 
{
	max-width: 120px;
	height: auto;
	display: block;
}

.footer-nav h4,
.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 
{
	color: var(--s99-platinum); 
	font-size: 1.1rem; 
	margin-bottom: 1rem; 
	padding-bottom: 0.5rem; 
	border-bottom: 1px solid #2424241a;
}

.footer-nav ul,
.footer-links ul 
{
	list-style: none;
	padding: 0;
	margin: 0; 
}

.footer-nav li,
.footer-links li 
{
	margin-bottom: 0.5rem;
}

.footer-nav a,
.footer-links a,
.footer-contact a 
{
	color: var(--s99-platinum); 
	text-decoration: none;
	transition: color 0.3s ease; 
}

.footer-nav a:hover,
.footer-links a:hover,
.footer-contact a:hover
{
    color: #B8C2D3;  
    border: 3px solid transparent;
    padding: 7.5px;
    border-radius: 5px;
    text-decoration: none;
	box-shadow: 0 0px 10px #00D4FF;
	text-shadow:0 0px 30px #00D4FF;
}

.footer-contact address 
{
	font-style: normal;
	margin-bottom: 1rem; 
}

.social-links 
{
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
	font-size: 2rem;
}

.social-links a 
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #2424241a;
	color: var(--s99-platinum); 
	transition: all 0.3s ease;
	text-decoration: none;
	
}

.social-links a:hover 
{
	background-color: #24242433;
	transform: translateY(-2px);
	box-shadow: 0 0px 20px #00D4FF;
}

.footer-bottom 
{
	margin-top: 1rem; 
	text-align: center;  
	padding-top: 1rem; 
	border-top: 1px solid var(--s99-platinum);
	font-size: 0.8rem; 
	color: var(--s99-tech-glow); 
}

@media (max-width: 768px) 
{
	.footer-container 
	{
		grid-template-columns: repeat(2, 1fr);
	}
	
	.footer-company 
	{
		grid-column: span 2; 
	}
}

@media (max-width: 480px) 
{
	.footer-container 
	{
		grid-template-columns: 1fr;
	}
	
	.footer-company 
	{
		grid-column: span 1;
	}
}