/* ============================================================
 * NationVoice — Say Hello (text + globe two-column CTA)
 * ============================================================ */

.nv-sh-wrapper {
	--nv-primary: #3c4d8c;
	--nv-accent: #ff6716;
	--nv-dark: #0a2238;
	--nv-text: #5e5e5e;
	--nv-bg: #ffffff;
	--nv-font-body: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--nv-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--nv-trans: 0.3s var(--nv-ease);
	font-family: var(--nv-font-body);
	color: var(--nv-text);
}
.nv-sh-wrapper *, .nv-sh-wrapper *::before, .nv-sh-wrapper *::after { box-sizing: border-box; }

.elementor-page .nv-sh-wrapper,
.e-con .nv-sh-wrapper,
.elementor-widget-container .nv-sh-wrapper {
	font-family: var(--nv-font-body) !important;
	color: var(--nv-text) !important;
}

.nv-sh-wrapper .nv-sh { background-color: var(--nv-bg); }
.nv-sh-wrapper .nv-sh__container {
	max-width: 1080px;
	margin: 0 auto;
	padding: 64px 24px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

/* Image position swap */
.nv-sh-wrapper .nv-sh--image-left .nv-sh__text-col  { order: 2; }
.nv-sh-wrapper .nv-sh--image-left .nv-sh__image     { order: 1; }

.nv-sh-wrapper .nv-sh__text-col {
	display: flex;
	flex-direction: column;
	gap: 18px;
	max-width: 440px;
	text-align: center;
	margin: 0 auto;
}
.nv-sh-wrapper .nv-sh--image-left .nv-sh__text-col,
.nv-sh-wrapper .nv-sh--image-right .nv-sh__text-col { margin: 0; }

.nv-sh-wrapper .nv-sh__text {
	margin: 0;
	font-family: var(--nv-font-body) !important;
	font-size: 14.5px;
	line-height: 1.75;
	color: var(--nv-text);
	text-align: center;
}

.nv-sh-wrapper .nv-sh__btn {
	align-self: center;
	display: inline-flex;
	padding: 12px 28px;
	background-color: var(--nv-dark);
	color: #ffffff !important;
	border: 2px solid var(--nv-dark);
	border-radius: 4px;
	font-family: var(--nv-font-body) !important;
	font-weight: 600;
	font-size: 12.5px;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background-color var(--nv-trans), border-color var(--nv-trans), transform var(--nv-trans), color var(--nv-trans);
}
.nv-sh-wrapper .nv-sh__btn:hover,
.nv-sh-wrapper .nv-sh__btn:focus {
	background-color: var(--nv-accent);
	border-color: var(--nv-accent);
	color: #ffffff !important;
	transform: translateY(-2px);
}

.nv-sh-wrapper .nv-sh__image {
	display: flex;
	align-items: center;
	justify-content: center;
}
.nv-sh-wrapper .nv-sh__image img {
	display: block;
	width: 100%;
	max-width: 320px;
	height: auto;

	opacity: 0;
	transform: translateY(12px) scale(0.95);
	animation: nv-sh-pop 0.8s var(--nv-ease) 0.15s forwards;
}
@keyframes nv-sh-pop {
	to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 768px) {
	.nv-sh-wrapper .nv-sh__container {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 48px 16px;
	}
	.nv-sh-wrapper .nv-sh--image-left .nv-sh__text-col,
	.nv-sh-wrapper .nv-sh--image-right .nv-sh__text-col {
		order: 2;
		margin: 0 auto;
	}
	.nv-sh-wrapper .nv-sh--image-left .nv-sh__image,
	.nv-sh-wrapper .nv-sh--image-right .nv-sh__image { order: 1; }
}

@media (prefers-reduced-motion: reduce) {
	.nv-sh-wrapper .nv-sh__image img { opacity: 1 !important; transform: none !important; animation: none !important; }
}
