#footer{
	display: block;
	bottom: 0;
	left:0;
	width: 100%;
	min-height: 200px;
	padding: 40px 0px 20px 0px;
	background-color: #060606;
	color:var(--text-color);
	font-size: 0.95em;
}

#footer hr{
	clear:both;
	opacity:0.4;
}

#footer .hp_container{
	margin-top:0px !important;
	position: relative;
	min-height: 180px;
}

/* Footer links container */
#footer_links_container{
	display: flex;
	justify-content: center;
	gap: 60px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

/* Footer columns */
.footer_col{
	vertical-align: top;
	display: inline-block;
	min-width: 140px;
	text-align: left;
	line-height: 1.8;
}

.footer_col_title{
	font-weight: bold;
	color: rgba(255,255,255,0.9);
	font-size: 1.1em;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer_col a{
	color: rgba(255,255,255,0.5);
	text-decoration: none;
	display: inline-block;
	transition: all 0.2s ease;
	font-size: 0.95em;
}

.footer_col a:hover{
	color: var(--accent-color);
	padding-left: 5px;
}

/* Footer bottom bar */
#footer_bottom_bar{
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.1);
	margin-top: 20px;
}

#footer_bottom_left{
	color: rgba(255,255,255,0.3);
	font-size: 0.9em;
}

/* Language selector styling */
#footer_language_selector{
	display: flex;
	align-items: center;
	gap: 8px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

#footer_language_selector label{
	color: rgba(255,255,255,0.5);
	font-size: 1.2em;
}

#footer_language_select{
	background-color: #1a1a1a;
	color: #b0b0b0;
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 6px;
	padding: 8px 32px 8px 12px;
	font-size: 0.9em;
	cursor: pointer;
	outline: none;
	transition: all 0.3s ease;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"%3E%3Cpath fill="%23b0b0b0" d="M6 8L0 0h12z"/%3E%3C/svg%3E');
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 10px;
}

#footer_language_select:hover{
	background-color: #252525;
	border-color: rgba(255,255,255,0.25);
	color: #d0d0d0;
}

#footer_language_select:focus{
	border-color: var(--accent-color);
	box-shadow: 0 0 0 2px rgba(255,255,255,0.1);
}

#footer_language_select option{
	background-color: #1a1a1a;
	color: #b0b0b0;
	padding: 8px;
}

/* Social icons */
#footer_bottom_right{
	display: flex;
	align-items: center;
}

.footerIcons{
	display: flex;
	gap: 15px;
}

#footer_bottom_right a{
	color: rgba(255,255,255,0.4);
	font-size: 1.5em;
	text-decoration: none;
	transition: all 0.2s ease;
}

#footer_bottom_right a:hover{
	color: var(--accent-color);
	transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 768px) {
	#footer_links_container{
		gap: 30px;
		margin-bottom: 30px;
	}

	.footer_col{
		min-width: 120px;
	}

	#footer_bottom_bar{
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	#footer_language_selector{
		position: static;
		transform: none;
	}

	#footer_bottom_left,
	#footer_bottom_right{
		position: static;
	}
}
