/* Contact Us — hero + connect/form (scoped) */
.contact-page {
	--cu-navy: #14264a;
	--cu-teal: #087a78;
	--cu-teal-dark: #056966;
	--cu-mint: #e4f6f5;
	--cu-mint-soft: #f3faf9;
	--cu-coral: #ef7048;
	--cu-coral-deep: #e8632f;
	--cu-bg: #f7fcfb;
	--cu-white: #ffffff;
	--cu-muted: #53647a;
	--cu-border: #dce9e8;
	--cu-radius-card: 24px;
	--cu-radius-xl: 28px;
	--cu-shadow: 0 14px 45px rgba(20, 38, 74, 0.08);
	--cu-font: Poppins, "Segoe UI", sans-serif;
	background: var(--cu-bg);
	color: var(--cu-navy);
	overflow-x: clip;
}

/* ——— Hero ——— */
.contact-hero {
	position: relative;
	padding: 48px 0 28px;
	overflow: hidden;
	background: linear-gradient(180deg, #ffffff 0%, var(--cu-bg) 100%);
}

.contact-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
	gap: 32px 40px;
	align-items: center;
}

.contact-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 18px;
	color: var(--cu-teal);
	font-family: var(--cu-font);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	line-height: 1;
}

.contact-hero__eyebrow::before,
.contact-hero__eyebrow::after {
	content: "";
	display: block;
	width: 36px;
	height: 2px;
	border-radius: 2px;
	background: var(--cu-teal);
	opacity: 0.85;
}

.contact-hero__title {
	margin: 0 0 16px;
	color: var(--cu-navy);
	font-family: var(--cu-font);
	font-size: clamp(28px, 3.4vw, 44px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.contact-hero__title span {
	color: var(--cu-teal);
}

.contact-hero__text {
	margin: 0 0 28px;
	max-width: 34em;
	color: var(--cu-muted);
	font-family: var(--cu-font);
	font-size: clamp(15px, 1.25vw, 17px);
	font-weight: 400;
	line-height: 1.65;
}

.contact-hero__features {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px 20px;
	max-width: 420px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-hero__feature {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-align: center;
}

.contact-hero__feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	flex-shrink: 0;
}

.contact-hero__feature-icon svg {
	width: 56px;
	height: 56px;
	display: block;
	filter: drop-shadow(0 4px 10px rgba(8, 122, 120, 0.12));
}

.contact-hero__feature-label {
	margin: 0;
	min-height: 2.6em;
	color: var(--cu-teal-dark);
	font-family: var(--cu-font);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
}

.contact-hero__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 340px;
	padding: 12px 8px 12px 0;
}

.contact-hero__photo-wrap {
	position: relative;
	width: min(100%, 380px);
	aspect-ratio: 1;
	isolation: isolate;
}

.contact-hero__photo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 40%;
	border-radius: 58% 42% 48% 52% / 48% 52% 42% 58%;
	box-shadow: 0 18px 40px rgba(8, 122, 120, 0.14);
	animation: contact-hero-float 7s ease-in-out infinite;
}

@keyframes contact-hero-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

/* ——— Connect + form card ——— */
.contact-connect {
	position: relative;
	padding: 12px 0 64px;
}

.contact-connect__card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 28px 40px;
	padding: clamp(24px, 3.5vw, 40px);
	border-radius: var(--cu-radius-xl);
	background: var(--cu-white);
	box-shadow: var(--cu-shadow);
	border: 1px solid rgba(220, 233, 232, 0.7);
}

.contact-connect__title {
	margin: 0 0 12px;
	font-family: var(--cu-font);
	font-size: clamp(26px, 2.8vw, 36px);
	font-weight: 700;
	line-height: 1.2;
	color: var(--cu-teal);
}

.contact-connect__title span {
	color: var(--cu-coral);
}

.contact-connect__intro {
	margin: 0 0 28px;
	max-width: 34em;
	color: var(--cu-muted);
	font-family: var(--cu-font);
	font-size: 15px;
	line-height: 1.65;
}

.contact-connect__list {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-connect__item {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	gap: 14px 16px;
	align-items: start;
}

.contact-connect__icon {
	width: 52px;
	height: 52px;
	flex-shrink: 0;
}

.contact-connect__icon img,
.contact-connect__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.contact-connect__label {
	margin: 0 0 4px;
	color: var(--cu-navy);
	font-family: var(--cu-font);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
}

.contact-connect__value {
	margin: 0 0 4px;
	color: var(--cu-navy);
	font-family: var(--cu-font);
	font-size: clamp(16px, 1.4vw, 18px);
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
}

a.contact-connect__value:hover,
a.contact-connect__value:focus {
	color: var(--cu-teal);
	text-decoration: none;
}

.contact-connect__meta {
	margin: 0;
	color: var(--cu-muted);
	font-family: var(--cu-font);
	font-size: 13px;
	line-height: 1.5;
}

.contact-connect__map {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin: 2px 0 6px;
	color: var(--cu-coral);
	font-family: var(--cu-font);
	font-size: 14px;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.contact-connect__map:hover,
.contact-connect__map:focus {
	color: var(--cu-coral-deep);
}

.contact-connect__address {
	margin: 0;
	color: var(--cu-muted);
	font-family: var(--cu-font);
	font-size: 13px;
	line-height: 1.55;
	max-width: 36em;
}

/* Form panel */
.contact-form-panel {
	padding: clamp(20px, 2.5vw, 28px);
	border-radius: 20px;
	background: #eef6f8;
	border: 1px solid rgba(220, 233, 232, 0.9);
}

.contact-form-panel__title {
	margin: 0 0 6px;
	color: var(--cu-navy);
	font-family: var(--cu-font);
	font-size: clamp(20px, 2vw, 24px);
	font-weight: 700;
	line-height: 1.3;
}

.contact-form-panel__sub {
	margin: 0 0 22px;
	color: var(--cu-muted);
	font-family: var(--cu-font);
	font-size: 14px;
	line-height: 1.5;
}

.contact-form__group {
	margin: 0 0 16px;
}

.contact-form__label {
	display: block;
	margin: 0 0 8px;
	color: var(--cu-navy);
	font-family: var(--cu-font);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
}

.contact-form__req {
	color: #e23b3b;
	font-weight: 700;
}

.contact-form__input,
.contact-form__textarea,
.contact-form__select {
	display: block;
	width: 100%;
	margin: 0;
	padding: 12px 14px;
	border: 1px solid var(--cu-border);
	border-radius: 10px;
	background: var(--cu-white);
	color: var(--cu-navy);
	font-family: var(--cu-font);
	font-size: 14px;
	line-height: 1.4;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	box-sizing: border-box;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
	color: #9aa8b8;
}

.contact-form__input:focus,
.contact-form__textarea:focus,
.contact-form__select:focus {
	border-color: var(--cu-teal);
	box-shadow: 0 0 0 3px rgba(8, 122, 120, 0.12);
}

.contact-form__textarea {
	min-height: 110px;
	resize: vertical;
}

.contact-form__phone {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 8px;
}

.contact-form__select {
	padding-right: 28px;
	-webkit-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%2353647A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: calc(100% - 10px) center;
	background-size: 12px;
	cursor: pointer;
}

.contact-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	margin: 8px 0 0;
	padding: 14px 18px;
	border: 0;
	border-radius: 10px;
	background: var(--cu-coral);
	color: #fff;
	font-family: var(--cu-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 8px 20px rgba(239, 112, 72, 0.28);
}

.contact-form__submit:hover,
.contact-form__submit:focus {
	background: var(--cu-coral-deep);
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(239, 112, 72, 0.34);
}

.contact-form__submit-icon {
	display: inline-flex;
	width: 18px;
	height: 18px;
}

.contact-form__submit-icon svg {
	width: 100%;
	height: 100%;
}

.contact-form__privacy {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 14px 0 0;
	color: var(--cu-muted);
	font-family: var(--cu-font);
	font-size: 12px;
	line-height: 1.4;
	text-align: center;
}

.contact-form__privacy-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	color: var(--cu-teal);
}

.contact-form__alert {
	display: none;
	margin-top: 14px;
	padding: 12px 14px;
	border-radius: 10px;
	border: 1px solid #d6e9c6;
	background: #dff0d8;
	color: #3c763d;
	font-family: var(--cu-font);
	font-size: 13px;
	line-height: 1.45;
}

/* Responsive */
@media (max-width: 991px) {
	.contact-hero__inner,
	.contact-connect__card {
		grid-template-columns: 1fr;
	}

	.contact-hero__visual {
		order: -1;
		min-height: 0;
		padding: 0;
	}

	.contact-hero__photo-wrap {
		width: min(100%, 320px);
		margin: 0 auto;
	}

	.contact-hero__copy {
		text-align: center;
	}

	.contact-hero__eyebrow {
		justify-content: center;
	}

	.contact-hero__text {
		margin-left: auto;
		margin-right: auto;
	}

	.contact-hero__features {
		margin-left: auto;
		margin-right: auto;
	}

	.contact-connect__intro {
		margin-left: auto;
		margin-right: auto;
		text-align: left;
	}
}

@media (max-width: 575px) {
	.contact-hero {
		padding: 32px 0 16px;
	}

	.contact-hero__features {
		max-width: 360px;
		gap: 10px 12px;
	}

	.contact-hero__feature-label {
		font-size: 12px;
	}

	.contact-connect {
		padding-bottom: 40px;
	}

	.contact-form__phone {
		grid-template-columns: 84px minmax(0, 1fr);
	}
}

@media (prefers-reduced-motion: reduce) {
	.contact-hero__photo,
	.contact-form__submit {
		animation: none !important;
		transition: none !important;
	}
}
