/* Modern footer */
.nh-footer {
	--nh-orange: #F46E2E;
	--nh-grad: linear-gradient(105deg, #f45e33 0%, #f79823 100%);
	--nh-navy: #050748;
	--nh-ease: cubic-bezier(0.22, 1, 0.36, 1);
	background: #04052e;
	padding: 56px 0 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.nh-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 36px 28px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nh-footer__logo {
	display: inline-block;
	margin-bottom: 18px;
	max-width: 180px;
}

.nh-footer__logo img {
	width: 100%;
	height: auto;
	display: block;
}

.nh-footer__logo-invert {
	filter: brightness(0) invert(1);
}

.nh-footer__brand p {
	margin: 0 0 22px;
	font-size: 15px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.62);
	max-width: 320px;
}

.nh-footer__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	color: #fff !important;
	text-decoration: none !important;
	background: var(--nh-grad);
	box-shadow: 0 10px 24px rgba(244, 94, 51, 0.28);
	transition: transform 0.3s var(--nh-ease), box-shadow 0.3s ease;
}

.nh-footer__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(244, 94, 51, 0.38);
	color: #fff !important;
}

.nh-footer__col h5 {
	margin: 0 0 18px;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
}

.nh-footer__col ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nh-footer__col li {
	margin: 0 0 10px;
}

.nh-footer__col li:last-child {
	margin-bottom: 0;
}

.nh-footer__col a {
	font-size: 14px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.62);
	text-decoration: none;
	transition: color 0.25s ease, padding-left 0.25s var(--nh-ease);
}

.nh-footer__col a:hover {
	color: #f9a950;
	padding-left: 4px;
}

.nh-footer__bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 24px;
}

.nh-footer__copy {
	margin: 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
}

.nh-footer__copy a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.25s ease;
}

.nh-footer__copy a:hover {
	color: #f9a950;
}

.nh-footer__social {
	display: flex;
	align-items: center;
	gap: 10px;
}

.nh-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.75);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	text-decoration: none;
	transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--nh-ease), border-color 0.3s ease;
}

.nh-footer__social a:hover {
	color: #fff;
	background: var(--nh-grad);
	border-color: transparent;
	transform: translateY(-2px);
}

@media (max-width: 991px) {
	.nh-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px 24px;
	}

	.nh-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 767px) {
	.nh-footer {
		padding: 44px 0 24px;
	}

	.nh-footer__grid {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-bottom: 32px;
	}

	.nh-footer__brand p {
		max-width: none;
	}

	.nh-footer__bar {
		flex-direction: column;
		text-align: center;
	}

	.nh-footer__social {
		justify-content: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nh-footer__cta,
	.nh-footer__col a,
	.nh-footer__social a {
		transition: none !important;
	}
}
