/* El-Elyon — Free Consultation Form Widget
   Structural styles only. Colors, typography, spacing and radius
   are controlled from the Elementor Style tab and injected via
   {{WRAPPER}} selectors — see includes/class-free-consultation-widget.php */

.efcw-panel {
	position: relative;
	overflow: hidden;
	font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.efcw-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'IBM Plex Mono', ui-monospace, Menlo, monospace;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.efcw-eyebrow::before {
	content: "";
	width: 22px;
	height: 1px;
	flex: none;
}

.efcw-led {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex: none;
}

@media (prefers-reduced-motion: no-preference) {
	.efcw-led {
		animation: efcw-blink 2.6s ease-in-out infinite;
	}
}

@keyframes efcw-blink {
	0%, 100% { opacity: .35; }
	50% { opacity: 1; }
}

.efcw-heading {
	margin: 0 0 10px;
	line-height: 1.15;
}

.efcw-description {
	margin: 0 0 28px;
	max-width: 56ch;
}

.efcw-form {
	max-width: 640px;
}

.efcw-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin-bottom: 22px;
}

.efcw-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.efcw-field-full {
	grid-column: 1 / -1;
}

.efcw-field label {
	font-family: 'IBM Plex Mono', ui-monospace, Menlo, monospace;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.efcw-field input,
.efcw-field textarea {
	font-family: inherit;
	font-size: 14px;
	padding: 12px 14px;
	border-radius: 3px;
	border: 1px solid;
	width: 100%;
	box-sizing: border-box;
	transition: border-color .15s ease;
}

.efcw-field textarea {
	resize: vertical;
	min-height: 84px;
}

.efcw-field input:focus,
.efcw-field textarea:focus {
	outline: none;
}

.efcw-hp-wrap {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.efcw-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.efcw-submit {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	text-decoration: none;
	padding: 13px 24px;
	border-radius: 3px;
	border: 1px solid transparent;
	transition: background-color .15s ease, border-color .15s ease, opacity .15s ease;
}

.efcw-submit:disabled,
.efcw-submit.is-loading {
	opacity: 0.7;
	cursor: default;
}

.efcw-status {
	margin: 0;
	font-size: 13px;
}

.efcw-status.is-success {
	color: #4C8C6B;
}

.efcw-status.is-error {
	color: #D4534A;
}

@media (max-width: 640px) {
	.efcw-row {
		grid-template-columns: 1fr;
	}
}
