/* Centritek Contact CTA — public-facing styles
 *
 * Standalone Elementor widget that owns the dark conversion band on
 * /resources, /showroom, and any other page that drops the widget in.
 * Class names are intentionally NOT scoped under .ct-resources so the
 * widget renders cleanly outside that wrapper. Selectors are prefixed
 * with `.ct-contact-cta` to clear Elementor's heading/button kit.
 */

.ct-contact-cta {
	background: #1a1a1a;
	color: #fff;
	padding: 72px 40px;
	position: relative;
	overflow: hidden;
}

.ct-contact-cta *,
.ct-contact-cta *::before,
.ct-contact-cta *::after {
	box-sizing: border-box;
}

.ct-contact-cta__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 48px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.ct-contact-cta__text {
	min-width: 0; /* let long lines wrap inside grid cell */
}

.ct-contact-cta__kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--e-global-typography-accent-font-family, "IBM Plex Mono"), monospace;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #F56A22;
	margin: 0 0 16px;
}

.ct-contact-cta__kicker-bar {
	display: inline-block;
	width: 24px;
	height: 1px;
	background: #F56A22;
}

/* Heading scoped under .ct-contact-cta to clear Elementor's heading kit. */
.ct-contact-cta .ct-contact-cta__title {
	font-family: var(--heading-font, "Plus Jakarta Sans"), system-ui, sans-serif;
	font-weight: 800;
	font-size: 36px;
	line-height: 1.15;
	letter-spacing: -0.015em;
	color: #fff;
	margin: 0 0 14px;
	max-width: 640px;
	text-transform: none;
}

.ct-contact-cta__body {
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.72);
	margin: 0;
	max-width: 560px;
}

.ct-contact-cta__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

/* Button scoped to clear Elementor button kit (specificity 0,1,2). */
.ct-contact-cta .ct-contact-cta__button {
	background: #F56A22;
	color: #fff;
	border: 1px solid #F56A22;
	border-radius: 0;
	padding: 16px 26px;
	font-family: var(--heading-font, "Plus Jakarta Sans"), system-ui, sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	min-height: 44px;
	text-decoration: none;
	transition: background 150ms ease, border-color 150ms ease;
	box-shadow: none;
	text-shadow: none;
}

.ct-contact-cta .ct-contact-cta__button:hover,
.ct-contact-cta .ct-contact-cta__button:focus-visible {
	background: #d44a1c;
	border-color: #d44a1c;
	color: #fff;
}

.ct-contact-cta .ct-contact-cta__button:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.ct-contact-cta__arr {
	font-family: var(--e-global-typography-accent-font-family, "IBM Plex Mono"), monospace;
	font-weight: 500;
	font-size: 13px;
}

.ct-contact-cta__phone {
	font-family: var(--e-global-typography-accent-font-family, "IBM Plex Mono"), monospace;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
}

.ct-contact-cta__phone a {
	color: #fff;
	text-decoration: none;
	margin-left: 8px;
}

.ct-contact-cta__phone b {
	font-family: var(--heading-font, "Plus Jakarta Sans"), system-ui, sans-serif;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: -0.005em;
	text-transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.ct-contact-cta .ct-contact-cta__button { transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
	.ct-contact-cta { padding: 48px 22px; }
	.ct-contact-cta__inner { grid-template-columns: 1fr; gap: 24px; }
	.ct-contact-cta .ct-contact-cta__title { font-size: 28px; }
	.ct-contact-cta__phone b { font-size: 22px; }
}

@media (max-width: 560px) {
	.ct-contact-cta__phone b { font-size: 24px; }
}
