/*
Theme Name: Twenty Twenty Child
Theme URI: https://wordpress.org/themes/twentytwenty/
Description: Child theme of Twenty Twenty. Add custom styles and templates here without modifying the parent theme.
Author: Your Name
Author URI:
Template: twentytwenty
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwenty-child
*/

/* =============================================================================
   Global
   ============================================================================= */
   :root {
	--nexa-font: "Poppins", sans-serif;
	--nexa-primary: #e85d04;
	--nexa-primary-hover: #d54d02;
}
html {
	font-size: 100%;
}

body,
body .site,
input,
button,
select,
textarea,
.nexa-custom-header,
.nexa-nav-menu a,
.nexa-cta-button {
	font-family: var(--nexa-font);
}
body{background-color: transparent;}
.nexa-homepage-template .entry-header,
.nexa-homepage-template .nexa-no-title .entry-header,
.page .nexa-no-title .entry-header {
	display: none !important;
}

/* =============================================================================
   Section headers (shared) â€” eyebrow tag, main title, description
   ============================================================================= */
.nexa-section-head {
	text-align: center;
	margin-bottom: 3rem;
	font-family: var(--nexa-font);
}

.nexa-section-label {
	color: var(--nexa-primary);
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 0.5rem 0;
	position: relative;
	display: inline-block;
	padding-bottom: 0.5rem;
}

.nexa-section-head .nexa-section-label::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 2.5rem;
	height: 3px;
	background: var(--nexa-primary);
	border-radius: 2px;
}

.nexa-section-title {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 0.75rem 0;
	line-height: 1.25;
}

.nexa-section-desc {
	font-size: 1rem;
	color: #6b7280;
	max-width: 720px;
	margin: 0 auto;
	line-height: 1.6;
}

/* =============================================================================
   Header
   ============================================================================= */
.nexa-custom-header {
	background: #fff;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
	position: sticky;
	top: 0;
	z-index: 1020;
	transition:
		box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
		background-color 0.45s ease;
}

/* Logged-in WP admin bar: keep header below bar */
body.admin-bar .nexa-custom-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .nexa-custom-header {
		top: 46px;
	}
}

.nexa-custom-header.nexa-header-scrolled {
	box-shadow: 0 8px 28px rgba(15, 23, 42, 0.09);
	background-color: rgba(255, 255, 255, 0.96);
}

@supports (backdrop-filter: blur(10px)) {
	.nexa-custom-header.nexa-header-scrolled {
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}
}

/* Invisible hook for scroll detection (must sit directly after header in markup) */
.nexa-header-sentinel {
	height: 1px;
	margin: 0;
	padding: 0;
	border: 0;
	pointer-events: none;
	visibility: hidden;
	position: relative;
}

.nexa-header-inner {
	display: grid;
	grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto;
	align-items: center;
	column-gap: clamp(12px, 2.5vw, 24px);
	row-gap: 12px;
	padding-block: 14px;
	padding-inline: max(0px, env(safe-area-inset-left)) max(0px, env(safe-area-inset-right));
	transition: padding-block 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nexa-custom-header.nexa-header-scrolled .nexa-header-inner {
	padding-block: 10px;
}

.nexa-custom-header.nexa-header-scrolled .nexa-header-logo .custom-logo {
	max-height: 42px;
}

@media (prefers-reduced-motion: reduce) {
	.nexa-custom-header,
	.nexa-header-inner,
	.nexa-header-logo .custom-logo {
		transition: none;
	}
}

.nexa-header-logo {
	grid-column: 1;
	grid-row: 1;
	min-width: 0;
}

.nexa-header-logo a {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	text-decoration: none;
	color: inherit;
}

.nexa-header-logo .custom-logo-link {
	display: block;
}

.nexa-header-logo .custom-logo {
	max-height: 60px;
	width: auto;
	height: auto;
	display: block;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nexa-logo-text {
	font-weight: 700;
	font-size: clamp(1.05rem, 2.8vw, 1.35rem);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #1e3a5f;
	line-height: 1.15;
}

.nexa-logo-tagline {
	display: block;
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #64748b;
	margin-top: 2px;
}

.nexa-header-nav {
	grid-column: 2;
	grid-row: 1;
	display: flex !important;
	justify-content: center;
	justify-self: center;
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.nexa-nav-menu {
	display: flex !important;
	align-items: center;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 2px;
	flex-wrap: wrap;
	row-gap: 4px;
}

.nexa-nav-menu li {
	margin: 0;
}

.nexa-nav-menu > li > a {
	display: block;
	padding: 10px clamp(10px, 1.6vw, 18px);
	text-decoration: none;
	color: #374151;
	font-weight: 500;
	font-size: clamp(14px, 1.35vw, 15px);
	border-radius: 6px;
	transition: color 0.2s ease, background 0.2s ease;
	white-space: nowrap;
}

.nexa-nav-menu > li > a:hover {
	color: var(--nexa-primary);
	background: rgba(232, 93, 4, 0.06);
}

/* Same visual as hover for current page / section (WordPress menu classes on <li>) */
.nexa-nav-menu > li.current-menu-item > a,
.nexa-nav-menu > li.current-menu-parent > a,
.nexa-nav-menu > li.current-menu-ancestor > a,
.nexa-nav-menu > li.current_page_item > a,
.nexa-nav-menu > li.current_page_parent > a,
.nexa-nav-menu > li.current_page_ancestor > a {
	color: var(--nexa-primary);
	background: rgba(232, 93, 4, 0.06);
}

.nexa-nav-menu li.menu-item-has-children {
	position: relative;
}

.nexa-nav-menu li.menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 6px;
	vertical-align: middle;
	border-top: 4px solid currentColor;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	opacity: 0.7;
}

.nexa-nav-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	/* No margin-top — it created a dead zone where hover was lost before reaching the panel */
	margin-top: 0;
	padding: 14px 0 10px;
	min-width: 200px;
	list-style: none;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	z-index: 1000;
}

/* Invisible hit area between parent link and panel so the pointer never leaves <li> */
.nexa-nav-menu .sub-menu::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -12px;
	height: 12px;
}

.nexa-nav-menu li.menu-item-has-children:hover .sub-menu,
.nexa-nav-menu li.menu-item-has-children:focus-within .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.nexa-nav-menu .sub-menu li {
	display: block;
	margin: 0;
}

.nexa-nav-menu .sub-menu a {
	display: block;
	padding: 10px 20px;
	font-size: 14px;
	color: #374151;
	text-decoration: none;
}

.nexa-nav-menu .sub-menu a:hover {
	background: #f8fafc;
}

.nexa-nav-menu .sub-menu li.current-menu-item > a,
.nexa-nav-menu .sub-menu li.current-menu-parent > a,
.nexa-nav-menu .sub-menu li.current_page_item > a {
	background: #f8fafc;
	color: var(--nexa-primary);
}

.nexa-header-cta {
	grid-column: 3;
	grid-row: 1;
	justify-self: end;
	flex-shrink: 0;
}

.nexa-cta-button {
	display: inline-block;
	padding: 10px 22px;
	background: var(--nexa-primary);
	color: #fff !important;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	border-radius: 8px;
	transition: background 0.2s ease;
	border: none;
}

.nexa-cta-button:hover {
	background: var(--nexa-primary-hover);
	color: #fff !important;
}

/* =============================================================================
   Inner pages header (title + breadcrumbs on all inner views)
   ============================================================================= */
.nexa-inner-page-header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(200px, 28vw, 280px);
	background-color: #1e3a5f;
	background-size: cover;
	background-position: center;
	font-family: var(--nexa-font);
	overflow: hidden;
}

.nexa-inner-page-header-overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.nexa-inner-page-header-wrap {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 0rem 1rem;
	text-align: center;
}

.nexa-inner-page-header-title {
	margin: 0 0 0.65rem 0;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.nexa-inner-page-breadcrumbs {
	margin: 0;
}
.nexa-inner-page-breadcrumbs-list li {
    margin: 0;
    line-height: normal;
}
.nexa-inner-page-breadcrumbs-list {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.9rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.92);
	width: 100%;
}

.nexa-inner-page-bc-item a {
	color: rgba(255, 255, 255, 0.92);
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.nexa-inner-page-bc-item a:hover {
	color: #fff;
	text-decoration: underline;
}

.nexa-inner-page-bc-item span {
	color: rgba(255, 255, 255, 0.95);
}

.nexa-inner-page-bc-sep {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.8rem;
	user-select: none;
}

.nexa-inner-page {
	font-family: var(--nexa-font);
}

.nexa-archive-lead {
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.nexa-inner-page-content {
	font-size: 1rem;
	line-height: 1.65;
	color: #374151;
}

.nexa-inner-page-content > *:first-child {
	margin-top: 0;
}

/* =============================================================================
   Blog — archive, single, pagination (matches Nexa typography & orange accents)
   ============================================================================= */
.nexa-blog-archive {
	background: #f8fafc;
}

.nexa-blog-archive .container {
	max-width: 1140px;
}

.nexa-blog-archive-intro {
	max-width: 720px;
	margin: 0 auto 2.25rem;
	text-align: center;
	font-size: 1.05rem;
	line-height: 1.65;
	color: #64748b;
}

.nexa-blog-term-description {
	max-width: 720px;
	margin: 0 auto 2.25rem;
	text-align: center;
	font-size: 1rem;
	line-height: 1.65;
	color: #64748b;
}

.nexa-blog-term-description p:last-child {
	margin-bottom: 0;
}

.nexa-blog-author-bio {
	margin-bottom: 2rem;
	text-align: center;
	color: #64748b;
}

.nexa-blog-author-bio p:last-child {
	margin-bottom: 0;
}

.nexa-blog-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.75rem;
	margin-bottom: 2.5rem;
}

.nexa-blog-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 14px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
	overflow: hidden;
	transition: box-shadow 0.3s ease, transform 0.25s ease;
	height: 100%;
}

.nexa-blog-card:hover {
	box-shadow: 0 10px 32px rgba(15, 23, 42, 0.09);
	transform: translateY(-3px);
}

.nexa-blog-card-media {
	display: block;
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #e2e8f0;
}

.nexa-blog-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}

.nexa-blog-card:hover .nexa-blog-card-img {
	transform: scale(1.04);
}

.nexa-blog-card-body {
	padding: 1.35rem 1.35rem 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.nexa-blog-card-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.5rem;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #94a3b8;
	margin-bottom: 0.65rem;
}

.nexa-blog-card-meta-sep {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(232, 93, 4, 0.45);
	flex-shrink: 0;
}

.nexa-blog-card-date {
	color: #94a3b8;
}

.nexa-blog-card-cat {
	color: var(--nexa-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

.nexa-blog-card-cat:hover {
	color: var(--nexa-primary-hover);
}

.nexa-blog-card-ptype {
	color: var(--nexa-primary);
}

.nexa-blog-card-title {
	font-size: clamp(1.1rem, 2.4vw, 1.28rem);
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 0.65rem 0;
	letter-spacing: -0.02em;
}

.nexa-blog-card-title a {
	color: #1e293b;
	text-decoration: none;
	transition: color 0.2s ease;
}

.nexa-blog-card-title a:hover {
	color: var(--nexa-primary);
}

.nexa-blog-card-excerpt {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #64748b;
	flex: 1;
}

.nexa-blog-card-excerpt p {
	margin: 0;
}

.nexa-blog-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: 1.15rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--nexa-primary);
	text-decoration: none;
	transition: color 0.2s ease, gap 0.2s ease;
}

.nexa-blog-card-link:hover {
	color: var(--nexa-primary-hover);
	gap: 0.55rem;
}

.nexa-blog-card-link i {
	font-size: 1rem;
	line-height: 1;
}

.nexa-blog-empty {
	text-align: center;
	color: #64748b;
	margin: 2rem 0;
}

.nexa-blog-pagination .pagination,
.nexa-blog-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nexa-blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.65rem;
	height: 2.65rem;
	padding: 0 0.65rem;
	font-size: 0.9rem;
	font-weight: 600;
	font-family: var(--nexa-font);
	color: #475569;
	text-decoration: none;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: #fff;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nexa-blog-pagination .page-numbers:hover,
.nexa-blog-pagination .page-numbers:focus-visible {
	color: var(--nexa-primary);
	border-color: rgba(232, 93, 4, 0.45);
	background: rgba(232, 93, 4, 0.06);
}

.nexa-blog-pagination .page-numbers.current {
	background: var(--nexa-primary);
	border-color: var(--nexa-primary);
	color: #fff;
}

.nexa-blog-pagination .page-numbers.dots {
	border: none;
	background: transparent;
	min-width: auto;
	pointer-events: none;
	color: #94a3b8;
}

.nexa-blog-pagination .page-numbers.prev,
.nexa-blog-pagination .page-numbers.next {
	min-width: auto;
	padding: 0 1rem;
}

.nexa-blog-single {
	background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 48%, #fff 100%);
}

.nexa-blog-single-hero {
	background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
	border-bottom: none;
	padding: clamp(1.25rem, 4vw, 2.25rem) 0 2px;
}

.nexa-blog-single-hero .container {
	max-width: 960px;
}

.nexa-blog-single-hero-img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: middle;
	border-radius: 14px;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
	margin-bottom: -2rem;
	position: relative;
	z-index: 1;
}

.nexa-blog-single-container {
	position: relative;
	z-index: 2;
	max-width: 780px;
}

.nexa-blog-single-article-inner {
	background: #fff;
	border-radius: 16px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
	padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 4vw, 2.5rem) clamp(2rem, 5vw, 3rem);
	margin-top: 2.5rem;
	margin-left: auto;
	margin-right: auto;
}

.nexa-blog-single-kicker {
	margin: 0 0 0.85rem 0;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--nexa-primary);
}

.nexa-blog-single-header {
	margin: 0 0 1.75rem 0;
	padding-bottom: 1.35rem;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nexa-blog-single-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.75rem;
	font-size: 0.88rem;
	font-weight: 600;
	color: #64748b;
}

.nexa-blog-single-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.nexa-blog-single-meta-item i {
	font-size: 1rem;
	color: var(--nexa-primary);
	opacity: 0.85;
}

.nexa-blog-single-meta time {
	color: #64748b;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 600;
}

.nexa-blog-single-cats-links {
	display: inline;
}

.nexa-blog-single-cats a {
	color: var(--nexa-primary);
	text-decoration: none;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0;
}

.nexa-blog-single-cats a:hover {
	color: var(--nexa-primary-hover);
	text-decoration: underline;
}

.nexa-blog-single-content {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
	font-size: 1.0625rem;
	line-height: 1.75;
	color: #334155;
}

.nexa-blog-single-content > *:last-child {
	margin-bottom: 0;
}

.nexa-blog-single-content h2 {
	font-size: clamp(1.35rem, 3vw, 1.65rem);
	font-weight: 700;
	color: #0f172a;
	margin: 2rem 0 0.85rem;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.nexa-blog-single-content h3 {
	font-size: clamp(1.15rem, 2.5vw, 1.3rem);
	font-weight: 700;
	color: #1e293b;
	margin: 1.75rem 0 0.65rem;
}

.nexa-blog-single-content h4 {
	font-size: 1.05rem;
	font-weight: 600;
	color: #334155;
	margin: 1.5rem 0 0.5rem;
}

.nexa-blog-single-content p {
	margin: 0 0 1.15rem;
}

.nexa-blog-single-content ul,
.nexa-blog-single-content ol {
	margin: 0 0 1.25rem;
	padding-left: 1.35rem;
}

.nexa-blog-single-content li {
	margin-bottom: 0.45rem;
}

.nexa-blog-single-content li::marker {
	color: var(--nexa-primary);
}

.nexa-blog-single-content a {
	color: var(--nexa-primary);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.nexa-blog-single-content a:hover {
	color: var(--nexa-primary-hover);
}

.nexa-blog-single-content blockquote {
	margin: 1.75rem 0;
	padding: 1.1rem 1.25rem 1.1rem 1.25rem;
	border-left: 4px solid var(--nexa-primary);
	background: #f8fafc;
	border-radius: 0 10px 10px 0;
	font-size: 1.05rem;
	font-style: italic;
	color: #475569;
}

.nexa-blog-single-content blockquote p:last-child {
	margin-bottom: 0;
}

.nexa-blog-single-content img,
.nexa-blog-single-content .wp-block-image img {
	border-radius: 10px;
	height: auto;
}

.nexa-blog-single-content .wp-block-image {
	margin: 1.5rem 0;
}

.nexa-blog-single-content figcaption {
	font-size: 0.88rem;
	color: #64748b;
	margin-top: 0.5rem;
	text-align: center;
}

.nexa-blog-single-content pre,
.nexa-blog-single-content code {
	font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
	font-size: 0.9em;
}

.nexa-blog-single-content pre {
	padding: 1rem;
	background: #f1f5f9;
	border-radius: 10px;
	overflow-x: auto;
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.nexa-blog-page-links {
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	font-size: 0.95rem;
}

.nexa-blog-page-links-label {
	font-weight: 600;
	color: #64748b;
	margin-right: 0.5rem;
}

.nexa-blog-page-links a {
	color: var(--nexa-primary);
	font-weight: 600;
	text-decoration: none;
}

.nexa-blog-page-links a:hover {
	text-decoration: underline;
}

.nexa-blog-single-footer {
	margin: 2.25rem 0 0;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.nexa-blog-single-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.65rem;
}

.nexa-blog-tags-label {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #94a3b8;
	margin-right: 0.25rem;
}

a.nexa-blog-tag {
	display: inline-block;
	padding: 0.35rem 0.75rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: #475569;
	background: #f1f5f9;
	border-radius: 6px;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

a.nexa-blog-tag:hover {
	background: rgba(232, 93, 4, 0.12);
	color: var(--nexa-primary);
}

/* WP wraps .nav-previous / .nav-next inside .nav-links — grid must be on .nav-links */
.nexa-blog-single .post-navigation {
	max-width: none;
	margin: 2.25rem 0 0;
	padding-top: 1.75rem;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.nexa-blog-single .post-navigation .nav-links {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 1rem;
	align-items: stretch;
}

.nexa-blog-single .post-navigation .nav-subtitle,
.nexa-blog-single .post-navigation .nav-title {
	display: none;
}

.nexa-blog-single .post-navigation a {
	text-decoration: none;
	color: inherit;
	display: block;
	padding: 1rem 1.15rem;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	background: #f8fafc;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
	height: 100%;
	box-sizing: border-box;
}

.nexa-blog-single .post-navigation a:hover {
	border-color: rgba(232, 93, 4, 0.35);
	background: #fff;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.nexa-blog-single .post-navigation .nav-links .nav-next {
	grid-column: 2;
	text-align: right;
}

.nexa-blog-single .post-navigation .nav-links .nav-previous:only-child {
	grid-column: 1 / -1;
	text-align: left;
}

.nexa-blog-single .post-navigation .nav-links .nav-next:only-child {
	grid-column: 1 / -1;
	text-align: right;
}

.nexa-blog-nav-inner {
	display: flex;
	flex-direction: column;
	align-items: inherit;
	gap: 0.35rem;
	text-align: inherit;
}

.nexa-blog-nav-next.nexa-blog-nav-inner {
	align-items: flex-end;
}

.nexa-blog-nav-label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--nexa-primary);
}

.nexa-blog-nav-title {
	font-size: 0.98rem;
	font-weight: 600;
	color: #1e293b;
	line-height: 1.35;
	display: block;
}

@media (max-width: 767px) {
	.nexa-blog-grid {
		grid-template-columns: 1fr;
	}

	.nexa-blog-single .post-navigation .nav-links {
		gap: 0.65rem;
	}

	.nexa-blog-single .post-navigation a {
		padding: 0.85rem 0.75rem;
	}

	.nexa-blog-single .post-navigation .nav-links .nav-next {
		text-align: right;
	}

	.nexa-blog-nav-next.nexa-blog-nav-inner {
		align-items: flex-end;
	}

	.nexa-blog-single-hero {
		padding-bottom: 0;
	}

	.nexa-blog-single-hero-img {
		border-radius: 12px 12px 0 0;
		margin-bottom: 0;
		box-shadow: none;
	}

	.nexa-blog-single-article-inner {
		margin-top: 0;
		border-top: none;
		border-left: none;
		border-right: none;
		border-radius: 0;
		box-shadow: 0 12px 36px rgba(15, 23, 42, 0.07);
	}

	.nexa-blog-single-container {
		max-width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nexa-blog-card,
	.nexa-blog-card-img,
	.nexa-blog-card-link {
		transition: none;
	}

	.nexa-blog-card:hover {
		transform: none;
	}

	.nexa-blog-card:hover .nexa-blog-card-img {
		transform: none;
	}
}

/* =============================================================================
   About Us page – story block (two columns, image + optional video)
   ============================================================================= */
.nexa-template-about .nexa-about-story {
	background: #fff;
	font-family: var(--nexa-font);
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	padding-bottom: 0;
}

.nexa-about-story-title {
	font-size: clamp(1.65rem, 3.5vw, 2.15rem);
	font-weight: 700;
	color: #111827;
	margin: 0 0 1.25rem 0;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.nexa-about-story-text {
	font-size: 1rem;
	line-height: 1.65;
	color: #6b7280;
	margin: 0 0 1rem 0;
}

.nexa-about-story-list {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	margin-left: 0;
}

.nexa-about-story-list-item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	font-size: 1rem;
	line-height: 1.55;
	color: #4b5563;
	margin-left: 0;
}
.nexa-about-story-list-item i{
	color: #f58a46;
}
.nexa-about-story-check {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--nexa-primary);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
	margin-top: 0.1rem;
	box-shadow: 0 2px 8px rgba(232, 93, 4, 0.35);
}

.nexa-about-story-visual {
	position: relative;
	padding: 0.5rem 0 0.5rem 0.5rem;
}

.nexa-about-story-deco {
	position: absolute;
	right: -1rem;
	top: 50%;
	transform: translateY(-50%);
	width: min(75%, 280px);
	height: auto;
	pointer-events: none;
	z-index: 0;
	opacity: 0.9;
}

.nexa-about-story-deco-svg {
	width: 100%;
	height: auto;
	display: block;
}

.nexa-about-story-frame {
	position: relative;
	z-index: 1;
	border-radius: 16px;
	overflow: visible;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
	background: #e5e7eb;
}

.nexa-about-story-frame-inner {
	border-radius: 16px;
	overflow: hidden;
	display: block;
}

.nexa-about-story-img {
	width: 100%;
	height: auto;
	aspect-ratio: 4/3;
	object-fit: cover;
	vertical-align: middle;
}

.nexa-about-story-placeholder {
	width: 100%;
	aspect-ratio: 4/3;
	background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 50%, #e2e8f0 100%);
	border-radius: 16px;
}

.nexa-about-story-play {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(-35%, -50%);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #1e3a5f;
	color: #fff !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
	line-height: 1;
	padding-left: 4px;
	box-shadow: 0 8px 24px rgba(30, 58, 95, 0.35);
	transition: transform 0.2s ease, background 0.2s ease;
	text-decoration: none;
	z-index: 2;
}

.nexa-about-story-play:hover {
	background: var(--nexa-primary);
	color: #fff !important;
	transform: translate(-35%, -50%) scale(1.05);
}

/* About page: stats bar reuses .nexa-why-us-stats (same as Why Us homepage section) */
.nexa-template-about-stats {
	background: #fff;
	font-family: var(--nexa-font);
}

/* =============================================================================
   About Us – Team (CPT: Team Members)
   ============================================================================= */
.nexa-team-section {
	background: #f3f4f6;
	font-family: var(--nexa-font); 
}

.nexa-team-section-head {
	max-width: 640px;
	margin-bottom: 2.5rem;
}

.nexa-team-section-title {
	font-size: clamp(1.65rem, 3.5vw, 2.25rem);
	font-weight: 700;
	color: #111827;
	margin: 0 0 1rem 0;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.nexa-team-section-subtitle {
	font-size: 1rem;
	line-height: 1.65;
	color: #6b7280;
	margin: 0;
}

.nexa-team-card {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	transition: box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
}

.nexa-team-card:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.nexa-team-card-media {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: #e5e7eb;
}

.nexa-team-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	vertical-align: middle;
}

.nexa-team-card-placeholder {
	width: 100%;
	height: 100%;
	min-height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9ca3af;
	font-size: clamp(3rem, 12vw, 4.5rem);
}

.nexa-team-card-body {
	padding: 1.25rem 1rem 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.nexa-team-card-name {
	font-size: 1.1rem;
	font-weight: 700;
	color: #111827;
	margin: 0 0 0.35rem 0;
	line-height: 1.3;
}

.nexa-team-card-role {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--nexa-primary);
	margin: 0;
	line-height: 1.4;
}

.nexa-template-about-article {
	background: #f9fafb;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* =============================================================================
   Resources page (Nexa Resources template)
   ============================================================================= */
.nexa-template-resources {
	font-family: var(--nexa-font);
}

/* One block: toolbar row + cards */
.nexa-resources-section {
	background: #f9fafb;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	font-family: var(--nexa-font);
}

.nexa-resources-controls {
	margin-bottom: 1.75rem;
}

.nexa-resources-controls-inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 1rem;
}

.nexa-resources-search-wrap #nexa-resources-search {
	font-size: 16px;
  }

@media (min-width: 992px) {
	.nexa-resources-controls-inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 1.5rem;
	}

	.nexa-resources-filters {
		flex: 1 1 auto;
		min-width: 0;
	}

	.nexa-resources-search-col {
		flex: 0 0 auto;
		width: min(100%, 380px);
		max-width: 100%;
	}
}

.nexa-resources-search-wrap {
	position: relative;
	width: 100%;
	max-width: 100%;
}

.nexa-resources-search-icon {
	position: absolute;
	left: 1.1rem;
	top: 50%;
	transform: translateY(-50%);
	color: #9ca3af;
	font-size: 1.1rem;
	pointer-events: none;
	z-index: 2;
}

.nexa-resources-search {
	border-radius: 999px !important;
	border: 1px solid #e5e7eb !important;
	padding: 0.85rem 1.25rem 0.85rem 3rem !important;
	font-size: 1rem;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.nexa-resources-search:focus {
	border-color: rgba(232, 93, 4, 0.45) !important;
	box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.12);
}

/* Filter tabs: .nexa-fp-filters / .nexa-fp-filter (Featured Projects – homepage) */

.nexa-resources-empty {
	font-size: 0.95rem;
	padding: 0.5rem 0 1rem;
}

.nexa-resources-no-results {
	margin-bottom: 1.5rem;
}

.nexa-resources-no-results[hidden] {
	display: none !important;
}

.nexa-resource-card {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 4px 22px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	display: flex;
	flex-direction: column;
}

.nexa-resource-card:hover {
	box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.nexa-resource-card--no-url:hover {
	transform: none;
	box-shadow: 0 4px 22px rgba(0, 0, 0, 0.06);
}

.nexa-resource-card-media-wrap {
	position: relative;
}

.nexa-resource-card-media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #e5e7eb;
}

.nexa-resource-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	vertical-align: middle;
}

.nexa-resource-card-media-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #cbd5e1;
	font-size: 2.75rem;
	text-decoration: none;
}

.nexa-resource-card-badge {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	background: #fff;
	color: #111827;
	font-size: 0.72rem;
	font-weight: 600;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	line-height: 1.2;
	max-width: calc(100% - 1.5rem);
	text-align: center;
}

.nexa-resource-card-body {
	padding: 1.35rem 1.25rem 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
	align-items: center;
	text-align: center;
}

.nexa-resource-card-icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(232, 93, 4, 0.12);
	color: var(--nexa-primary);
	font-size: 1.25rem;
	margin: -2.25rem 0 0.85rem 0;
	position: relative;
	z-index: 2;
	box-shadow: 0 0 0 4px #fff;
}

.nexa-resource-card-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #111827;
	margin: 0 0 0.5rem 0;
	line-height: 1.35;
}

.nexa-resource-card-title a {
	color: inherit;
	text-decoration: none;
}

.nexa-resource-card-title a:hover {
	color: var(--nexa-primary);
}

.nexa-resource-card-title-text {
	color: inherit;
}

.nexa-resource-card-excerpt {
	font-size: 0.92rem;
	color: #6b7280;
	line-height: 1.55;
	margin: 0 0 1.25rem 0;
	flex: 1;
}

.nexa-resource-card-btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	padding: 0.65rem 1rem;
	border: 2px solid var(--nexa-primary);
	border-radius: 12px;
	color: var(--nexa-primary) !important;
	font-weight: 600;
	font-size: 0.92rem;
	text-decoration: none !important;
	transition: background 0.2s ease, color 0.2s ease;
	margin-top: auto;
}

.nexa-resource-card-btn-outline:hover {
	background: var(--nexa-primary);
	color: #fff !important;
}

.nexa-resource-card-btn-outline i {
	font-size: 1rem;
}

.nexa-resource-card-btn-outline--disabled {
	cursor: default;
	pointer-events: none;
	border-color: #d1d5db !important;
	color: #9ca3af !important;
	background: #f9fafb;
}

.nexa-resource-card-btn-outline--disabled i {
	opacity: 0.7;
}

.nexa-template-resources-article {
	background: #fff;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* =============================================================================
   Mobile Menu (Side Drawer)
   ============================================================================= */
.nexa-mobile-menu-toggle {
	grid-column: 3;
	grid-row: 1;
	justify-self: end;
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	border-radius: 10px;
	border: none;
	background: rgba(232, 93, 4, 0.08);
	color: var(--nexa-primary);
	transition: background 0.2s ease, color 0.2s ease;
	flex-shrink: 0;
}

.nexa-mobile-menu-toggle i {
	font-size: 1.5rem;
	line-height: 1;
}

.nexa-mobile-menu-toggle:hover {
	background: rgba(232, 93, 4, 0.14);
}

.nexa-mobile-menu-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
	z-index: 1990;
}

.nexa-mobile-menu-drawer {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	height: 100dvh;
	width: 340px;
	max-width: 85vw;
	background: #ffffff;
	border-right: 1px solid rgba(0, 0, 0, 0.08);
	transform: translateX(-105%);
	transition: transform 0.3s ease;
	z-index: 2000;
	display: flex;
	flex-direction: column;
	padding-top: max(0px, env(safe-area-inset-top));
	padding-bottom: max(0px, env(safe-area-inset-bottom));
}

body.nexa-mobile-menu-open {
	overflow: hidden;
}

body.nexa-mobile-menu-open .nexa-mobile-menu-overlay {
	opacity: 1;
	pointer-events: auto;
}

body.nexa-mobile-menu-open .nexa-mobile-menu-drawer {
	transform: translateX(0);
}

/* Logged-in WP admin bar: drawer clears fixed bar */
body.admin-bar .nexa-mobile-menu-drawer {
	top: 46px;
	height: calc(100vh - 46px);
	height: calc(100dvh - 46px);
	padding-top: 0;
}

@media screen and (min-width: 783px) {
	body.admin-bar .nexa-mobile-menu-drawer {
		top: 32px;
		height: calc(100vh - 32px);
		height: calc(100dvh - 32px);
	}
}

.nexa-mobile-menu-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 14px 14px 18px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nexa-mobile-menu-brand .nexa-logo-text {
	font-size: 1.1rem;
	color: #1e3a5f;
}

.nexa-mobile-menu-close {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	border: none;
	background: rgba(232, 93, 4, 0.08);
	color: var(--nexa-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}

.nexa-mobile-menu-close:hover {
	background: rgba(232, 93, 4, 0.14);
}

.nexa-mobile-menu-nav {
	padding: 12px 18px 16px 18px;
	flex: 1;
	overflow: auto;
}

.nexa-mobile-nav-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.nexa-mobile-nav-menu li {
	margin: 0;
}

.nexa-mobile-nav-menu > li > a,
.nexa-mobile-nav-menu .sub-menu a {
	display: block;
	padding: 12px 0;
	color: #1f2937;
	text-decoration: none;
	font-weight: 700;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nexa-mobile-nav-menu .sub-menu {
	margin: 0;
	padding: 0 0 0 14px;
}

.nexa-mobile-nav-menu .sub-menu a {
	font-weight: 600;
	font-size: 0.95rem;
	border-bottom: none;
	padding: 8px 0;
	color: #334155;
}

.nexa-mobile-nav-menu > li > a:hover,
.nexa-mobile-nav-menu .sub-menu a:hover {
	color: var(--nexa-primary);
}

.nexa-mobile-nav-menu > li.current-menu-item > a,
.nexa-mobile-nav-menu > li.current-menu-parent > a,
.nexa-mobile-nav-menu > li.current-menu-ancestor > a,
.nexa-mobile-nav-menu > li.current_page_item > a,
.nexa-mobile-nav-menu > li.current_page_parent > a,
.nexa-mobile-nav-menu > li.current_page_ancestor > a,
.nexa-mobile-nav-menu .sub-menu li.current-menu-item > a,
.nexa-mobile-nav-menu .sub-menu li.current-menu-parent > a,
.nexa-mobile-nav-menu .sub-menu li.current_page_item > a {
	color: var(--nexa-primary);
}

.nexa-mobile-menu-footer {
	padding: 0 18px 18px 18px;
}

.nexa-mobile-menu-footer .nexa-mobile-menu-cta {
	width: 100%;
	text-align: center;
	justify-content: center;
}

/* =============================================================================
   Footer
   ============================================================================= */
.nexa-footer {
	background: #13232c;
	color: #e2e8f0;
	font-family: var(--nexa-font);
}

.nexa-footer a {
	color: #e2e8f0;
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.nexa-footer a:hover {
	color: #fff;
	opacity: 0.9;
}

.nexa-footer-brand {
	margin-bottom: 1rem;
}

.nexa-footer-brand .custom-logo-link {
	display: inline-block;
}

.nexa-footer-brand .custom-logo {
	max-height: 76px;
	width: auto;
	height: auto;
	filter: brightness(0) invert(1);
}

.nexa-footer-logo-link {
	display: inline-flex;
	flex-direction: column;
}

.nexa-footer-logo-text {
	font-weight: 700;
	font-size: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #fff;
}

.nexa-footer-logo-tagline {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.85);
	margin-top: 2px;
}

.nexa-footer-desc {
	font-size: 0.9rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1.25rem;
	max-width: 260px;
}

.nexa-footer-social {
	margin-top: 0.5rem;
}

.nexa-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	color: #fff;
	transition: background 0.2s ease, color 0.2s ease;
}

.nexa-social-icon:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.nexa-social-icon svg,
.nexa-social-icon i {
	flex: 0 0 auto;
}

.nexa-social-icon i {
	font-size: 1.1rem;
	line-height: 1;
}

.nexa-footer-heading {
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1rem;
	text-transform: none;
	margin-top: 0;
	letter-spacing: 0;
}

.nexa-footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nexa-footer-menu li {
	margin: 0 0 10px; 
	padding: 0;
	line-height: normal;
}

.nexa-footer-menu a {
	font-size: 0.95rem;
	color: #D1D5DC;
	line-height: normal;
	display: block;
}

.nexa-footer-menu a:hover {
	color: #fff;
}

.nexa-footer-menu li.current-menu-item > a,
.nexa-footer-menu li.current-menu-ancestor > a,
.nexa-footer-menu li.current_page_item > a,
.nexa-footer-menu li.current_page_parent > a {
	color: #fff;
}

.nexa-footer-contact {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nexa-footer-contact li {
	margin: 0 0 10px; 
	line-height: normal; 
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.9);
}

.nexa-footer-contact a {
	color: rgba(255, 255, 255, 0.9);
}

.nexa-footer-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--nexa-primary);
}

.nexa-footer-icon svg,
.nexa-footer-icon i {
	width: 20px;
	height: 20px;
}

.nexa-footer-icon i {
	font-size: 1.1rem;
	line-height: 1;
}

.nexa-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nexa-footer-copy {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.85);
}

.nexa-footer-legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 0.75rem 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nexa-footer-legal .nexa-legal-item,
.nexa-footer-legal a {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.85);
}

.nexa-footer-legal a.nexa-legal-item:hover {
	color: #fff;
}

.nexa-footer-legal .nexa-legal-item + .nexa-legal-item::before,
.nexa-footer-legal a.nexa-legal-item + a.nexa-legal-item::before {
	content: "|";
	margin-right: 1rem;
	opacity: 0.6;
	pointer-events: none;
}

/* =============================================================================
   Hero
   ============================================================================= */
.nexa-hero {
	position: relative; 
	display: flex;
	align-items: center;
	background: #1a1a2e;
	color: #fff;
	font-family: var(--nexa-font);
	overflow: hidden;
	margin: 0;
}

.nexa-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.nexa-hero-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.55);
	background-image: url('assets/images/herobanner.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
} 

.nexa-hero-inner {
	max-width: 640px;
	padding: 0;
}

.nexa-hero-tagline {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 1rem;
	margin: 0 0 1.5rem 0;
	font-size: 0.8rem;
	font-weight: 500;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
}

.nexa-hero-tagline-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--nexa-primary);
	flex-shrink: 0;
}

.nexa-hero-title {
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 1rem 0;
	letter-spacing: -0.02em;
}

.nexa-hero-title span {
	color: var(--nexa-primary);
}

.nexa-hero-desc {
	font-size: 1.05rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.92);
	margin: 0 0 1.75rem 0;
	max-width: 540px;
}

.nexa-hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	margin-bottom: 2.5rem;
}

.nexa-hero-btn {  
	gap: 0.5rem;
	padding: 0.85rem 1.5rem;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nexa-hero-btn-primary {
	background: var(--nexa-primary);
	color: #fff !important;
	border: 2px solid var(--nexa-primary);
}

.nexa-hero-btn-primary:hover {
	background: var(--nexa-primary-hover);
	border-color: var(--nexa-primary-hover);
	color: #fff !important;
	opacity: 1;
}

.nexa-hero-btn-outline {
	background: transparent;
	color: #fff !important;
	border: 2px solid rgba(255, 255, 255, 0.8);
}

.nexa-hero-btn-outline:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.08);
	color: #fff !important;
	opacity: 1;
}

.nexa-hero-btn-arrow {
	font-size: 1.1em;
}

.nexa-hero-btn-phone {
	display: inline-flex;
}

.nexa-hero-btn-phone svg {
	width: 20px;
	height: 20px;
}

.nexa-hero-stats {
	margin-bottom: 2rem;
}

.nexa-hero-stat-card {
	display: flex;
	flex-direction: column;
	padding: 1.25rem 1.5rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	min-width: 160px;
}

.nexa-hero-stat-num {
	font-size: 1.75rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
}

.nexa-hero-stat-label {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.85);
	margin-top: 0.25rem;
}

.nexa-hero-scroll {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
}

.nexa-hero-scroll-arrow {
	font-size: 1.1rem;
	opacity: 0.9;
}

/* =============================================================================
   Trust bar
   ============================================================================= */
.nexa-trust-bar {
	background: #fff;
	font-family: var(--nexa-font);
}

.nexa-trust-icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: #ffefe6;
	color: var(--nexa-primary);
	margin-bottom: 0.75rem;
}

.nexa-trust-icon-wrap svg {
	width: 32px;
	height: 32px;
}

.nexa-trust-label {
	margin: 0;
	font-size: 1rem;
	font-weight: 500;
	color: #374151;
}

/* =============================================================================
   Single product – hero (first section)
   ============================================================================= */
.nexa-single-product {
	font-family: var(--nexa-font);
}

.nexa-product-hero {
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	font-family: var(--nexa-font);
}

.nexa-product-hero-breadcrumbs {
	margin: 0 0 1.75rem 0;
}

.nexa-product-hero-breadcrumbs-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.875rem;
	font-weight: 500;
	color: #6b7280;
}
.nexa-product-hero-breadcrumbs-list li{margin: 0;}
.nexa-product-hero-bc-item a {
	color: #6b7280;
	text-decoration: none; 
	gap: 0.35rem;
	transition: color 0.2s ease;
}

.nexa-product-hero-bc-item a:hover {
	color: var(--nexa-primary);
}

.nexa-product-hero-bc-home {
	font-size: 1rem;
	opacity: 0.9;
}

.nexa-product-hero-bc-current {
	color: #111827;
	font-weight: 600;
}

.nexa-product-hero-bc-sep {
	color: #9ca3af;
	font-size: 0.8rem;
	user-select: none;
}

.nexa-product-hero-badge {
	display: inline-block;
	margin: 0 0 1rem 0;
	padding: 0.4rem 0.9rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: #b45309;
	background: #ffeee6;
	border-radius: 999px;
	line-height: 1.3;
}

.nexa-product-hero-title {
	font-size: clamp(1.85rem, 4.5vw, 2.75rem);
	font-weight: 700;
	color: #0f172a;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 1.1rem 0;
	max-width: 22rem;
}

.nexa-product-hero-lead {
	font-size: 1.05rem;
	line-height: 1.65;
	color: #4b5563;
	margin: 0 0 1.75rem 0;
	max-width: 36rem;
}

.nexa-product-hero-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.85rem 1rem;
}

.nexa-product-hero-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.35rem;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none !important;
	border-radius: 10px;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
	border: 2px solid transparent;
	white-space: nowrap;
}

.nexa-product-hero-btn-primary {
	background: var(--nexa-primary);
	border-color: var(--nexa-primary);
	color: #fff !important;
	box-shadow: 0 4px 14px rgba(232, 93, 4, 0.28);
}

.nexa-product-hero-btn-primary:hover {
	background: var(--nexa-primary-hover);
	border-color: var(--nexa-primary-hover);
	color: #fff !important;
	box-shadow: 0 6px 20px rgba(232, 93, 4, 0.35);
}

.nexa-product-hero-btn-secondary {
	background: transparent;
	border-color: #1e3a5f;
	color: #1e3a5f !important;
}

.nexa-product-hero-btn-secondary:hover {
	background: rgba(30, 58, 95, 0.06);
	border-color: #152a45;
	color: #152a45 !important;
}

.nexa-product-hero-visual {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
}

.nexa-product-hero-visual-accent {
	position: absolute;
	bottom: -1rem;
	right: -0.75rem;
	width: min(58%, 280px);
	height: min(48%, 220px);
	background: linear-gradient(135deg, rgba(255, 238, 230, 0.95) 0%, rgba(255, 220, 200, 0.65) 100%);
	border-radius: 20px;
	z-index: 0;
	pointer-events: none;
}

.nexa-product-hero-visual-frame {
	position: relative;
	z-index: 1;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
	background: #e5e7eb;
}

.nexa-product-hero-img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: middle;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.nexa-product-hero-visual-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	color: #cbd5e1;
	font-size: 4rem;
	aspect-ratio: 16 / 10;
}

/* Single product – Why choose us */
.nexa-product-why {
	background: #fff; 
	font-family: var(--nexa-font);
}

.nexa-product-why-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 2.5rem;
}

.nexa-product-why-title {
	font-size: clamp(1.5rem, 3.5vw, 2rem);
	font-weight: 700;
	color: #0f172a;
	line-height: 1.25;
	margin: 0 0 0.75rem 0;
	letter-spacing: -0.02em;
}

.nexa-product-why-sub {
	font-size: 1.05rem;
	color: #6b7280;
	line-height: 1.55;
	margin: 0;
}

.nexa-product-why-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 1.5rem 1.35rem;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.nexa-product-why-card:hover {
	box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
	border-color: #e5e7eb;
}

.nexa-product-why-icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: rgba(232, 93, 4, 0.12);
	color: var(--nexa-primary);
	font-size: 1.35rem;
	margin-bottom: 1.1rem;
}

.nexa-product-why-card-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: #111827;
	line-height: 1.35;
	margin: 0 0 0.65rem 0;
}

.nexa-product-why-card-text {
	font-size: 0.92rem;
	line-height: 1.6;
	color: #6b7280;
	margin: 0;
}

/* Single product – Suitable applications */
.nexa-product-apps {
	background: #f8f9fa; 
	font-family: var(--nexa-font);
}

.nexa-product-apps-title {
	font-size: clamp(1.45rem, 3.2vw, 1.85rem);
	font-weight: 700;
	color: #1a202c;
	line-height: 1.25;
	margin: 0 0 1rem 0;
	letter-spacing: -0.02em;
}

.nexa-product-apps-intro {
	font-size: 1.02rem;
	line-height: 1.65;
	color: #4a5568;
	margin: 0 0 1.75rem 0;
	max-width: 34rem;
}

/* Suitable applications: same list as homepage About — scoped so .nexa-about-list gap:0 doesn’t win */
.nexa-product-apps .nexa-about-list {
	gap: 0.75rem clamp(1rem, 4vw, 2.25rem);
}

@media (max-width: 575.98px) {
	.nexa-product-apps .nexa-about-list {
		grid-template-columns: 1fr;
	}
}

.nexa-product-apps-media {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 36px rgba(26, 32, 44, 0.1);
	background: #e5e7eb;
}

.nexa-product-apps-img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: middle;
	aspect-ratio: 16 / 11;
	object-fit: cover;
}

/* Single product – Material options */
.nexa-product-materials {
	background: #fff; 
	font-family: var(--nexa-font);
}

.nexa-product-materials-head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 2.75rem;
}

.nexa-product-materials-title {
	font-size: clamp(1.5rem, 3.5vw, 2rem);
	font-weight: 700;
	color: #1a202c;
	line-height: 1.25;
	margin: 0 0 0.85rem 0;
	letter-spacing: -0.02em;
}

.nexa-product-materials-sub {
	font-size: 1.05rem;
	line-height: 1.55;
	color: #718096;
	margin: 0;
}

.nexa-product-materials-card {
	background: #f7fafc;
	border-radius: 14px;
	padding: 1.65rem 1.5rem;
	border: 1px solid #edf2f7;
	transition: box-shadow 0.2s ease;
}

.nexa-product-materials-card:hover {
	box-shadow: 0 8px 28px rgba(26, 32, 44, 0.06);
}

.nexa-product-materials-card-title {
	font-size: 1.08rem;
	font-weight: 700;
	color: #1a202c;
	line-height: 1.35;
	margin: 0 0 0.65rem 0;
}

.nexa-product-materials-card-text {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #718096;
	margin: 0;
}

/* Single product – Our work / portfolio */
.nexa-product-work {
	background: #f8f9fa; 
	font-family: var(--nexa-font);
}

.nexa-product-work-head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 2.75rem;
}

.nexa-product-work-title {
	font-size: clamp(1.5rem, 3.5vw, 2rem);
	font-weight: 700;
	color: #1a202c;
	line-height: 1.25;
	margin: 0 0 0.85rem 0;
	letter-spacing: -0.02em;
}

.nexa-product-work-sub {
	font-size: 1.05rem;
	line-height: 1.55;
	color: #718096;
	margin: 0;
}

.nexa-product-work--no-images .nexa-product-work-head {
	margin-bottom: 0;
}

.nexa-product-work-item {
	height: 100%;
}

.nexa-product-work-figure {
	position: relative;
	margin: 0;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 36px rgba(26, 32, 44, 0.12);
	background: #e5e7eb;
	transition: box-shadow 0.3s ease;
}

.nexa-product-work-item:hover .nexa-product-work-figure {
	box-shadow: 0 16px 44px rgba(26, 32, 44, 0.16);
}

.nexa-product-work-img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: middle;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: transform 0.45s ease;
	transform-origin: center center;
}

.nexa-product-work-item:hover .nexa-product-work-img {
	transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
	.nexa-product-work-img {
		transition: none;
	}

	.nexa-product-work-item:hover .nexa-product-work-img {
		transform: none;
	}
}

.nexa-product-work-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	padding: 1.25rem 1.35rem 1rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	text-align: left;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.25) 55%, transparent 100%);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* Single product – Technical specifications */
.nexa-product-specs {
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	font-family: var(--nexa-font);
}

.nexa-product-specs-card {
	background: #164272;
	border-radius: 24px;
	padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.75rem);
	box-shadow: 0 16px 48px rgba(22, 66, 114, 0.25);
}

.nexa-product-specs-head {
	margin-bottom: 1.75rem;
}

.nexa-product-specs-icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	font-size: 1.35rem;
	margin-bottom: 1rem;
}

.nexa-product-specs-title {
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.25;
	margin: 0;
	letter-spacing: -0.02em;
}

/* Specs list = homepage About pattern (.nexa-about-list); navy card needs light text + same orange icons */
.nexa-product-specs .nexa-about-list {
	gap: 0.75rem clamp(1rem, 4vw, 2rem);
}

.nexa-product-specs .nexa-about-list li {
	color: rgba(255, 255, 255, 0.92);
}

.nexa-product-specs .nexa-about-list li i {
	color: #f58a46;
}

.nexa-product-specs-line {
	font-size: 0.98rem;
	line-height: 1.55;
	color: inherit;
	flex: 1;
	min-width: 0;
}

.nexa-product-specs-label {
	font-weight: 700;
	color: #fff;
}

.nexa-product-specs-value {
	font-weight: 400;
	color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 575.98px) {
	.nexa-product-specs .nexa-about-list {
		grid-template-columns: 1fr;
	}
}

.nexa-product-specs-figure {
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
	background: rgba(0, 0, 0, 0.15);
	margin: 0;
}

.nexa-product-specs-img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: middle;
	min-height: 280px;
	object-fit: cover;
	aspect-ratio: 3 / 4;
}

@media (max-width: 991.98px) {
	.nexa-product-specs-img {
		aspect-ratio: 16 / 10;
		min-height: 200px;
	}
}

.nexa-product-single {
	background: #f9fafb;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.nexa-product-single-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

/* =============================================================================
   Products
   ============================================================================= */
.nexa-products-section {
	background: #F9FAFB;
	font-family: var(--nexa-font);
}

.nexa-product-card {
	background: #f9fafb;
	border-radius: 12px;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid #e5e7eb;
	transition: box-shadow 0.2s ease;
}

.nexa-product-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nexa-product-card-image {
	display: block;
	aspect-ratio: 16/10;
	overflow: hidden;
	background: #e5e7eb;
}

.nexa-product-card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transform-origin: center center;
	transition: transform 0.45s ease;
}

.nexa-product-card:hover .nexa-product-card-image img {
	transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
	.nexa-product-card-image img {
		transition: none;
	}

	.nexa-product-card:hover .nexa-product-card-image img {
		transform: scale(1);
	}
}

.nexa-product-card-body {
	padding: 1.25rem 1.25rem 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	background-color: #fff;
}

.nexa-product-card-title {
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 0.5rem 0;
	line-height: 1.3;
}

.nexa-product-card-title a {
	color: #1f2937;
	text-decoration: none;
}

.nexa-product-card-title a:hover {
	color: var(--nexa-primary);
}

.nexa-product-card-excerpt {
	font-size: 0.9rem;
	color: #6b7280;
	line-height: 1.5;
	margin: 0 0 0.75rem 0;
	flex: 1;
}

.nexa-product-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 0.5rem;
	margin-bottom: 1rem;
}

.nexa-product-tag {
	display: inline-block;
	padding: 0.35rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 500;
	color: #374151;
	background: #f3f4f6;
	border-radius: 999px;
}

.nexa-product-card-btn {
	display: block;
	width: 100%;
	padding: 0.6rem 1.25rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: #374151;
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	text-align: center;
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease;
	align-self: flex-start;
}

.nexa-product-card-btn:hover {
	border-color: var(--nexa-primary);
	color: var(--nexa-primary);
}

.nexa-products-cta-text {
	font-size: 1.05rem;
	color: #4b5563;
	margin: 0 0 1rem 0;
}

.nexa-products-cta-btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background: var(--nexa-primary);
	color: #fff !important;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	border-radius: 8px;
	transition: background 0.2s ease;
}

.nexa-products-cta-btn:hover {
	background: var(--nexa-primary-hover);
	color: #fff !important;
}

/* =============================================================================
   Services
   ============================================================================= */
.nexa-services-section {
	background: #fff;
	font-family: var(--nexa-font);
}

.nexa-service-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 1.5rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s ease;
}

.nexa-service-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.nexa-service-card-icon-wrap {
	margin-bottom: 1rem;
}

.nexa-service-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px; 
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
}

.nexa-service-card-icon-img {
	width: 56px;
	height: 56px;
	object-fit: contain;
}

.nexa-service-card-title {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0 0 0.65rem 0;
	line-height: 1.3;
}

.nexa-service-card-title a {
	color: #1f2937;
	text-decoration: none;
}

.nexa-service-card-title a:hover {
	color: var(--nexa-primary);
}

.nexa-service-card-excerpt {
	font-size: 0.95rem;
	color: #6b7280;
	line-height: 1.55;
	margin: 0 0 1.25rem 0;
	flex: 1;
}

.nexa-service-card-link {
	color: var(--nexa-primary);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	margin-top: auto;
	align-self: flex-start;
}

.nexa-service-card-link:hover {
	color: #c44e03;
	text-decoration: underline;
}

/* =============================================================================
   Why Us (Why Choose Us + stats)
   ============================================================================= */
.nexa-why-us-section {
	background: #fff;
	font-family: var(--nexa-font);
}

.nexa-why-us-card {
	background: #f9fafb; 
	border-radius: 12px;
	padding: 1.5rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s ease;
}

.nexa-why-us-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.nexa-why-us-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: rgba(232, 93, 4, 0.12);
	border-radius: 10px;
	color: var(--nexa-primary);
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.nexa-why-us-card-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 0.65rem 0;
	line-height: 1.3;
}

.nexa-why-us-card-desc {
	font-size: 0.95rem;
	color: #6b7280;
	line-height: 1.55;
	margin: 0;
	flex: 1;
}

.nexa-why-us-stats {
	background: #1e3a5f;
	border-radius: 12px;
	padding: 2rem 1.5rem;
}

.nexa-why-us-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.nexa-why-us-stat-num {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 4px;
	width: 100%;
	justify-content: center;
}

.nexa-why-us-stat-num .bi {
	font-size: 0.65em;
	vertical-align: middle;
}

.nexa-why-us-stat-label {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.75);
	margin-top: 0.35rem;
}

/* =============================================================================
   Featured Projects
   ============================================================================= */
.nexa-featured-projects {
	background: #F9FAFB;
	font-family: var(--nexa-font);
}

.nexa-featured-projects--archive {
	background: #f3f4f6;
}

.nexa-fp-filter {
	padding: 0.5rem 1.15rem;
	font-size: 0.9rem;
	font-weight: normal;
	letter-spacing: 0;
	text-transform: none;
	font-family: var(--nexa-font);
	color: #4b5563;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 24px;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nexa-fp-filter:hover {
	border-color: var(--nexa-primary);
	color: var(--nexa-primary);
	text-decoration: none;
}

.nexa-fp-filter.is-active {
	background: var(--nexa-primary);
	color: #fff;
	border-color: var(--nexa-primary);
}

.nexa-fp-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid #e5e7eb;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.nexa-fp-card:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.nexa-fp-card-image {
	position: relative;
	display: block;
	aspect-ratio: 16/10;
	overflow: hidden;
	background: #e5e7eb;
}

/* Bottom gradient + category pill — visible on card hover */
.nexa-fp-card-image-shade {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 55%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.25) 45%, transparent 100%);
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
	z-index: 1;
}

.nexa-fp-card-category {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	z-index: 2;
	padding: 0.38rem 0.95rem;
	font-size: 0.8rem;
	font-weight: 600;
	font-family: var(--nexa-font);
	line-height: 1.2;
	color: #fff !important;
	background: var(--nexa-primary);
	border-radius: 999px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.35s ease, transform 0.35s ease;
	pointer-events: none;
}

.nexa-fp-card:hover .nexa-fp-card-image-shade {
	opacity: 1;
}

.nexa-fp-card:hover .nexa-fp-card-category {
	opacity: 1;
	transform: translateY(0);
}

.nexa-fp-card:focus-within .nexa-fp-card-image-shade {
	opacity: 1;
}

.nexa-fp-card:focus-within .nexa-fp-card-category {
	opacity: 1;
	transform: translateY(0);
}

.nexa-fp-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1);
	transform-origin: center center;
	transition: transform 0.45s ease;
}

.nexa-fp-card:hover .nexa-fp-card-image img {
	transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
	.nexa-fp-card-image img {
		transition: none;
	}

	.nexa-fp-card:hover .nexa-fp-card-image img {
		transform: scale(1);
	}

	.nexa-fp-card-image-shade,
	.nexa-fp-card-category {
		transition: none;
	}

	.nexa-fp-card:hover .nexa-fp-card-category {
		transform: translateY(0);
	}
}

.nexa-fp-card-placeholder {
	aspect-ratio: 16/10;
	background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
}

.nexa-fp-card-body {
	padding: 1.15rem 1.25rem 1.35rem;
}

.nexa-fp-card-title {
	font-size: 1.05rem;
	font-weight: 600;
	margin: 0 0 0.5rem 0;
	line-height: 1.35;
}

.nexa-fp-card-title a {
	color: #1f2937;
}

.nexa-fp-card-title a:hover {
	color: var(--nexa-primary);
}

.nexa-fp-card-location {
	font-size: 0.9rem;
	color: #9ca3af;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
}

.nexa-fp-card-location .bi {
	color: var(--nexa-primary);
	font-size: 1rem;
}

.nexa-featured-projects:not(.nexa-featured-projects--archive) .nexa-fp-card-location {
	justify-content: flex-start;
}

.nexa-fp-view-all {
	display: inline-block;
	padding: 0.7rem 1.75rem;
	font-size: 0.95rem;
	font-weight: 600;
	font-family: var(--nexa-font);
	color: #374151 !important;
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.nexa-fp-view-all:hover {
	border-color: var(--nexa-primary);
	color: var(--nexa-primary) !important;
}

/* =============================================================================
   Pricing guide (homepage — below Featured Projects)
   ============================================================================= */
.nexa-pricing-guide {
	background: #fff;
	font-family: var(--nexa-font);
	padding: clamp(3rem, 6vw, 4.5rem) 0; 
}

.nexa-pricing-guide .nexa-section-head {
	margin-bottom: 2.5rem;
}

.nexa-pricing-guide-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
}

.nexa-pricing-guide-label-emoji {
	font-size: 1.05rem;
	line-height: 1;
}

.nexa-pricing-guide-grid {
	margin-bottom: 0;
}

.nexa-pricing-guide-feature-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: clamp(1.5rem, 4vw, 2rem) 1.35rem 1.75rem;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
	transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.nexa-pricing-guide-feature-card:hover {
	box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
	transform: translateY(-4px);
	border-color: rgba(232, 93, 4, 0.35);
}

.nexa-pricing-guide-card-icon {
	width: 3.5rem;
	height: 3.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.15rem;
	border-radius: 14px;
	background: rgba(232, 93, 4, 0.12);
	color: var(--nexa-primary);
	font-size: 1.65rem;
	line-height: 1;
}

.nexa-pricing-guide-card-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 0.5rem 0;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.nexa-pricing-guide-card-price {
	font-size: clamp(1.2rem, 2.5vw, 1.45rem);
	font-weight: 800;
	color: var(--nexa-primary);
	margin: 0 0 1.15rem 0;
	line-height: 1.2;
}

.nexa-pricing-guide-card-price--quote {
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.nexa-pricing-guide-card-features {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	text-align: left;
	border-top: 1px solid #f1f5f9;
	padding-top: 1.1rem;
}

.nexa-pricing-guide-card-features li {
	position: relative;
	margin: 0 0 0.65rem 0;
	padding-left: 1.35rem;
	font-size: 0.92rem;
	line-height: 1.5;
	color: #64748b;
}

.nexa-pricing-guide-card-features li:last-child {
	margin-bottom: 0;
}

.nexa-pricing-guide-card-features li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45rem;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--nexa-primary);
	opacity: 0.85;
}

.nexa-pricing-guide-note-wrap {
	max-width: 720px;
	margin: 2.25rem auto 0;
}

.nexa-pricing-guide-note {
	margin: 0;
	padding: 1rem 1.15rem;
	font-size: 0.95rem;
	line-height: 1.55;
	color: #64748b;
	background: #f8fafc;
	border: 1px solid rgba(232, 93, 4, 0.22);
	border-radius: 10px;
	border-left: 4px solid var(--nexa-primary);
}

.nexa-pricing-guide-note strong {
	color: #1e293b;
	font-weight: 700;
	margin-right: 0.35rem;
}

@media (prefers-reduced-motion: reduce) {
	.nexa-pricing-guide-feature-card {
		transition: none;
	}

	.nexa-pricing-guide-feature-card:hover {
		transform: none;
	}
}

/* =============================================================================
   Contact page — info cards (template Nexa Contact)
   ============================================================================= */
.nexa-contact-cards-section {
	background: #f8fafc;
	border-bottom: 1px solid #e2e8f0;
}

.nexa-contact-cards-row {
	--nexa-contact-card-gap: 1.25rem;
}

.nexa-contact-card {
	background: #fff;
	border: 1px solid #e8ecf0;
	border-radius: 14px;
	padding: 1.75rem 1.5rem;
	box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
	height: 100%;
}

.nexa-contact-card:hover {
	border-color: #e2e8f0;
	box-shadow: 0 8px 32px rgba(15, 23, 42, 0.09);
}

.nexa-contact-card-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: #ffedd5;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.1rem;
}

.nexa-contact-card-icon .bi {
	font-size: 1.35rem;
	color: #f97316;
	line-height: 1;
}

.nexa-contact-card-title {
	font-family: var(--nexa-font, "Poppins", system-ui, sans-serif);
	font-size: 1rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 0.65rem;
	line-height: 1.3;
}

.nexa-contact-card-primary {
	display: block;
	font-size: 0.95rem;
	font-weight: 600;
	color: #0f172a !important;
	text-decoration: none !important;
	line-height: 1.45;
	margin: 0 0 0.35rem;
	word-break: break-word;
}

a.nexa-contact-card-primary:hover {
	color: var(--nexa-primary, #f97316) !important;
}

.nexa-contact-card-sub {
	font-size: 0.875rem;
	color: #64748b;
	line-height: 1.5;
	margin: 0.5rem 0 0;
}

.nexa-template-contact .nexa-contact-page-content:empty {
	min-height: 0;
	padding: 0;
}

.nexa-template-contact .nexa-contact-page-content > *:first-child {
	margin-top: 0;
}

/* =============================================================================
   Contact page — form over map (template Nexa Contact)
   ============================================================================= */
.nexa-contact-form-section {
	position: relative;
	background: #fff;
	padding: 2.5rem 0 10rem;
	overflow: hidden;
}

@media (min-width: 992px) {
	.nexa-contact-form-section {
		padding: 3rem 0 12rem;
	}
}

.nexa-contact-form-map-wrap {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: min(58vh, 520px);
	min-height: 280px;
	z-index: 0;
	background: #e2e8f0;
}

.nexa-contact-form-map-img,
.nexa-contact-form-map-fallback {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	filter: grayscale(100%) contrast(0.92);
	opacity: 0.95;
}

.nexa-contact-form-map-fallback {
	background-image: linear-gradient(160deg, #cbd5e1 0%, #94a3b8 45%, #64748b 100%);
	filter: none;
	opacity: 1;
}

.nexa-contact-form-map-iframe {
	position: absolute;
	inset: 0;
	filter: grayscale(100%) contrast(0.95);
}

.nexa-contact-form-map-iframe iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 280px;
	border: 0;
}

.nexa-contact-form-inner {
	position: relative;
	z-index: 2;
	padding: 0 0 2rem;
}

.nexa-contact-form-card {
	max-width: 720px;
	margin: 0 auto;
	background: #fff;
	border-radius: 14px;
	padding: 2.25rem 1.75rem 2rem;
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14), 0 4px 16px rgba(15, 23, 42, 0.06);
	border: 1px solid rgba(226, 232, 240, 0.9);
}

@media (min-width: 768px) {
	.nexa-contact-form-card {
		padding: 2.75rem 2.5rem 2.5rem;
	}
}

.nexa-contact-form-kicker {
	font-family: var(--nexa-font, "Poppins", system-ui, sans-serif);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nexa-primary);
	margin: 0 0 0.5rem;
}

.nexa-contact-form-title {
	font-family: var(--nexa-font, "Poppins", system-ui, sans-serif);
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 1.75rem;
	line-height: 1.25;
}

.nexa-contact-form-admin-hint,
.nexa-contact-form-empty {
	font-size: 0.9rem;
	padding: 1rem 1.1rem;
	background: #f8fafc;
	border-radius: 8px;
	border-left: 3px solid var(--nexa-primary);
}

.nexa-contact-form-admin-hint {
	color: #b45309;
	background: #fffbeb;
	border-left-color: #f59e0b;
}

/* CF7 — contact page (primary CTA matches theme / hero buttons) */
.nexa-contact-page-cf7 .wpcf7-form {
	margin: 0;
	padding: 0;
}

.nexa-contact-page-cf7 .wpcf7-form p {
	margin: 0 !important;
	padding: 0 !important;
}

.nexa-contact-page-cf7 .nexa-cp-cf7-inner > br {
	display: none;
}

.nexa-contact-page-cf7 .wpcf7-form-control-wrap {
	display: block !important;
	width: 100% !important;
	margin: 0 !important;
	box-sizing: border-box;
}

.nexa-contact-page-cf7 label {
	display: block !important;
	font-family: var(--nexa-font, "Poppins", system-ui, sans-serif);
	font-size: 0.875rem;
	font-weight: 600;
	color: #0f172a;
	margin: 0 0 0.35rem;
}

.nexa-contact-page-cf7 label > .wpcf7-form-control-wrap {
	margin-top: 0.35rem !important;
}

.nexa-contact-page-cf7 .nexa-cp-field {
	margin-bottom: 1.15rem;
}

.nexa-contact-page-cf7 .nexa-cp-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 1.25rem;
	margin-bottom: 1.15rem;
	align-items: start;
}

@media (max-width: 575px) {
	.nexa-contact-page-cf7 .nexa-cp-row {
		grid-template-columns: 1fr;
	}
	.nexa-contact-page-cf7 .nexa-cp-row .nexa-cp-col:first-child {
		margin-bottom: 1.15rem;
	}
}

.nexa-contact-page-cf7 .nexa-cp-col {
	margin: 0 !important;
	min-width: 0;
}

.nexa-contact-page-cf7 .nexa-cp-input,
.nexa-contact-page-cf7 .nexa-cp-textarea,
.nexa-contact-page-cf7 input[type="text"],
.nexa-contact-page-cf7 input[type="email"],
.nexa-contact-page-cf7 input[type="tel"],
.nexa-contact-page-cf7 textarea {
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
	background: #fff !important;
	border: 1px solid #d1d5db !important;
	border-radius: 8px !important;
	padding: 0.7rem 1rem !important;
	font-family: var(--nexa-font, "Poppins", system-ui, sans-serif) !important;
	font-size: 0.9375rem !important;
	line-height: 1.45 !important;
	color: #0f172a !important;
	margin: 0 !important;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.nexa-contact-page-cf7 textarea,
.nexa-contact-page-cf7 .nexa-cp-textarea {
	min-height: 140px;
	resize: vertical;
}

.nexa-contact-page-cf7 ::placeholder {
	color: #9ca3af !important;
	opacity: 1 !important;
}

.nexa-contact-page-cf7 .nexa-cp-input:focus,
.nexa-contact-page-cf7 .nexa-cp-textarea:focus,
.nexa-contact-page-cf7 input:focus,
.nexa-contact-page-cf7 textarea:focus {
	outline: none !important;
	border-color: var(--nexa-primary) !important;
	box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.18) !important;
}

.nexa-contact-page-cf7 input.wpcf7-not-valid,
.nexa-contact-page-cf7 textarea.wpcf7-not-valid {
	border-color: #ef4444 !important;
}

.nexa-contact-page-cf7 .wpcf7-not-valid-tip {
	font-size: 0.75rem;
	color: #dc2626 !important;
	margin: 0.3rem 0 0 !important;
}

.nexa-contact-page-cf7 .nexa-cp-submit-wrap {
	margin: 1.5rem 0 0 !important;
	text-align: center;
}

/* Same treatment as .nexa-hero-btn-primary */
.nexa-contact-page-cf7 .nexa-cp-submit,
.nexa-contact-page-cf7 input.wpcf7-submit[type="submit"] {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	padding: 0.85rem 1.5rem !important;
	border: 2px solid var(--nexa-primary) !important;
	border-radius: 8px !important;
	font-family: var(--nexa-font, "Poppins", system-ui, sans-serif) !important;
	font-size: 1rem !important;
	font-weight: 600 !important;
	color: #fff !important;
	background: var(--nexa-primary) !important;
	box-shadow: none;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.nexa-contact-page-cf7 .nexa-cp-submit:hover,
.nexa-contact-page-cf7 input.wpcf7-submit[type="submit"]:hover {
	background: var(--nexa-primary-hover) !important;
	border-color: var(--nexa-primary-hover) !important;
	color: #fff !important;
	opacity: 1;
}

.nexa-contact-page-cf7 .wpcf7-response-output {
	margin: 1.25rem 0 0;
	padding: 0.75rem 1rem;
	border-radius: 8px;
	font-size: 0.875rem;
}

.nexa-contact-page-cf7 .wpcf7-spinner {
	margin: 12px auto 0;
}

/* =============================================================================
   About Us Section
   ============================================================================= */
.nexa-about-section {
	background: #F9FAFB;
}
.nexa-about-section .nexa-section-label::after {
	content: "";
	position: absolute; 
	left: 0 !important;
	transform: translateX(0) !important;
	bottom: 0;
	width: 2.5rem;
	height: 3px;
	background: var(--nexa-primary);
	border-radius: 2px;
}
.nexa-about-image-wrap {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
	background: #e5e7eb;
}

.nexa-about-image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.nexa-about-image-placeholder {
	width: 100%;
	aspect-ratio: 16/10;
	background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
}

.nexa-about-content .nexa-section-desc {
	margin: 0 0 1.5rem 0;
	max-width: none;
}

.nexa-about-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0;
    grid-template-columns: 1fr 1fr;
}

.nexa-about-list li {
	display: flex;
	align-items: flex-start;
	gap: 0;
	color: #6b7280;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.6;
	margin-left: 0;
}
.nexa-about-list li i{
	color: #f58a46;
}

.nexa-about-list-icon {
	color: var(--nexa-primary);
	font-size: 1.1rem;
	margin-top: 0.1rem;
	flex: 0 0 auto;
}

.nexa-about-cta {
	margin-top: 1.5rem;
}

.nexa-about-btn { 
	padding: 0.8rem 1.5rem;
	font-size: 0.95rem;
	font-weight: 600;
	font-family: var(--nexa-font);
	color: #fff !important;
	background: var(--nexa-primary);
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.15s ease;
	border: 2px solid var(--nexa-primary);
}

.nexa-about-btn:hover {
	background: var(--nexa-primary-hover);
	border-color: var(--nexa-primary-hover);
	transform: translateY(-1px);
}

/* =============================================================================
   Testimonials
   ============================================================================= */
.nexa-testimonials-section {
	background: #fff;
	font-family: var(--nexa-font);
}

.nexa-testimonial-card {
	background: #F9FAFB; 
	border-radius: 12px;
	padding: 1.25rem 1.25rem 1.4rem; 
	display: flex;
	flex-direction: column;
	position: relative;
}
.nexa-testimonial-card::before {
    content: '\F6B0';
    font-family: bootstrap-icons;
    position: absolute;
    right: 20px;
    top: 0;
    color: rgba(255, 107, 53, 0.1);
    font-size: 3rem;
    transform: rotate(180deg);
}
.nexa-testimonial-stars {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nexa-testimonial-stars i {
	color: var(--nexa-primary);
	font-size: 0.95rem;
	line-height: 1;
	margin-right: 2px;
}

.nexa-testimonial-quote {
	margin: 0.75rem 0 1.1rem 0;
	color: #4b5563;
	font-size: 0.95rem;
	line-height: 1.6;
}

.nexa-testimonial-user {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: auto;
    border-top: 1px solid #E5E7EB;
    padding-top: 16px;
}

.nexa-testimonial-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	background: #e5e7eb;
}

.nexa-testimonial-avatar-placeholder {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #e5e7eb;
}

.nexa-testimonial-user-meta {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.nexa-testimonial-name {
	font-weight: 700;
	color: #1f2937;
	font-size: 0.95rem;
}

.nexa-testimonial-location {
	color: #6b7280;
	font-size: 0.9rem;
}

.nexa-testimonial-category {
	color: var(--nexa-primary);
	font-weight: 600;
	font-size: 0.85rem;
	margin-top: 0.1rem;
}

.nexa-testimonials-google-badge {
	margin: 2rem auto 0;
	max-width: max-content;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 0.9rem 1.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
} 

.nexa-testimonials-google-score {
	color: #1E5A8E;
	font-size: 1.1rem;
	font-weight: 800;
}

.nexa-testimonials-google-stars {
	display: inline-flex;
	align-items: center;
	gap: 3px;
}

.nexa-testimonials-google-stars .bi {
	color: var(--nexa-primary);
	font-size: 0.95rem;
	line-height: 1;
}

.nexa-testimonials-google-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.nexa-testimonials-google-title {
	color: #1E5A8E;
	font-weight: 700;
	font-size: 0.95rem;
	line-height: normal;
}

.nexa-testimonials-google-sub {
	color: #6b7280;
	font-size: 0.85rem;
	line-height: normal;
}

/* =============================================================================
   Process (homepage) — horizontal timeline, Nexa colours & section head
   ============================================================================= */
@keyframes nexa-process-fade-up {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes nexa-process-rail-in {
	from {
		transform: scaleX(0);
	}
	to {
		transform: scaleX(1);
	}
}

@keyframes nexa-process-dot-in {
	from {
		opacity: 0;
		transform: scale(0.65);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.nexa-process-section {
	font-family: var(--nexa-font);
	background: #f8fafc;
	color: #1f2937;
	padding: clamp(3rem, 6vw, 4.5rem) 0; 
}

.nexa-process-section .nexa-section-head {
	margin-bottom: clamp(2.25rem, 4vw, 3rem);
	opacity: 0;
	animation: nexa-process-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

.nexa-process-timeline {
	position: relative;
	padding-top: 0.25rem;
	max-width: 1100px;
	margin: 0 auto;
}

/* Horizontal axis — same language as borders elsewhere */
.nexa-process-rail {
	position: absolute;
	left: 0;
	right: 0;
	top: 23px;
	height: 1px;
	background: #e2e8f0;
	z-index: 0;
	pointer-events: none;
	transform: scaleX(0);
	transform-origin: center center;
	animation: nexa-process-rail-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.nexa-process-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem 1.25rem;
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nexa-process-step {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	list-style: none;
	opacity: 0;
	animation: nexa-process-fade-up 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.nexa-process-step:nth-child(1) {
	animation-delay: 0.38s;
}

.nexa-process-step:nth-child(2) {
	animation-delay: 0.52s;
}

.nexa-process-step:nth-child(3) {
	animation-delay: 0.66s;
}

.nexa-process-step:nth-child(4) {
	animation-delay: 0.8s;
}

.nexa-process-node {
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.35rem;
	flex-shrink: 0;
}

.nexa-process-dot {
	width: 2.125rem;
	height: 2.125rem;
	border-radius: 50%;
	background: var(--nexa-primary);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 0 4px #f8fafc;
	position: relative;
	z-index: 2;
	font-family: var(--nexa-font);
	opacity: 0;
	animation: nexa-process-dot-in 0.45s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

.nexa-process-step:nth-child(1) .nexa-process-dot {
	animation-delay: 0.42s;
}

.nexa-process-step:nth-child(2) .nexa-process-dot {
	animation-delay: 0.56s;
}

.nexa-process-step:nth-child(3) .nexa-process-dot {
	animation-delay: 0.7s;
}

.nexa-process-step:nth-child(4) .nexa-process-dot {
	animation-delay: 0.84s;
}

.nexa-process-step-title {
	margin: 0 0 0.45rem 0;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.3;
	color: #1e293b;
	letter-spacing: -0.01em;
}

.nexa-process-step-desc {
	margin: 0;
	font-size: 0.92rem;
	font-weight: 400;
	line-height: 1.55;
	color: #6b7280;
	max-width: 15rem;
}

@media (max-width: 991px) {
	.nexa-process-rail {
		display: none;
	}

	.nexa-process-steps {
		display: flex;
		flex-direction: column;
		gap: 0;
		padding-left: 1.25rem;
		border-left: 2px solid #e2e8f0;
	}

	.nexa-process-step {
		align-items: flex-start;
		text-align: left;
		position: relative;
		padding-bottom: 1.75rem;
		padding-left: 0.5rem;
	}

	.nexa-process-step:last-child {
		padding-bottom: 0;
	}

	.nexa-process-node {
		position: absolute;
		left: -1.25rem;
		top: 0;
		width: 2.25rem;
		height: 2.125rem;
		margin: 0;
		transform: translateX(-50%);
		align-items: center;
	}

	.nexa-process-dot {
		width: 2rem;
		height: 2rem;
		font-size: 0.82rem;
		box-shadow: 0 0 0 3px #f8fafc;
	}

	.nexa-process-step-desc {
		max-width: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nexa-process-section .nexa-section-head,
	.nexa-process-rail,
	.nexa-process-step,
	.nexa-process-dot {
		animation: none !important;
		opacity: 1 !important;
		transform: none !important;
	}

	.nexa-process-rail {
		transform: scaleX(1) !important;
	}
}

/* =============================================================================
   Need Custom Steel CTA
   ============================================================================= */
.nexa-need-cta {
	background: #163B6D;
	color: #fff;
}

.nexa-need-cta-title {
	font-size: clamp(2.1rem, 4.5vw, 3rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 1rem 0;
	line-height: 1.1;
	letter-spacing: 0;
}

.nexa-need-cta-desc {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.65;
	max-width: 740px;
	margin: 0 auto 1.8rem;
}

.nexa-need-cta-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1.6rem;
}

.nexa-need-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	padding: 0.85rem 1.5rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
	min-width: 220px;
}

.nexa-need-cta-btn-primary {
	background: var(--nexa-primary);
	border: 2px solid var(--nexa-primary);
	color: #fff !important;
}

.nexa-need-cta-btn-primary:hover {
	background: var(--nexa-primary-hover);
	border-color: var(--nexa-primary-hover);
	transform: translateY(-1px);
}

.nexa-need-cta-btn-secondary {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.85);
	color: #fff !important;
}

.nexa-need-cta-btn-secondary:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.06);
	transform: translateY(-1px);
}

.nexa-need-cta-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.12);
	width: 100%;
	max-width: 780px;
	margin: 0 auto 1.25rem;
}

.nexa-need-cta-contact-note {
	margin: 0 0 0.95rem 0;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.85);
}

.nexa-need-cta-contact {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.85rem;
}

.nexa-need-cta-contact-item {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	color: rgba(255, 255, 255, 0.95) !important;
	text-decoration: none;
	font-size: 0.95rem;
	white-space: nowrap;
}

.nexa-need-cta-contact-item i {
	color: rgba(255, 255, 255, 0.95);
	font-size: 1rem;
}

.nexa-need-cta-contact-sep {
	opacity: 0.45;
}

/* =============================================================================
   404 Page not found
   ============================================================================= */
.nexa-404-main {
	font-family: var(--nexa-font);
}

.nexa-404 {
	position: relative;
	min-height: calc(70vh - 80px);
	display: flex;
	align-items: center;
	padding: 3.5rem 0 4.5rem;
	background: linear-gradient(180deg, #f8fafc 0%, #fff 55%, #f1f5f9 100%);
	overflow: hidden;
}

.nexa-404-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 80% 50% at 15% 20%, rgba(232, 93, 4, 0.08) 0%, transparent 50%),
		radial-gradient(ellipse 60% 40% at 90% 80%, rgba(30, 58, 95, 0.06) 0%, transparent 45%);
	opacity: 1;
}

.nexa-404-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(
		-12deg,
		transparent,
		transparent 40px,
		rgba(0, 0, 0, 0.015) 40px,
		rgba(0, 0, 0, 0.015) 41px
	);
}

.nexa-404-section-head.nexa-section-head {
	margin-bottom: 1rem;
}

.nexa-404 .nexa-section-title {
	margin-top: 0;
}

.nexa-404-section-desc.nexa-section-desc {
	margin-bottom: 1.75rem;
	max-width: 520px;
}

.nexa-404-code {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: clamp(0.25rem, 2vw, 0.75rem);
	margin: 0 0 1.25rem 0;
	line-height: 1;
}

.nexa-404-digit {
	font-size: clamp(4rem, 18vw, 8rem);
	font-weight: 800;
	color: #1f2937;
	letter-spacing: -0.04em;
	text-shadow: 0 4px 24px rgba(31, 41, 55, 0.08);
}

.nexa-404-digit-accent {
	color: var(--nexa-primary);
	position: relative;
}

.nexa-404-digit-accent::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: clamp(3.5rem, 14vw, 6.5rem);
	height: clamp(3.5rem, 14vw, 6.5rem);
	background: rgba(232, 93, 4, 0.12);
	border-radius: 50%;
	z-index: -1;
}
.error404 #site-content{padding-top: 0;}
.nexa-404-btn { 
	padding: 0.8rem 1.5rem;
	font-size: 0.95rem;
	font-weight: 600;
	font-family: var(--nexa-font);
	text-decoration: none;
	border-radius: 8px;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.nexa-404-btn-primary {
	background: var(--nexa-primary);
	color: #fff !important;
	border: 2px solid var(--nexa-primary);
}

.nexa-404-btn-primary:hover {
	background: var(--nexa-primary-hover);
	border-color: var(--nexa-primary-hover);
	color: #fff !important;
	transform: translateY(-1px);
}

.nexa-404-btn-secondary {
	background: #fff;
	color: #374151 !important;
	border: 2px solid #d1d5db;
}

.nexa-404-btn-secondary:hover {
	border-color: var(--nexa-primary);
	color: var(--nexa-primary) !important;
}

/* =============================================================================
   Responsive (one block per breakpoint â€” do not duplicate breakpoints)
   ============================================================================= */

/* Tablet + mobile: hamburger + drawer; desktop nav hidden to avoid cramped layout */
@media (max-width: 991px) {
	section {
		margin: 2rem 0;
	}

	.nexa-header-inner {
		grid-template-columns: minmax(0, 1fr) auto;
		column-gap: 0.75rem;
		padding-block: 12px;
	}

	.nexa-header-logo .nexa-logo-link {
		min-width: 0;
		max-width: 100%;
	}

	.nexa-header-logo .nexa-logo-text {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		max-width: min(100%, calc(100vw - 5.5rem));
	}

	.nexa-header-logo .custom-logo {
		max-height: 42px;
	}

	.nexa-header-nav {
		display: none !important;
	}

	.nexa-header-cta {
		display: none;
	}

	.nexa-mobile-menu-toggle {
		display: inline-flex !important;
	}
}

@media (max-width: 768px) {
	section{padding: 2rem 0;margin: 0;}
	.nexa-hero {
		min-height: 85vh;
		margin: 0;
		padding: 2rem 0;
	}

	.nexa-hero-inner {
		padding-bottom: 5rem;
	}

	.nexa-hero-stats {
		flex-direction: column;
		align-items: stretch;
	}

	.nexa-hero-stat-card {
		min-width: 0;
	}

	.nexa-why-us-stats {
		padding: 1.75rem 1rem;
	}

	.nexa-why-us-stat-num {
		font-size: 1.5rem;
	}

	.nexa-trust-icon-wrap {
		width: 60px;
		height: 60px;
	}

	.nexa-trust-icon-wrap svg {
		width: 28px;
		height: 28px;
	}

	.nexa-trust-label {
		font-size: 0.9rem;
	}

	.nexa-about-image-wrap {
		border-radius: 14px;
	}

	.nexa-about-content .nexa-section-desc {
		margin-bottom: 1.25rem;
	}

	.nexa-about-cta {
		margin-top: 1.25rem;
	}

	.nexa-about-btn {
		width: 100%;
	}

	.nexa-testimonial-user {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.6rem;
	}

	.nexa-testimonial-avatar-placeholder,
	.nexa-testimonial-avatar {
		width: 48px;
		height: 48px;
	}

	.nexa-need-cta-title {
		font-size: 2.1rem;
	}

	.nexa-need-cta-contact {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

	.nexa-need-cta-contact-sep {
		display: none;
	}

	.nexa-404 {
		min-height: auto;
		padding: 2.5rem 0 3.5rem;
	}

	.nexa-404-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.nexa-404-actions .nexa-404-btn {
		width: 100%;
	}

	.nexa-inner-page-header {
		min-height: 180px;
	}

	.nexa-inner-page-header-wrap {
		padding: 2rem 1rem;
	}

	.nexa-about-story-play {
		left: 50%;
		top: auto;
		bottom: 1.25rem;
		transform: translateX(-50%);
		padding-left: 5px;
	}

	.nexa-about-story-play:hover {
		transform: translateX(-50%) scale(1.05);
	}

	.nexa-about-story-visual {
		padding-left: 0;
		padding-top: 0;
	}

	.nexa-about-story-deco {
		opacity: 0.45;
		right: 0;
		width: min(65%, 220px);
	}

	.nexa-team-section-head {
		margin-bottom: 1.75rem;
	}

	.nexa-team-card-placeholder {
		min-height: 160px;
	}

	.nexa-trust-bar{margin: 0;}

}
/* --- Quote modal (Contact Form 7) — global --- */
#nexa-quote-modal .nexa-quote-modal-dialog {
	max-width: 520px;
}
	#nexa-quote-modal .nexa-quote-modal-content {
		position: relative;
		border-radius: 18px;
		box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
		overflow: visible;
	}
	#nexa-quote-modal .nexa-quote-modal-close {
		position: absolute;
		top: 14px;
		right: 14px;
		z-index: 2;
		opacity: 0.55;
		font-size: 20px;
	}
	#nexa-quote-modal .nexa-quote-modal-close:hover {
		opacity: 1;
	}
	#nexa-quote-modal .nexa-quote-modal-body {
		padding: 2rem 2rem 1.75rem;
	}
	#nexa-quote-modal .nexa-quote-modal-trust {
		display: flex;
		align-items: center;
		gap: 12px;
		margin-bottom: 1.25rem;
	}
	#nexa-quote-modal .nexa-quote-modal-avatars {
		display: flex;
		align-items: center;
		padding-left: 6px;
	}
	#nexa-quote-modal .nexa-quote-modal-avatar {
		width: 36px;
		height: 36px;
		border-radius: 50%;
		border: 2px solid #fff;
		margin-left: -10px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	}
	#nexa-quote-modal .nexa-quote-modal-avatar--1 {
		background: linear-gradient(135deg, #94a3b8, #64748b);
	}
	#nexa-quote-modal .nexa-quote-modal-avatar--2 {
		background: linear-gradient(135deg, #cbd5e1, #94a3b8);
	}
	#nexa-quote-modal .nexa-quote-modal-avatar--3 {
		background: linear-gradient(135deg, #f97316, #ea580c);
	}
	#nexa-quote-modal .nexa-quote-modal-trust-text {
		display: flex;
		flex-direction: column;
		gap: 2px;
		font-size: 0.8125rem;
		line-height: 1.3;
		color: #64748b;
	}
	#nexa-quote-modal .nexa-quote-modal-rating {
		font-weight: 700;
		color: #0f172a;
	}
	#nexa-quote-modal .nexa-quote-modal-title {
		font-family: "Poppins", system-ui, sans-serif;
		font-size: 1.5rem;
		font-weight: 700;
		color: #0f172a;
		margin: 0 0 0.5rem;
		line-height: 1.25;
		padding-right: 2rem;
	}
	#nexa-quote-modal .nexa-quote-modal-lead {
		font-size: 0.9375rem;
		color: #64748b;
		margin: 0 0 1.5rem;
		line-height: 1.5;
	}
	#nexa-quote-modal .nexa-quote-modal-fallback-text {
		color: #64748b;
		font-size: 0.9375rem;
		margin-bottom: 1rem;
	}
	#nexa-quote-modal .nexa-quote-modal-fallback-btn {
		background: linear-gradient(135deg, #ff8a4c, #ff6b35);
		color: #fff !important;
		border: none;
		border-radius: 8px;
		padding: 0.65rem 1.25rem;
		font-weight: 600;
	}
	#nexa-quote-modal .nexa-quote-modal-admin-hint {
		font-size: 0.875rem;
		color: #b91c1c;
		background: #fef2f2;
		border-radius: 8px;
		padding: 12px 14px;
		margin: 0;
	}

	/* CF7 inside modal — reset plugin defaults + consistent field UI */
	#nexa-quote-modal .nexa-quote-cf7 .wpcf7-form {
		margin: 0 !important;
		padding: 0 !important;
	}
	#nexa-quote-modal .nexa-quote-cf7 .wpcf7-form p {
		margin: 0 !important;
		padding: 0 !important;
	}
	#nexa-quote-modal .nexa-quote-cf7 .nexa-cf7-form-inner {
		display: block;
	}
	#nexa-quote-modal .nexa-quote-cf7 .nexa-cf7-form-inner > br {
		display: none;
	}
	#nexa-quote-modal .nexa-quote-cf7 .wpcf7-form-control-wrap {
		display: block !important;
		width: 100% !important;
		max-width: 100%;
		margin: 0 !important;
		padding: 0 !important;
		box-sizing: border-box;
	}
	#nexa-quote-modal .nexa-quote-cf7 label {
		display: block !important;
		font-family: "Poppins", system-ui, -apple-system, sans-serif;
		font-size: 0.8125rem;
		font-weight: 700;
		color: #0f172a;
		margin: 0 0 0.4rem;
		line-height: 1.35;
		letter-spacing: 0.01em;
	}
	#nexa-quote-modal .nexa-quote-cf7 label > .wpcf7-form-control-wrap {
		margin-top: 0.35rem !important;
	}
	#nexa-quote-modal .nexa-quote-cf7 .nexa-cf7-field {
		margin-bottom: 1.125rem;
	}
	#nexa-quote-modal .nexa-quote-cf7 .nexa-cf7-field:last-of-type {
		margin-bottom: 1rem;
	}
	#nexa-quote-modal .nexa-quote-cf7 .nexa-cf7-row {
		display: grid !important;
		grid-template-columns: 1fr 1fr;
		gap: 0 1rem;
		margin: 0 0 1.125rem;
		align-items: start;
	}
	@media (max-width: 575px) {
		#nexa-quote-modal .nexa-quote-cf7 .nexa-cf7-row {
			grid-template-columns: 1fr;
			gap: 0;
		}
		#nexa-quote-modal .nexa-quote-cf7 .nexa-cf7-row .nexa-cf7-col:first-child {
			margin-bottom: 1.125rem;
		}
	}
	#nexa-quote-modal .nexa-quote-cf7 .nexa-cf7-col {
		margin: 0 !important;
		padding: 0 !important;
		min-width: 0;
	}
	#nexa-quote-modal .nexa-quote-cf7 .nexa-cf7-input,
	#nexa-quote-modal .nexa-quote-cf7 .nexa-cf7-textarea,
	#nexa-quote-modal .nexa-quote-cf7 .nexa-cf7-select,
	#nexa-quote-modal .nexa-quote-cf7 input[type="text"],
	#nexa-quote-modal .nexa-quote-cf7 input[type="email"],
	#nexa-quote-modal .nexa-quote-cf7 input[type="tel"],
	#nexa-quote-modal .nexa-quote-cf7 input[type="url"],
	#nexa-quote-modal .nexa-quote-cf7 input[type="number"],
	#nexa-quote-modal .nexa-quote-cf7 select,
	#nexa-quote-modal .nexa-quote-cf7 textarea {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
		background: #f1f3f5 !important;
		border: 1px solid #e9ecef !important;
		border-radius: 10px !important;
		padding: 0.75rem 1rem !important;
		font-family: "Poppins", system-ui, -apple-system, sans-serif !important;
		font-size: 0.9375rem !important;
		line-height: 1.45 !important;
		color: #0f172a !important;
		margin: 0 !important;
		box-shadow: none !important;
		transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
		-webkit-appearance: none;
		appearance: none;
	}
	#nexa-quote-modal .nexa-quote-cf7 select,
	#nexa-quote-modal .nexa-quote-cf7 .nexa-cf7-select {
		cursor: pointer;
		padding-right: 2.5rem !important;
		background-color: #f1f3f5 !important;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
		background-repeat: no-repeat !important;
		background-position: right 14px center !important;
		background-size: 14px !important;
	}
	#nexa-quote-modal .nexa-quote-cf7 textarea,
	#nexa-quote-modal .nexa-quote-cf7 .nexa-cf7-textarea {
		min-height: 120px;
		resize: vertical;
		height: 60px;
	}
	#nexa-quote-modal .nexa-quote-cf7 ::placeholder {
		color: #94a3b8 !important;
		opacity: 1 !important;
	}
	#nexa-quote-modal .nexa-quote-cf7 .nexa-cf7-input:focus,
	#nexa-quote-modal .nexa-quote-cf7 .nexa-cf7-textarea:focus,
	#nexa-quote-modal .nexa-quote-cf7 .nexa-cf7-select:focus,
	#nexa-quote-modal .nexa-quote-cf7 textarea:focus,
	#nexa-quote-modal .nexa-quote-cf7 input:focus {
		outline: none !important;
		border-color: rgba(249, 115, 22, 0.55) !important;
		box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.14) !important;
		background: #fff !important;
	}
	#nexa-quote-modal .nexa-quote-cf7 select:focus,
	#nexa-quote-modal .nexa-quote-cf7 .nexa-cf7-select:focus {
		background-color: #fff !important;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
		background-repeat: no-repeat !important;
		background-position: right 14px center !important;
		background-size: 14px !important;
	}
	#nexa-quote-modal .nexa-quote-cf7 input.wpcf7-not-valid,
	#nexa-quote-modal .nexa-quote-cf7 textarea.wpcf7-not-valid,
	#nexa-quote-modal .nexa-quote-cf7 select.wpcf7-not-valid {
		border-color: #ef4444 !important;
		background: #fef2f2 !important;
	}
	#nexa-quote-modal .nexa-quote-cf7 .wpcf7-not-valid-tip {
		display: block;
		font-size: 0.75rem;
		font-weight: 500;
		color: #dc2626 !important;
		margin: 0.35rem 0 0 !important;
		padding: 0;
	}
	#nexa-quote-modal .nexa-quote-cf7 .nexa-cf7-submit-wrap {
		margin: 0.25rem 0 0 !important;
		padding: 0 !important;
	}
	#nexa-quote-modal .nexa-quote-cf7 .nexa-cf7-submit,
	#nexa-quote-modal .nexa-quote-cf7 input.wpcf7-submit[type="submit"] {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		width: 100% !important;
		margin: 0 !important;
		padding: 0.9rem 1.35rem !important;
		border: none !important;
		border-radius: 10px !important;
		font-family: "Poppins", system-ui, sans-serif !important;
		font-size: 1rem !important;
		font-weight: 600 !important;
		line-height: 1.3 !important;
		color: #fff !important;
		background: linear-gradient(135deg, #ff8a4c, #ff5c3d, #e85d2c) !important;
		box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
		cursor: pointer;
		transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
	}
	#nexa-quote-modal .nexa-quote-cf7 .nexa-cf7-submit:hover,
	#nexa-quote-modal .nexa-quote-cf7 input.wpcf7-submit[type="submit"]:hover {
		transform: translateY(-1px);
		box-shadow: 0 10px 28px rgba(255, 107, 53, 0.42);
		filter: brightness(1.02);
	}
	#nexa-quote-modal .nexa-quote-cf7 .nexa-cf7-submit::after,
	#nexa-quote-modal .nexa-quote-cf7 input.wpcf7-submit[type="submit"]::after {
		content: "";
		display: inline-block;
		width: 1.1em;
		height: 1.1em;
		margin-left: 0.5rem;
		background-color: currentColor;
		-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M15.854.146a.5.5 0 0 1 .11.54l-5.819 14.547a.75.75 0 0 1-1.329.124l-3.178-4.995L.643 7.184a.75.75 0 0 1 .124-1.33L15.314.037a.5.5 0 0 1 .54.11ZM6.636 10.07l2.761 4.338L14.13 2.576 6.636 10.07Zm6.787-8.201L1.591 6.602l4.339 2.76 7.494-7.493Z'/%3E%3C/svg%3E") center / contain no-repeat;
		mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M15.854.146a.5.5 0 0 1 .11.54l-5.819 14.547a.75.75 0 0 1-1.329.124l-3.178-4.995L.643 7.184a.75.75 0 0 1 .124-1.33L15.314.037a.5.5 0 0 1 .54.11ZM6.636 10.07l2.761 4.338L14.13 2.576 6.636 10.07Zm6.787-8.201L1.591 6.602l4.339 2.76 7.494-7.493Z'/%3E%3C/svg%3E") center / contain no-repeat;
	}
	#nexa-quote-modal .nexa-quote-modal-legal {
		text-align: center;
		font-size: 0.75rem;
		color: #94a3b8;
		margin: 1.25rem 0 0;
		line-height: 1.5;
	}
	#nexa-quote-modal .nexa-quote-modal-legal a {
		color: #f97316;
		font-weight: 600;
		text-decoration: none;
	}
	#nexa-quote-modal .nexa-quote-modal-legal a:hover {
		text-decoration: underline;
	}
	#nexa-quote-modal .nexa-quote-cf7 .wpcf7-not-valid-tip {
		font-size: 0.75rem;
		margin-top: 0.25rem;
	}
	#nexa-quote-modal .nexa-quote-cf7 .wpcf7-response-output {
		margin: 1rem 0 0;
		padding: 0.65rem 0.75rem;
		border-radius: 8px;
		font-size: 0.875rem;
	}
#nexa-quote-modal .nexa-quote-cf7 .wpcf7-spinner {
	margin: 8px auto 0;
}

@media (max-width: 575px) {
.nexa-hero-btn{display: block;}
.nexa-testimonials-google-badge{flex-direction: column;max-width: 100%;align-items: flex-start;}
.nexa-testimonials-google-rating { 	width: 100%;	justify-content: flex-start;gap: 4px;}
.nexa-need-cta-btn, .nexa-need-cta-contact-item{width: 100%;}
.nexa-why-us-stat{align-items: flex-start;}
.nexa-why-us-stat-num{width: 100%;}
.nexa-footer-social {margin-bottom: 30px;}
.nexa-footer-legal{justify-content: center;}
}
@media (min-width: 700px) {
	section{
		padding: 4rem 0;
	}
}
