/* =========================================================
   eh-cta-banner.css — "Siap Wujudkan Proyek Impian Anda?"
   BEM: .eh-cta-banner / .eh-cta-banner__*
   ========================================================= */

.eh-cta-banner {
	display: block;
	width: 100%;
	background: linear-gradient(to right, #0c6b7d 0%, #0891b2 55%, #0e9dbf 100%);
	overflow: hidden;
}

.eh-cta-banner__inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 56px;
	display: grid;
	grid-template-columns: 1fr auto auto;
	align-items: stretch;
	min-height: 100px;
	gap: 0;
}

/* ── Content: icon + text ──────────────────────────────── */
.eh-cta-banner__content {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 24px 0;
}

.eh-cta-banner__icon-wrap {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.eh-cta-banner__icon-wrap svg {
	width: 24px;
	height: 24px;
	color: #ffffff;
	stroke: currentColor;
}

.eh-cta-banner__text {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.eh-cta-banner__title {
	font-size: 17px;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	line-height: 1.3;
	letter-spacing: -0.01em;
}

.eh-cta-banner__subtitle {
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.78);
	margin: 0;
	line-height: 1.5;
	max-width: 480px;
}

/* ── CTA Action button ─────────────────────────────────── */
.eh-cta-banner__action {
	display: flex;
	align-items: center;
	padding: 0 40px;
	border-left: 1px solid rgba(255, 255, 255, 0.15);
	border-right: 1px solid rgba(255, 255, 255, 0.15);
	flex-shrink: 0;
}

.eh-cta-banner__btn {
	display: inline-flex;
	align-items: center;
	background: #ffffff;
	color: #0c6b7d;
	font-size: 13.5px;
	font-weight: 600;
	padding: 11px 24px;
	border-radius: 8px;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.15s ease, color 0.15s ease;
	letter-spacing: 0.01em;
}

.eh-cta-banner__btn:hover,
.eh-cta-banner__btn:focus-visible {
	background: #e0f7fc;
	color: #0c6b7d;
	outline: none;
}

/* ── Right: professional image ─────────────────────────── */
.eh-cta-banner__image {
	width: 300px;
	flex-shrink: 0;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
	.eh-cta-banner__inner {
		padding: 0 32px;
		grid-template-columns: 1fr auto auto;
		gap: 0;
	}

	.eh-cta-banner__action {
		padding: 0 24px;
	}

	.eh-cta-banner__image {
		width: 220px;
	}
}

@media (max-width: 768px) {
	.eh-cta-banner__inner {
		grid-template-columns: 1fr;
		padding: 28px 20px;
		gap: 18px;
		min-height: auto;
	}

	.eh-cta-banner__content {
		padding: 0;
		gap: 14px;
	}

	.eh-cta-banner__icon-wrap {
		width: 44px;
		height: 44px;
		flex-shrink: 0;
	}

	.eh-cta-banner__title {
		font-size: 16px;
	}

	.eh-cta-banner__subtitle {
		font-size: 12px;
	}

	.eh-cta-banner__action {
		border-left: none;
		border-right: none;
		padding: 0;
	}

	.eh-cta-banner__btn {
		width: 100%;
		justify-content: center;
		padding: 13px 20px;
		font-size: 13px;
	}

	.eh-cta-banner__image {
		display: none;
	}
}

@media (max-width: 400px) {
	.eh-cta-banner__inner {
		padding: 24px 16px;
	}

	.eh-cta-banner__content {
		flex-direction: column;
		gap: 12px;
	}

	.eh-cta-banner__title {
		font-size: 15px;
	}
}
