.footer {
	overflow: hidden;
	position: relative;
	padding: 60px 0 30px;
	color: white; text-align: center;
	background-color: #111827;
	background-image: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, #667eea, #764ba2, transparent);
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-top {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}
.footer-middle {
	max-width: 500px;
	margin: 0 auto 40px;
}

.footer-brand {
	background: #fff;
	margin: 0 0 20px;
}

.footer-logo {
	height: auto;
	width: 250px;
}

.footer-description {
	color: #b0b9d1;
	line-height: 1.6;
	margin-bottom: 25px;
	font-size: 14px;
}

.footer-column h3 {
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 20px;
	
	color: #ffffff; font-weight: 600;
	font-size: 18px; line-height: 1;
}

.footer-column h3::after {
	content: '';
	position: absolute;
	height: 2px; width: 100px;
	bottom: 0px; left: calc(50% - 50px); 

	border-radius: 1px;
	background: linear-gradient(90deg, #667eea, #764ba2);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: #b0b9d1;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
	position: relative;
}

.footer-links a:hover {
	color: #667eea;
	transform: translateX(5px);
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
	align-items: center;
	justify-content: center;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: #b0b9d1;
	text-decoration: none;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.social-link:hover {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.newsletter {
	background: rgba(255, 255, 255, 0.05);
	padding: 25px;
	border-radius: 12px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter h4 {
	color: #ffffff;
	font-size: 16px;
	margin-bottom: 15px;
}

.newsletter-form {
	display: flex;
	gap: 10px;
	margin-top: 15px;
}

.newsletter-input {
	flex: 1;
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	font-size: 14px;
}

.newsletter-input::placeholder {
	color: #b0b9d1;
}

.newsletter-input:focus {
	outline: none;
	border-color: #667eea;
	background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
	padding: 12px 20px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.newsletter-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.copyright {
	color: #b0b9d1;
	font-size: 14px;
}

.footer-bottom-links {
	display: flex;
	gap: 30px;
	list-style: none;
}

.footer-bottom-links a {
	color: #b0b9d1;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
	color: #667eea;
}

@media (max-width: 768px) {
	.footer-top,
	.footer-middle {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.footer-brand {
		grid-column: 1;
		text-align: center;
	}

	.newsletter-form {
		flex-direction: column;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.footer-bottom-links {
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px;
	}
}