/* SEND List Enquiry — primary CTA button + modal form. Calm, high-contrast,
   mobile-first. Override --se-primary to match brand if needed. */

:root {
	--se-primary: #1f7a8c;
	--se-primary-dark: #166374;
	--se-text: #1d2733;
	--se-muted: #5b6675;
	--se-border: #d9dee5;
	--se-radius: 12px;
}

/* ---- Primary CTA on the listing ---- */
.se-cta-wrap { margin: 0 0 18px; }

.se-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	justify-content: center;
	box-sizing: border-box;
	padding: 15px 22px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	background: var(--se-primary);
	border: 0;
	border-radius: var(--se-radius);
	cursor: pointer;
	box-shadow: 0 6px 16px rgba(31, 122, 140, .25);
	transition: background .15s ease, transform .05s ease;
}
.se-cta:hover { background: var(--se-primary-dark); }
.se-cta:active { transform: translateY(1px); }
.se-cta:focus-visible { outline: 3px solid rgba(31,122,140,.45); outline-offset: 2px; }
.se-cta__icon { font-size: 18px; }

@media (min-width: 600px) {
	.se-cta { width: auto; min-width: 280px; }
}

/* ---- Modal ---- */
.se-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 24px 16px;
	background: rgba(15, 23, 32, .55);
	opacity: 0;
	visibility: hidden;
	transition: opacity .18s ease, visibility .18s ease;
	overflow-y: auto;
}
.se-overlay.is-open { opacity: 1; visibility: visible; }
body.se-noscroll { overflow: hidden; }

.se-modal {
	position: relative;
	width: 100%;
	max-width: 480px;
	margin: auto;
	background: #fff;
	border-radius: 16px;
	padding: 28px 24px 24px;
	box-shadow: 0 20px 60px rgba(0,0,0,.3);
	color: var(--se-text);
	font-size: 15px;
	line-height: 1.5;
}

.se-close {
	position: absolute;
	top: 10px;
	right: 12px;
	width: 36px;
	height: 36px;
	font-size: 24px;
	line-height: 1;
	color: var(--se-muted);
	background: transparent;
	border: 0;
	border-radius: 8px;
	cursor: pointer;
}
.se-close:hover { background: #f1f3f5; color: var(--se-text); }

.se-title { margin: 0 30px 6px 0; font-size: 21px; font-weight: 800; color: var(--se-text); }
.se-intro { margin: 0 0 18px; color: var(--se-muted); }

.se-field { margin: 0 0 14px; }
.se-field label { display: block; margin: 0 0 5px; font-weight: 600; font-size: 14px; }
.se-req { color: #c0392b; }
.se-field input,
.se-field textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 11px 13px;
	font-size: 15px;
	color: var(--se-text);
	background: #fff;
	border: 1px solid var(--se-border);
	border-radius: 10px;
}
.se-field input:focus,
.se-field textarea:focus {
	border-color: var(--se-primary);
	outline: none;
	box-shadow: 0 0 0 3px rgba(31,122,140,.15);
}

.se-consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin: 4px 0 16px;
	font-size: 13.5px;
	color: var(--se-muted);
	cursor: pointer;
}
.se-consent input { margin-top: 3px; flex: 0 0 auto; }

.se-submit {
	width: 100%;
	padding: 14px 20px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	background: var(--se-primary);
	border: 0;
	border-radius: var(--se-radius);
	cursor: pointer;
}
.se-submit:hover { background: var(--se-primary-dark); }
.se-submit:disabled { opacity: .65; cursor: default; }

.se-status { margin: 12px 0 0; font-size: 14px; min-height: 1px; }
.se-status.is-error { color: #c0392b; }
.se-success { padding: 8px 0; font-size: 16px; font-weight: 600; color: var(--se-primary-dark); }

/* Honeypot — visually and from AT hidden, still in DOM for bots. */
.se-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
