﻿/**
 * Neoteric â€” modern UI tweaks (layout & UX only; theme colors unchanged)
 */

html {
	scroll-behavior: smooth;
}

body.nps-site {
	scroll-padding-top: 90px;
}

/* Accessibility */
.skip-link {
	position: absolute;
	top: -48px;
	left: 16px;
	z-index: 99999;
	padding: 10px 18px;
	background: #111;
	color: #fff;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: top 0.2s ease;
}

.skip-link:focus {
	top: 16px;
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

:focus-visible {
	outline: 2px solid #333;
	outline-offset: 2px;
}

/* Hide demo color switcher */
.color-switcher,
.color-palate {
	display: none !important;
}

/* Trust bar / scrolling ticker */
.trust-bar,
.nps-ticker {
	background: #0a0f1a;
	border-bottom: none;
	padding: 0;
	box-shadow: none;
	overflow: hidden;
	position: relative;
}

.nps-ticker__track {
	display: flex;
	width: max-content;
	animation: nps-ticker-scroll 32s linear infinite;
}

.nps-ticker:hover .nps-ticker__track {
	animation-play-state: paused;
}

.nps-ticker__list {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 16px 0;
	white-space: nowrap;
}

.nps-ticker__list li {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 0 36px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.88);
	position: relative;
}

.nps-ticker__list li::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-radius: 50%;
	background: #2ECC40;
	opacity: 0.85;
}

.nps-ticker__list li span[class^="flaticon"],
.nps-ticker__list li .fa {
	font-size: 20px;
	color: #2ECC40;
	opacity: 1;
}

@keyframes nps-ticker-scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.nps-ticker__track {
		animation: none;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
	}

	.nps-ticker__list[aria-hidden="true"] {
		display: none;
	}

	.nps-ticker__list {
		flex-wrap: wrap;
		justify-content: center;
		white-space: normal;
		padding: 12px 16px;
	}
}

/* Mid-page CTA */
.nps-mid-cta {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
	isolation: isolate;
}

.nps-mid-cta__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.04);
	z-index: 0;
}

.nps-mid-cta__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(10, 15, 26, 0.92) 0%, rgba(20, 29, 51, 0.82) 55%, rgba(10, 15, 26, 0.75) 100%);
	z-index: 1;
}

.nps-mid-cta__inner {
	position: relative;
	z-index: 2;
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.nps-mid-cta__eyebrow {
	margin: 0 0 14px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #b8f0c0;
}

.nps-mid-cta__title {
	margin: 0 0 18px;
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
}

.nps-mid-cta__text {
	margin: 0 auto 32px;
	max-width: 560px;
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.82);
}

.nps-mid-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 14px;
}

.nps-mid-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 14px 28px;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.nps-mid-cta__btn--primary {
	background: linear-gradient(135deg, #2ECC40 0%, #27ae38 100%);
	color: #0a0f1a !important;
	box-shadow: 0 10px 28px rgba(46, 204, 64, 0.35);
}

.nps-mid-cta__btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 36px rgba(46, 204, 64, 0.45);
	color: #0a0f1a !important;
}

.nps-mid-cta__btn--ghost {
	background: transparent;
	color: #fff !important;
	border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.nps-mid-cta__btn--ghost:hover {
	border-color: #2ECC40;
	color: #b8f0c0 !important;
	background: rgba(46, 204, 64, 0.1);
}

@media (max-width: 575px) {
	.nps-mid-cta {
		padding: 72px 0;
	}

	.nps-mid-cta__btn {
		width: 100%;
	}
}

/* About image polish */
.nps-site .about-us .image-column .image-box {
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 16px 40px rgba(10, 15, 26, 0.12);
}

.nps-site .about-us .image-column .image-box img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.nps-site .about-us .image-column .image-box:hover img {
	transform: scale(1.04);
}

/* Section polish */
.nps-site .sec-title {
	margin-bottom: 48px;
}

.nps-site .sec-title h2 {
	letter-spacing: -0.02em;
}

.nps-site .gallery-item .image-box,
.nps-site .service-block .inner-box,
.nps-site .team-block .inner-box {
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.nps-site .gallery-item .image-box:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* ============================================================
   TILE GALLERY (bento grid)
   ============================================================ */

.nps-tile-gallery {
	padding: 90px 0 100px;
	background: #f4f6fa;
}

.nps-tile-gallery .sec-title {
	margin-bottom: 40px;
}

.nps-tile-gallery__intro {
	margin: 16px auto 0;
	max-width: 520px;
	font-size: 16px;
	line-height: 1.6;
	color: #64748b;
}

.nps-tiles {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: minmax(220px, 24vw);
	grid-auto-flow: dense;
	gap: 12px;
}

.nps-tile {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 16px;
	text-decoration: none !important;
	box-shadow: 0 8px 28px rgba(10, 15, 26, 0.08);
	background: #0a0f1a;
	min-height: 0;
}

.nps-tile--wide {
	grid-column: span 2;
}

.nps-tile img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.7s ease;
}

.nps-tile__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 22px 24px;
	background: linear-gradient(to top, rgba(10, 15, 26, 0.92) 0%, rgba(10, 15, 26, 0.35) 45%, transparent 72%);
	opacity: 0.92;
	transition: opacity 0.35s ease;
}

.nps-tile__label {
	display: inline-block;
	margin-bottom: 6px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #b8f0c0;
}

.nps-tile__title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(18px, 1.8vw, 24px);
	font-weight: 600;
	line-height: 1.25;
	color: #fff;
}

.nps-tile:hover img {
	transform: scale(1.08);
}

.nps-tile:hover .nps-tile__overlay {
	opacity: 1;
	background: linear-gradient(to top, rgba(10, 15, 26, 0.95) 0%, rgba(10, 15, 26, 0.45) 50%, rgba(10, 15, 26, 0.15) 100%);
}

.nps-tile-gallery__more {
	margin-top: 40px;
	text-align: center;
}

@media (max-width: 991px) {
	.nps-tiles {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: minmax(200px, 40vw);
	}

	.nps-tile--wide {
		grid-column: span 2;
	}
}

@media (max-width: 575px) {
	.nps-tiles {
		grid-template-columns: 1fr;
		grid-auto-rows: 240px;
		gap: 10px;
	}

	.nps-tile--wide {
		grid-column: span 1;
	}

	.nps-tile-gallery {
		padding: 70px 0 80px;
	}
}

.nps-site .accordion-box .block {
	border-radius: 10px;
	margin-bottom: 10px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.nps-site .contact-form input,
.nps-site .contact-form textarea {
	border-radius: 8px !important;
	transition: box-shadow 0.25s ease;
}

.nps-site .contact-form input:focus,
.nps-site .contact-form textarea:focus {
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

/* Footer */
.nps-site .footer-bottom-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 24px;
}

.nps-site .footer-legal-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nps-site .footer-legal-links a {
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	opacity: 0.85;
	transition: opacity 0.2s ease;
}

.nps-site .footer-legal-links a:hover {
	opacity: 1;
	text-decoration: underline;
}

.nps-site .main-footer .services-list li a,
.nps-site .main-footer .footer-widget .post a {
	pointer-events: auto;
}

/* Back to top */
.back-to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 50%;
	background: rgba(20, 20, 20, 0.88);
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
	z-index: 9990;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	transform: translateY(-2px);
}

/* Lazy images */
img[loading="lazy"] {
	background: #f0f0f0;
}

/* Page title inner pages */
.nps-site .page-title {
	scroll-margin-top: 80px;
}

@media (max-width: 767px) {
	.nps-site .footer-bottom-inner {
		flex-direction: column;
		text-align: center;
	}
}

/* ============================================================
   PREMIUM HERO SLIDER
   ============================================================ */

.nps-hero {
	position: relative;
	width: 100%;
	height: min(88vh, 720px);
	min-height: 520px;
	overflow: hidden;
	background: #0a0f1a;
}

.nps-hero__track {
	position: relative;
	width: 100%;
	height: 100%;
}

.nps-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.9s ease, visibility 0.9s ease;
	z-index: 1;
}

.nps-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 2;
}

.nps-hero__media {
	position: absolute;
	inset: 0;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	transform: scale(1.06);
	transition: transform 7s ease-out;
	will-change: transform;
}

.nps-hero__slide.is-active .nps-hero__media {
	transform: scale(1);
}

.nps-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg, rgba(10, 15, 26, 0.88) 0%, rgba(10, 15, 26, 0.55) 48%, rgba(10, 15, 26, 0.28) 100%);
	z-index: 1;
}

.nps-hero__overlay--center {
	background:
		linear-gradient(180deg, rgba(10, 15, 26, 0.55) 0%, rgba(10, 15, 26, 0.72) 55%, rgba(10, 15, 26, 0.85) 100%);
}

.nps-hero__content {
	position: relative;
	z-index: 3;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	max-width: 680px;
	padding-top: 40px;
	padding-bottom: 80px;
}

.nps-hero__content--center {
	margin-left: auto;
	margin-right: auto;
	align-items: center;
	text-align: center;
	max-width: 760px;
}

.nps-hero__brand {
	margin: 0 0 18px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #b8f0c0;
}

.nps-hero__title {
	margin: 0 0 20px;
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: clamp(36px, 5.5vw, 64px);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: #fff;
	text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.nps-hero__text {
	margin: 0 0 32px;
	max-width: 520px;
	font-size: clamp(15px, 1.6vw, 18px);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
}

.nps-hero__content--center .nps-hero__text {
	max-width: 560px;
}

.nps-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 14px;
}

.nps-hero__actions--center {
	justify-content: center;
}

.nps-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 14px 28px;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.nps-hero__btn--primary {
	background: linear-gradient(135deg, #2ECC40 0%, #27ae38 100%);
	color: #0a0f1a !important;
	box-shadow: 0 10px 30px rgba(46, 204, 64, 0.35);
}

.nps-hero__btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 36px rgba(46, 204, 64, 0.45);
	color: #0a0f1a !important;
}

.nps-hero__btn--ghost {
	background: transparent;
	color: #fff !important;
	border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.nps-hero__btn--ghost:hover {
	border-color: #2ECC40;
	color: #b8f0c0 !important;
	background: rgba(46, 204, 64, 0.1);
}

/* Entrance motion */
.nps-hero__slide .nps-hero__brand,
.nps-hero__slide .nps-hero__title,
.nps-hero__slide .nps-hero__text,
.nps-hero__slide .nps-hero__actions {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.nps-hero__slide.is-active .nps-hero__brand {
	opacity: 1;
	transform: none;
	transition-delay: 0.15s;
}

.nps-hero__slide.is-active .nps-hero__title {
	opacity: 1;
	transform: none;
	transition-delay: 0.3s;
}

.nps-hero__slide.is-active .nps-hero__text {
	opacity: 1;
	transform: none;
	transition-delay: 0.45s;
}

.nps-hero__slide.is-active .nps-hero__actions {
	opacity: 1;
	transform: none;
	transition-delay: 0.6s;
}

/* Nav arrows */
.nps-hero__nav {
	position: absolute;
	top: 50%;
	z-index: 5;
	width: 52px;
	height: 52px;
	margin-top: -26px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	background: rgba(10, 15, 26, 0.35);
	color: #fff;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.nps-hero__nav:hover {
	background: rgba(46, 204, 64, 0.9);
	border-color: #2ECC40;
	color: #0a0f1a;
	transform: scale(1.05);
}

.nps-hero__nav--prev {
	left: 24px;
}

.nps-hero__nav--next {
	right: 24px;
}

/* Dots */
.nps-hero__dots {
	position: absolute;
	left: 50%;
	bottom: 28px;
	z-index: 5;
	display: flex;
	gap: 10px;
	transform: translateX(-50%);
}

.nps-hero__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: none;
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: width 0.35s ease, background 0.35s ease;
}

.nps-hero__dot.is-active {
	width: 32px;
	background: #2ECC40;
}

.nps-hero__dot:hover {
	background: rgba(232, 217, 176, 0.9);
}

@media (max-width: 991px) {
	.nps-hero {
		height: auto;
		min-height: 560px;
	}

	.nps-hero__nav {
		display: none;
	}

	.nps-hero__content {
		padding: 100px 15px 90px;
		max-width: 100%;
	}
}

@media (max-width: 575px) {
	.nps-hero {
		min-height: 520px;
	}

	.nps-hero__title {
		font-size: 34px;
	}

	.nps-hero__btn {
		width: 100%;
	}

	.nps-hero__actions {
		width: 100%;
	}
}

/* ============================================================
   AREAS WE SERVE â€” network / hub layout
   ============================================================ */

/* ============================================================
   AREAS BRIDGE — separator content above Areas We Serve
   ============================================================ */

.nps-areas-bridge {
	position: relative;
	padding: 56px 0 0;
	background: linear-gradient(180deg, #f4f6fa 0%, #0a0f1a 100%);
	z-index: 2;
}

.nps-areas-bridge__card {
	max-width: 820px;
	margin: 0 auto;
	padding: 36px 40px 40px;
	text-align: center;
	background: #fff;
	border-radius: 18px 18px 0 0;
	box-shadow: 0 -8px 40px rgba(10, 15, 26, 0.08);
	border: 1px solid rgba(46, 204, 64, 0.15);
	border-bottom: none;
	position: relative;
}

.nps-areas-bridge__card::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -1px;
	width: 64px;
	height: 4px;
	margin-left: -32px;
	background: #2ECC40;
	border-radius: 4px 4px 0 0;
}

.nps-areas-bridge__eyebrow {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #2ECC40;
}

.nps-areas-bridge__title {
	margin: 0 0 16px;
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(24px, 3.2vw, 34px);
	font-weight: 600;
	line-height: 1.25;
	color: #0a0f1a;
}

.nps-areas-bridge__text {
	margin: 0;
	font-size: 16px;
	line-height: 1.75;
	color: #475569;
}

@media (max-width: 767px) {
	.nps-areas-bridge {
		padding: 40px 0 0;
	}

	.nps-areas-bridge__card {
		padding: 28px 20px 32px;
		border-radius: 14px 14px 0 0;
		margin: 0 12px;
	}
}

.nps-areas {
	position: relative;
	padding: 72px 0 90px;
	background: #0a0f1a;
	overflow: hidden;
	isolation: isolate;
}

.nps-areas__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	pointer-events: none;
	z-index: 0;
}

.nps-areas__glow--1 {
	width: 420px;
	height: 420px;
	top: -80px;
	left: -100px;
	background: rgba(46, 204, 64, 0.18);
}

.nps-areas__glow--2 {
	width: 380px;
	height: 380px;
	right: -80px;
	bottom: -60px;
	background: rgba(74, 120, 184, 0.16);
}

.nps-areas .auto-container {
	position: relative;
	z-index: 1;
}

.nps-areas .sec-title h2 {
	color: #fff;
}

.nps-areas .sec-title .separator span {
	color: #2ECC40;
}

.nps-areas__eyebrow {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #b8f0c0;
}

.nps-areas__intro {
	margin: 14px auto 0;
	max-width: 680px;
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.65);
}

.nps-areas__network {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 36px;
	margin-top: 56px;
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
}

.nps-areas__hub {
	position: relative;
	width: 200px;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.nps-areas__pulse {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid rgba(46, 204, 64, 0.45);
	animation: nps-pulse-ring 3.2s ease-out infinite;
}

.nps-areas__pulse--delay {
	animation-delay: 1.1s;
}

@keyframes nps-pulse-ring {
	0% {
		transform: scale(0.85);
		opacity: 0.8;
	}
	100% {
		transform: scale(1.55);
		opacity: 0;
	}
}

.nps-areas__hub-core {
	position: relative;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: radial-gradient(circle at 30% 25%, #2a3550 0%, #121a2e 55%, #0a0f1a 100%);
	border: 1px solid rgba(46, 204, 64, 0.55);
	box-shadow:
		0 0 0 8px rgba(46, 204, 64, 0.08),
		0 20px 50px rgba(0, 0, 0, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nps-areas__hub-icon {
	font-size: 22px;
	color: #2ECC40;
	margin-bottom: 6px;
}

.nps-areas__hub-core strong {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
}

.nps-areas__hub-tag {
	margin-top: 8px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #b8f0c0;
}

.nps-areas__cities {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	width: 100%;
}

.nps-areas__city {
	position: relative;
	padding: 22px 24px 22px 40px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	text-align: left;
	width: 100%;
	transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
	animation: nps-city-in 0.7s ease both;
	animation-delay: calc(var(--i) * 0.08s);
}

@keyframes nps-city-in {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.nps-areas__city:hover {
	transform: translateY(-4px);
	background: rgba(46, 204, 64, 0.1);
	border-color: rgba(46, 204, 64, 0.45);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.nps-areas__dot {
	position: absolute;
	top: 28px;
	left: 16px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #2ECC40;
	box-shadow: 0 0 0 4px rgba(46, 204, 64, 0.2);
}

.nps-areas__code {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: #2ECC40;
}

.nps-areas__city h3 {
	margin: 0 0 6px;
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 22px;
	font-weight: 600;
	color: #fff;
}

.nps-areas__city p {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.55);
}

.nps-areas__footnote {
	margin: 48px auto 0;
	max-width: 520px;
	text-align: center;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.55);
}

.nps-areas__footnote a {
	color: #b8f0c0;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.nps-areas__footnote a:hover {
	color: #2ECC40;
}

@media (max-width: 991px) {
	.nps-areas__network {
		gap: 24px;
	}

	.nps-areas__hub {
		width: 180px;
		height: 180px;
	}

	.nps-areas__hub-core {
		width: 140px;
		height: 140px;
	}

	.nps-areas__cities {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}
}

@media (max-width: 575px) {
	.nps-areas {
		padding: 72px 0 64px;
	}

	.nps-areas__cities {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nps-areas__pulse,
	.nps-areas__city {
		animation: none;
	}
}

/* ============================================================
   NAV — keep Bring My Car on same row
   ============================================================ */

/* Homepage uses logo in header-upper; don't reserve 330px for empty logo slot */
.nps-site .main-header:not(.header-style-four) .header-lower .nav-outer {
	margin-left: 0 !important;
	padding-left: 0 !important;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nps-site .main-header:not(.header-style-four) .header-lower .nav-outer:before {
	display: none !important;
}

.nps-site .main-header .header-lower {
	background: #222;
}

.nps-site .main-menu {
	float: none !important;
	width: 100%;
}

.nps-site .main-menu .navigation.nps-nav-list {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	float: none !important;
	width: 100%;
}

.nps-site .main-menu .navigation.nps-nav-list > li {
	float: none !important;
	margin: 0 !important;
}

.nps-site .main-menu .navigation.nps-nav-list > li > a {
	padding: 16px 12px !important;
	white-space: nowrap;
	font-size: 13px;
	line-height: 1.2;
}

.nps-site .main-menu .navigation.nps-nav-list > li.nps-nav-bmc {
	margin-left: 10px !important;
}

.nps-site .main-menu .navigation.nps-nav-list > li.nps-nav-bmc > a {
	display: inline-flex;
	align-items: center;
	background: #2ECC40 !important;
	color: #fff !important;
	border-radius: 100px;
	padding: 9px 16px !important;
	font-size: 12px !important;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1.2;
}

.nps-site .main-menu .navigation.nps-nav-list > li.nps-nav-bmc > a:hover,
.nps-site .main-menu .navigation.nps-nav-list > li.nps-nav-bmc.current > a {
	background: #27ae38 !important;
	color: #fff !important;
}

.nps-site .main-header .sticky-header .main-menu .navigation.nps-nav-list {
	justify-content: flex-end;
}

.nps-site .main-header .sticky-header .main-menu .navigation.nps-nav-list > li > a {
	padding: 12px 10px !important;
	color: #222 !important;
}

.nps-site .main-header .sticky-header .main-menu .navigation.nps-nav-list > li.nps-nav-bmc > a {
	padding: 8px 14px !important;
	color: #fff !important;
}

@media (max-width: 1199px) {
	.nps-site .main-menu .navigation.nps-nav-list > li > a {
		padding: 14px 8px !important;
		font-size: 12px;
	}
}

@media (max-width: 991px) {
	.nps-site .main-menu .navigation.nps-nav-list {
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.nps-site .main-menu .navigation.nps-nav-list > li.nps-nav-bmc {
		margin: 8px 0 0 !important;
		width: 100%;
	}

	.nps-site .main-menu .navigation.nps-nav-list > li.nps-nav-bmc > a {
		justify-content: center;
		width: 100%;
	}
}

/* ============================================================
   CONTACT FORM
   ============================================================ */

.nps-contact {
	padding: 90px 0 80px;
	background: #f7faf7;
}

.nps-contact__intro {
	margin: 14px auto 0;
	max-width: 480px;
	color: #64748b;
	font-size: 16px;
	line-height: 1.6;
}

.nps-contact__grid {
	margin-top: 20px;
	align-items: stretch;
}

.nps-contact__form-wrap {
	background: #fff;
	border-radius: 16px;
	padding: 32px 28px;
	box-shadow: 0 12px 40px rgba(10, 15, 26, 0.08);
	border: 1px solid rgba(46, 204, 64, 0.12);
}

.nps-contact .form-group label {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #1e293b;
}

.nps-contact .contact-form .form-group input,
.nps-contact .contact-form .form-group textarea {
	width: 100%;
	border: 1px solid #e2e8f0 !important;
	border-radius: 10px !important;
	padding: 14px 16px !important;
	background: #fff !important;
	font-size: 15px;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.nps-contact .contact-form .form-group textarea {
	min-height: 140px;
	resize: vertical;
}

.nps-contact .contact-form .form-group input:focus,
.nps-contact .contact-form .form-group textarea:focus {
	border-color: #2ECC40 !important;
	box-shadow: 0 0 0 3px rgba(46, 204, 64, 0.18) !important;
	outline: none;
}

.nps-contact__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 14px 32px !important;
	border: none !important;
	border-radius: 100px !important;
	background: #2ECC40 !important;
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease;
}

.nps-contact__submit:hover {
	background: #27ae38 !important;
	transform: translateY(-2px);
}

.nps-contact__info {
	height: 100%;
	background: #0a0f1a;
	border-radius: 16px;
	padding: 36px 30px;
	color: #fff;
}

.nps-contact__info h3 {
	margin: 0 0 28px;
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 28px;
	color: #fff;
}

.nps-contact__info ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nps-contact__info li {
	display: flex;
	gap: 16px;
	margin-bottom: 22px;
}

.nps-contact__info .icon {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(46, 204, 64, 0.15);
	color: #2ECC40;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	line-height: 42px;
	text-align: center;
}

.nps-contact__info strong {
	display: block;
	margin-bottom: 4px;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #b8f0c0;
}

.nps-contact__info p {
	margin: 0;
	font-size: 15px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.78);
}

.nps-contact__info a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

.nps-contact__info a:hover {
	color: #2ECC40;
}

.nps-contact__app {
	display: inline-flex;
	margin-top: 12px;
	padding: 12px 20px;
	border-radius: 100px;
	background: #2ECC40;
	color: #fff !important;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none !important;
	transition: background 0.25s ease;
}

.nps-contact__app:hover {
	background: #27ae38;
	color: #fff !important;
}

@media (max-width: 991px) {
	.nps-contact__info {
		margin-top: 24px;
	}
}

