/* ── Contact page parallax hero ── */
.contact-hero {
	position: relative;
	background-image:
		linear-gradient(135deg, rgba(13,27,42,.85) 0%, rgba(21,101,192,.75) 100%),
		url('https://smartupworld.com/wp-content/uploads/2026/08/Get-in-Touch.avif');
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 560px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
@media (max-width: 768px) {
	.contact-hero { background-attachment: scroll; min-height: 480px; }
}

.contact-hero__overlay { position: absolute; inset: 0; pointer-events: none; }

.contact-hero__body {
	position: relative;
	z-index: 2;
	max-width: 860px;
	width: 100%;
	padding: 80px 24px 60px;
	text-align: center;
}

/* Badge */
.contact-hero__badge {
	display: inline-block;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: #FFB74D;
	border: 1px solid rgba(255,183,77,.45);
	background: rgba(0,0,0,.28);
	padding: 5px 18px;
	border-radius: 50px;
	margin-bottom: 24px;
}

/* Heading */
.contact-hero__title {
	font-size: clamp(2rem, 5vw, 3.2rem);
	font-weight: 800;
	color: #fff;
	line-height: 1.15;
	margin: 0 auto 20px;
	max-width: 780px;
}
.contact-hero__title span { color: #FFB74D; }

/* Subtitle */
.contact-hero__sub {
	font-size: clamp(1rem, 2vw, 1.15rem);
	color: rgba(255,255,255,.82);
	max-width: 520px;
	margin: 0 auto 36px;
	line-height: 1.65;
}

/* CTA */
.contact-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #FF6D00;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	padding: 15px 36px;
	border-radius: 50px;
	text-decoration: none;
	box-shadow: 0 6px 28px rgba(255,109,0,.42);
	transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
	margin-bottom: 52px;
}
.contact-hero__cta:hover {
	background: #E65100;
	transform: translateY(-2px);
	box-shadow: 0 10px 36px rgba(255,109,0,.52);
	color: #fff;
	text-decoration: none;
}

/* Stats strip */
.contact-hero__stats {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	border-top: 1px solid rgba(255,255,255,.15);
	padding-top: 36px;
}
.contact-hero__stat {
	text-align: center;
	padding: 0 36px;
	border-right: 1px solid rgba(255,255,255,.15);
}
.contact-hero__stat:last-child { border-right: none; }
.contact-hero__stat-num {
	display: block;
	font-size: 2rem;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	margin-bottom: 6px;
}
.contact-hero__stat-label {
	font-size: .72rem;
	color: rgba(255,255,255,.65);
	letter-spacing: .08em;
	text-transform: uppercase;
}
@media (max-width: 600px) {
	.contact-hero__stat {
		padding: 16px 20px;
		border-right: none;
		border-bottom: 1px solid rgba(255,255,255,.12);
		width: 50%;
	}
	.contact-hero__stat:last-child { border-bottom: none; }
}