.contact-hero-wrap {
	position: relative;
	background: #ffffff;
	overflow: hidden;
	padding: 80px 20px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ch-bg-shapes {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	z-index: 0;
	pointer-events: none;
}
.ch-shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.3;
}
.ch-shape-1 {
	top: -100px;
	left: -100px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, #239322 0%, rgba(35,147,34,0) 70%);
}
.ch-shape-2 {
	bottom: -150px;
	right: -100px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, #18273A 0%, rgba(24,39,58,0) 70%);
	opacity: 0.1;
}

.ch-container {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 60px;
}

.ch-content {
	flex: 1;
	max-width: 600px;
}

.ch-tag {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.ch-heading {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 24px;
}

.ch-subheading {
	font-size: 18px;
	color: #555;
	line-height: 1.6;
	margin: 0 0 32px;
}

.ch-features {
	list-style: none;
	padding: 0;
	margin: 0 0 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.ch-feature {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 500;
	color: #333;
}

.ch-actions {
	display: flex;
	gap: 20px;
	margin-bottom: 40px;
}
.ch-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}
.ch-btn-primary {
	color: #fff;
}
.ch-btn-primary:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 20px rgba(35,147,34,0.2);
}
.ch-btn-secondary {
	background: transparent;
}
.ch-btn-secondary:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 20px rgba(24,39,58,0.1);
}

.ch-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 13px;
	color: #666;
	font-weight: 500;
}
.ch-badge {
	display: inline-flex;
	align-items: center;
	background: rgba(255,255,255,0.8);
	padding: 6px 12px;
	border-radius: 20px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	backdrop-filter: blur(4px);
}

.ch-image-wrap {
	flex: 1;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.ch-image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

/* Animations */
@keyframes chFadeUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes chFadeIn {
	from { opacity: 0; transform: scale(0.95); }
	to { opacity: 1; transform: scale(1); }
}

.ch-fade-up {
	opacity: 0;
	animation: chFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.ch-fade-in {
	opacity: 0;
	animation: chFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@media (max-width: 991px) {
	.ch-container {
		flex-direction: column;
	}
	.ch-content {
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.ch-heading {
		font-size: 36px;
	}
	.ch-features {
		grid-template-columns: 1fr;
	}
	.ch-actions {
		flex-direction: column;
	}
	.ch-btn {
		width: 100%;
	}
}
