/* ==========================================================================
   Contact Form (JCU) — theme-native form, purple palette.
   ========================================================================== */

.jcu-cform {
	--jcuc-purple: #68267e;
	--jcuc-ink: #1c1c1f;
}

.jcu-cform * {
	box-sizing: border-box;
}

.jcu-cform__title {
	margin: 0 0 10px;
	color: var(--jcuc-ink);
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	font-weight: 800;
	line-height: 1.15;
}

.jcu-cform__intro {
	margin: 0 0 26px;
	max-width: 60ch;
	color: #5a5a62;
	font-size: 1rem;
	line-height: 1.65;
}

/* Fields */

.jcu-cform__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0 18px;
}

@media (min-width: 620px) {
	.jcu-cform__row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.jcu-cform__field {
	margin: 0 0 18px;
}

.jcu-cform__field label {
	display: block;
	margin-bottom: 7px;
	color: var(--jcuc-ink);
	font-size: 0.875rem;
	font-weight: 600;
}

.jcu-cform__opt {
	color: #9a93a3;
	font-weight: 500;
}

.jcu-cform input[type="text"],
.jcu-cform input[type="email"],
.jcu-cform input[type="tel"],
.jcu-cform select,
.jcu-cform textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d8d2df;
	border-radius: 8px;
	background: #fff;
	color: #26262b;
	font-family: inherit;
	font-size: 1rem;
	line-height: 1.5;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.jcu-cform textarea {
	resize: vertical;
	min-height: 140px;
}

.jcu-cform input:focus,
.jcu-cform select:focus,
.jcu-cform textarea:focus {
	outline: 0;
	border-color: var(--jcuc-purple);
	box-shadow: 0 0 0 3px rgba(104, 38, 126, 0.14);
}

/* Honeypot — off-screen, never display:none (some bots check) */

.jcu-cform__hp {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Button */

/* Scoped + reset: the Elementor kit styles <button> globally */
.jcu-cform button.jcu-cform__btn,
.jcu-cform button.jcu-cform__btn:focus {
	margin-top: 4px;
	border: 0;
	background: var(--jcuc-purple);
	color: #fff;
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: none;
	padding: 0.8rem 2.2rem;
	border-radius: 999px;
	box-shadow: none;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s;
}

.jcu-cform button.jcu-cform__btn:hover {
	background: #7d3269;
	color: #fff;
	transform: translateY(-1px);
}

.jcu-cform__small {
	margin: 12px 0 0;
	color: #9a93a3;
	font-size: 0.8125rem;
	line-height: 1.5;
}

/* Notices */

.jcu-notice {
	margin: 0 0 22px;
	padding: 14px 16px;
	border-radius: 8px;
	border-left: 3px solid;
	font-size: 0.9375rem;
	line-height: 1.55;
}

.jcu-notice--ok {
	border-left-color: #2f9e5f;
	background: #eefaf2;
	color: #1d6b40;
}

.jcu-notice--error {
	border-left-color: #b3261e;
	background: #fdeff0;
	color: #96131a;
}

.jcu-cform :focus-visible {
	outline: 3px solid var(--jcuc-purple);
	outline-offset: 2px;
}

/* ==========================================================================
   Contact Details card — dark ink panel beside the form.
   ========================================================================== */

.jcu-cdetails {
	background:
		linear-gradient(rgba(31, 14, 33, 0.94), rgba(31, 14, 33, 0.94)),
		#221024 url("footer-bg.jpg") center / cover no-repeat;
	border-radius: 16px;
	padding: 1.8rem 1.8rem 1.6rem;
	color: #fff;
	height: 100%;
	box-sizing: border-box;
}

.jcu-cdetails * {
	box-sizing: border-box;
}

.jcu-cdetails__title {
	margin: 0 0 1.2rem;
	font-size: 1.35rem;
	font-weight: 800;
	color: #fff;
}

.jcu-cdetails__list {
	list-style: none;
	margin: 0 0 1.4rem;
	padding: 0 0 1.3rem;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.jcu-cdetails__list li {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	font-size: 0.92rem;
}

.jcu-cdetails__list svg {
	flex-shrink: 0;
	width: 17px;
	height: 17px;
	color: #cf9ec2;
}

.jcu-cdetails__list a {
	color: rgba(255, 255, 255, 0.9) !important;
	text-decoration: none;
}

.jcu-cdetails__list a:hover {
	color: #fff !important;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.jcu-cdetails__list strong {
	color: #fff;
	font-variant-numeric: tabular-nums;
}

.jcu-cdetails__office h3 {
	margin: 0 0 0.5rem;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #cf9ec2;
}

.jcu-cdetails__office address {
	margin: 0 0 1.4rem;
	font-style: normal;
	font-size: 0.92rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
}

.jcu-cdetails__office address span {
	display: block;
}

.jcu-cdetails__offices-link {
	display: inline-block;
	color: #fff !important;
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 2px solid #cf9ec2;
	padding-bottom: 0.2rem;
	transition: border-color 0.2s;
}

.jcu-cdetails__offices-link:hover {
	border-color: #fff;
}
