/* Footer Component Styles */

/* Container */
.container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 5rem;
}

/* Footer */
.footer {
	background: #232323;
	color: white;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
}

@media screen and (max-width: 1180px) {
	.footer {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
}

.footer-content {
	color: #676767;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 3rem;
	margin-bottom: 2rem;
}

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

.footer-logo {
	display: flex;
	align-items: center;
	margin-bottom: 24px;
	font-size: 1.5rem;
	font-weight: 600;
}

.footer-logo a {
	line-height: 1;
}

.footer-logo img {
	height: 60px;
	width: auto;
	margin-right: 0.5rem;
}

.footer-description {
	font-size: 14px;
	line-height: 23px;
	margin-bottom: 2rem;
}

.footer-language-select {
	margin-bottom: 2rem;
	padding: 0.6rem 1.25rem;
	background: transparent;
	border: 0.7px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	font-weight: 800;
	color: #ffffff;
	display: flex;
	align-items: center;
	gap: 5px;
	min-height: 45px;
}

.footer-language-select select {
	background: transparent;
	color: white;
	border: none;
	font-size: 13px;
	font-weight: 800;
}

.footer-language-select select:focus-visible {
	outline: none;
}

.social-links {
	display: flex;
	gap: 12px;
}

.social-link:hover svg {
	background: #555;
	border-radius: 50%;
}

.footer-column h4 {
	color: white;
	font-size: 18px;
	line-height: 1.4;
	font-weight: 600;
	margin-bottom: 20px;
}

@media screen and (max-width: 480px) {
	.footer-column h4 {
		margin-bottom: 16px;
		font-size: 14px;
	}
}

.footer-column h5 {
	color: white;
	opacity: 56%;
	font-size: 16px;
	line-height: 1.3;
	font-weight: 600;
	margin-bottom: 10px;
}

@media screen and (max-width: 480px) {
	.footer-column h5 {
		font-size: 14px;
	}
}

.footer-column ul {
	list-style: none;
	margin-bottom: 24px;
}

.footer-column ul li {
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.3;
}

@media screen and (max-width: 480px) {
	.footer-column ul li {
		margin-bottom: 18px;
		font-size: 14px;
	}
}

.footer-column ul li a {
	color: #777777;
	text-decoration: none;
	font-size: 16px;
}

@media screen and (max-width: 480px) {
	.footer-column ul li a {
		font-size: 14px;
	}
}

.footer-column ul li a:hover {
	color: white;
}

.contact-location,
.contact-details {
	margin-bottom: 1.5rem;
}

.contact-location p,
.contact-location a,
.contact-details p,
.contact-details a {
	font-size: 16px;
	line-height: 1.6;
}

@media screen and (max-width: 480px) {
	.contact-location p,
	.contact-location a,
	.contact-details p,
	.contact-details a {
		font-size: 14px;
	}
}

.footer-bottom {
	color: #777777;
	font-size: 16px;
	line-height: 1.3;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 2rem 0;
}

@media screen and (max-width: 480px) {
	.footer-bottom {
		font-size: 14px;
		line-height: 1.4;
	}
	.footer-bottom p,
	.footer-bottom a {
		font-size: 14px;
		line-height: 1.4;
	}
}

.footer-legal {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.footer-legal a {
	color: #777777;
	text-decoration: none;
}

.footer-legal a:hover {
	color: white;
}

.footer-powered span {
	font-weight: 700;
}

hr {
	border: none;
	height: 2px;
	background-color: #2f2f2f;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.footer-legal {
		justify-content: center;
	}

	.container {
		padding: 0 2rem;
	}
}
