.footer {
	background: #002e5f;
	color: #fff;
}

.footer .footer-top {
	background: #002e5f;
	padding: 60px 0 30px;
	color: #fff;
}

.footer h4 {
	font-size: 1.8rem;
	color: #fff;
	border-bottom: 2px solid rgba(255, 255, 255, 0.25);
	padding-bottom: 1rem;
	margin-bottom: 2rem;
}

.footer .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer .footer-links ul li {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	padding: 0.7rem 0;
	font-size: 1.4rem;
}

.footer .footer-links ul li i {
	color: #fff;
	margin-top: 0.25rem;
	flex: 0 0 auto;
}

.footer .footer-links a {
	flex: 1;
	min-width: 0;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer .footer-links a:hover {
	color: #00bfff;
}

.footer .footer-contact p {
	margin: 0;
	font-size: 1.4rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
}

.footer .footer-contact strong {
	color: #fff;
	margin-right: 0.4rem;
}

.footer .social-links {
	margin-top: 1.6rem;
	display: flex;
	gap: 0.9rem;
}

.footer .social-links a {
	width: 3.6rem;
	height: 3.6rem;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: rgba(255, 255, 255, 0.12);
	transition: all 0.2s ease;
}

.footer .social-links a:hover {
	background: #00bfff;
	transform: translateY(-2px);
	text-decoration: none;
}

.footer .footer-newsletter p {
	font-size: 1.4rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.92);
}

.footer .footer-newsletter form {
	display: flex;
	gap: 0.8rem;
	flex-wrap: wrap;
}

.footer .footer-newsletter input[type="email"] {
	flex: 1 1 180px;
	border: 1px solid #ffffff;
	border-radius: 0.8rem;
	padding: 1rem 1.2rem;
	font-size: 1.35rem;
	outline: none;
	width: auto;
	color: #ffffff;
	background: transparent;
}

.footer .footer-newsletter input[type="submit"] {
	border: 1px solid #ffffff;
	border-radius: 0.55rem;
	padding: 0.6rem 0.95rem;
	background: #ffffff;
	color: #002e5f;
	font-size: 1.15rem;
	font-weight: 700;
	cursor: pointer;
	transition: 0.3s;
	width: auto;
	line-height: 1;
}

.footer .footer-newsletter input[type="submit"]:hover {
	color: #ffffff;
	background: #00bfff;
	border: 1px solid #00bfff;
	letter-spacing: 0.2rem;
}

.footer .footer-bottom {
	background: #333;
	color: #fff;
}

/* Backward compatibility for pages that still use .footer > .container for copyright */
.footer > .container {
	max-width: 100%;
	background: #333;
	padding-left: 0;
	padding-right: 0;
}

.footer > .container .row {
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
}

.footer .footer-bottom p,
.footer .copyright {
	margin: 0;
	color: #fff;
	font-size: 1.4rem;
	padding: 20px 0;
}

@media (max-width: 991px) {
	.footer .footer-top {
		padding: 45px 0 20px;
	}

	.footer .footer-links,
	.footer .footer-contact,
	.footer .footer-newsletter {
		margin-bottom: 2.4rem;
	}
}

@media (max-width: 575px) {
	.footer .footer-newsletter form {
		flex-wrap: nowrap;
		gap: 0.6rem;
	}

	.footer .footer-newsletter input[type="email"] {
		flex: 1 1 auto;
		min-width: 0;
		padding: 0.9rem 1rem;
		font-size: 1.2rem;
	}

	.footer .footer-newsletter input[type="submit"] {
		flex: 0 0 42%;
		padding: 0.9rem 0.8rem;
		font-size: 1.1rem;
	}
}
