/**
 * CONTACT Home — glass form (homepage / pre-footer).
 * Scoped to .tk-contact-home so it cannot collide with Contact Page.
 */

.tk-contact-home.tk-ch {
	--tk-ch-ink: var(--color-ink);
	--tk-ch-fog: var(--color-fog);
	--tk-ch-mist: var(--color-mist);
	--tk-ch-mute: #51515f;
	--tk-ch-label: rgb(180, 180, 191);
	--tk-ch-line: rgb(146, 146, 160);
	--tk-ch-border: rgba(245, 245, 246, 0.2);
	--tk-ch-ease: cubic-bezier(0.12, 0.23, 0.5, 1);
	--tk-ch-focus: cubic-bezier(0.44, 0, 0.56, 1);
	--tk-ch-dur: 0.4s;
	--tk-ch-onest: var(--font-ui);
	--tk-ch-urbanist: var(--font-heading);
	box-sizing: border-box !important;
	display: flex !important;
	flex-flow: row !important;
	place-content: center !important;
	align-items: center !important;
	gap: 0 !important;
	width: 100% !important;
	height: 752px !important;
	margin: 0 !important;
	padding: 80px 0 !important;
	position: relative;
	overflow: clip;
	-webkit-font-smoothing: antialiased;
	background-color: var(--tk-ch-ink);
}

.tk-contact-home.tk-ch *,
.tk-contact-home.tk-ch *::before,
.tk-contact-home.tk-ch *::after {
	box-sizing: border-box;
}

.tk-contact-home .tk-ch__bg {
	position: absolute !important;
	inset: -116px -122px -117px !important;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.tk-contact-home .tk-ch__bg img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
}

.tk-contact-home .tk-ch__blur {
	position: absolute !important;
	inset: 0 !important;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(27, 27, 40, 0) 0%, rgba(27, 27, 40, 0.15) 100%);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
}

.tk-contact-home .tk-ch__container {
	position: relative;
	z-index: 1;
	display: flex !important;
	flex-flow: column !important;
	flex: 1 1 0 !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 40px !important;
	width: 100% !important;
	max-width: 1240px !important;
	margin: 0 auto !important;
	padding: 0 20px !important;
	overflow: clip;
}

.tk-contact-home .tk-ch__header {
	display: flex !important;
	flex-flow: row !important;
	align-items: flex-end !important;
	justify-content: space-between !important;
	width: 100% !important;
	gap: 20px !important;
}

.tk-contact-home .tk-ch__intro {
	display: flex !important;
	flex-flow: column !important;
	flex: 1 1 0 !important;
	align-items: flex-start !important;
	gap: 12px !important;
	width: 0 !important;
	min-width: 0 !important;
	max-width: 460px !important;
}

.tk-contact-home .tk-ch__badge {
	margin: 0 !important;
	font-family: var(--tk-ch-onest);
	font-size: 10px;
	font-weight: 400;
	line-height: 100%;
	text-transform: uppercase;
	color: var(--tk-ch-fog);
	opacity: 0;
	transform: translateY(20px);
	transition: opacity var(--tk-ch-dur) var(--tk-ch-ease), transform var(--tk-ch-dur) var(--tk-ch-ease);
}

.tk-contact-home .tk-ch__title {
	margin: 0 !important;
	width: 100%;
	font-family: var(--tk-ch-urbanist);
	font-size: 48px;
	font-weight: 500;
	line-height: 120%;
	color: var(--tk-ch-fog);
	text-wrap: balance;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity var(--tk-ch-dur) var(--tk-ch-ease), transform var(--tk-ch-dur) var(--tk-ch-ease);
}

.tk-contact-home .tk-ch__copy {
	display: flex !important;
	flex-flow: column !important;
	flex: 1 1 0 !important;
	align-items: flex-start !important;
	justify-content: flex-end !important;
	gap: 20px !important;
	width: 0 !important;
	min-width: 0 !important;
	max-width: 460px !important;
}

.tk-contact-home .tk-ch__desc {
	margin: 0 !important;
	width: 100%;
	max-width: 460px;
	font-family: var(--tk-ch-urbanist);
	font-size: 14px;
	font-weight: 400;
	line-height: 110%;
	color: var(--tk-ch-fog);
	text-wrap: balance;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity var(--tk-ch-dur) var(--tk-ch-ease), transform var(--tk-ch-dur) var(--tk-ch-ease);
}

.tk-contact-home .tk-ch__meta {
	display: flex !important;
	flex-flow: column !important;
	align-items: flex-start !important;
	gap: 8px !important;
	width: 100% !important;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity var(--tk-ch-dur) var(--tk-ch-ease), transform var(--tk-ch-dur) var(--tk-ch-ease);
}

.tk-contact-home .tk-ch__meta-item,
.tk-contact-home .tk-ch__meta-item a {
	margin: 0 !important;
	font-family: var(--tk-ch-urbanist);
	font-size: 14px;
	font-weight: 400;
	line-height: 110%;
	color: var(--tk-ch-mist);
	text-decoration: none;
}

.tk-contact-home .tk-ch__meta-item a:hover {
	color: var(--tk-ch-fog);
}

.tk-contact-home .tk-ch__socials {
	display: flex !important;
	flex-flow: row wrap !important;
	align-items: center !important;
	gap: 12px !important;
	margin-top: 4px !important;
}

.tk-contact-home .tk-ch__social {
	font-family: var(--tk-ch-onest);
	font-size: 10px;
	font-weight: 400;
	line-height: 100%;
	text-transform: uppercase;
	color: var(--tk-ch-mist) !important;
	text-decoration: none !important;
	transition: color 0.25s var(--tk-ch-focus);
}

.tk-contact-home .tk-ch__social:hover {
	color: var(--tk-ch-fog) !important;
}

.tk-contact-home .tk-ch__form-wrap {
	display: flex !important;
	flex-flow: column !important;
	align-items: flex-end !important;
	justify-content: flex-start !important;
	gap: 10px !important;
	width: 100% !important;
}

.tk-contact-home .tk-ch__form {
	display: flex !important;
	flex-flow: column !important;
	align-items: flex-end !important;
	gap: 20px !important;
	width: 460px !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 20px !important;
	border: 1px solid var(--tk-ch-border) !important;
	border-radius: 8px !important;
	background: linear-gradient(180deg, rgba(20, 27, 52, 0) 3.15%, rgba(20, 27, 52, 0.15) 99.1%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	overflow: hidden;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity var(--tk-ch-dur) var(--tk-ch-ease), transform var(--tk-ch-dur) var(--tk-ch-ease);
	position: relative;
}

.tk-contact-home .tk-ch__field {
	display: flex !important;
	flex-flow: column !important;
	align-items: flex-start !important;
	gap: 0 !important;
	width: 100% !important;
	margin: 0 !important;
}

.tk-contact-home .tk-ch__label {
	margin: 0 !important;
	font-family: var(--tk-ch-urbanist);
	font-size: 14px;
	font-weight: 400;
	line-height: 110%;
	color: var(--tk-ch-label);
}

.tk-contact-home .tk-ch__control {
	width: 100%;
	height: 55px;
	position: relative;
}

.tk-contact-home .tk-ch__control--area {
	height: auto;
	min-height: 80px;
}

.tk-contact-home .tk-ch__input,
.tk-contact-home .tk-ch__textarea {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-bottom: 1px solid var(--tk-ch-line) !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	outline: none !important;
	font-family: var(--tk-ch-onest) !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	line-height: 1.2em !important;
	letter-spacing: 0 !important;
	color: var(--tk-ch-mist) !important;
	caret-color: var(--tk-ch-fog);
	transition: border-color 0.3s var(--tk-ch-focus);
	-webkit-appearance: none;
	appearance: none;
}

.tk-contact-home .tk-ch__textarea {
	min-height: 80px;
	height: auto !important;
	padding: 10px 0 !important;
	resize: vertical;
}

.tk-contact-home .tk-ch__input::placeholder,
.tk-contact-home .tk-ch__textarea::placeholder {
	color: var(--tk-ch-mist);
	opacity: 1;
}

.tk-contact-home .tk-ch__input:focus,
.tk-contact-home .tk-ch__textarea:focus {
	border-bottom-color: #fff !important;
}

.tk-contact-home .tk-ch__submit-wrap {
	display: flex !important;
	flex: none !important;
	width: 100%;
	height: auto;
	align-items: center;
	justify-content: flex-end;
}

.tk-contact-home .tk-ch__submit {
	display: inline-flex !important;
	flex-flow: row !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	width: 240px !important;
	max-width: 100%;
	height: 28px !important;
	min-height: 28px !important;
	margin: 0 !important;
	padding: 4px 8px !important;
	border: 1px solid #104433 !important;
	border-radius: 4px !important;
	background: #104433 !important;
	color: #ffffff !important;
	font-family: "Almarai", sans-serif !important;
	font-size: 10px !important;
	font-weight: 800 !important;
	line-height: 100% !important;
	letter-spacing: 0.2px;
	text-transform: uppercase !important;
	cursor: pointer;
	overflow: visible;
	box-shadow: none !important;
	-webkit-backdrop-filter: none !important;
	backdrop-filter: none !important;
	transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.tk-contact-home .tk-ch__submit-label,
.tk-contact-home .tk-ch__submit .tk-btn__label {
	font-family: "Almarai", sans-serif;
	font-size: 10px;
	font-weight: 800;
	line-height: 100%;
	letter-spacing: 0.2px;
	text-transform: uppercase;
	color: inherit;
	white-space: nowrap;
}

.tk-contact-home .tk-ch__submit-icon,
.tk-contact-home .tk-ch__submit .tk-btn__icon {
	display: flex !important;
	width: 16px;
	height: 16px;
	margin-left: 0;
	color: inherit;
	transition: transform 0.2s var(--tk-ch-focus);
}

.tk-contact-home .tk-ch__submit-icon svg,
.tk-contact-home .tk-ch__submit .tk-btn__icon svg {
	display: block;
	width: 16px;
	height: 16px;
}

.tk-contact-home .tk-ch__submit:hover {
	background: #acd36f !important;
	border-color: #acd36f !important;
	color: #104433 !important;
	box-shadow: 0 8px 18px rgba(16, 68, 51, 0.18) !important;
	opacity: 1;
}

.tk-contact-home .tk-ch__submit:active {
	background: #3b6e52 !important;
	border-color: #3b6e52 !important;
	color: #ffffff !important;
	box-shadow: none !important;
}

.tk-contact-home .tk-ch__submit:focus-visible {
	outline: 2px solid #3b6e52;
	outline-offset: 3px;
}

.tk-contact-home .tk-ch__submit:hover .tk-ch__submit-icon,
.tk-contact-home .tk-ch__submit:hover .tk-btn__icon {
	transform: translate(1px, -1px);
}

.tk-contact-home .tk-ch__submit.is-loading {
	opacity: 0.7;
	pointer-events: none;
}

.tk-contact-home .tk-ch__submit.is-success {
	opacity: 1;
}

.tk-contact-home .tk-ch__status {
	width: 100%;
	margin: 0 !important;
	font-family: var(--tk-ch-urbanist);
	font-size: 14px;
	line-height: 110%;
	color: var(--tk-ch-fog);
	display: none;
}

.tk-contact-home .tk-ch__status.is-visible {
	display: block;
}

.tk-contact-home .tk-ch__status.is-error {
	color: #ff9aa8;
}

.tk-contact-home .tk-ch__hp {
	position: absolute !important;
	transform: scale(0);
	pointer-events: none;
	opacity: 0;
}

.tk-contact-home .tk-ch__badge.is-in,
.tk-contact-home .tk-ch__title.is-in,
.tk-contact-home .tk-ch__desc.is-in,
.tk-contact-home .tk-ch__meta.is-in,
.tk-contact-home .tk-ch__form.is-in {
	opacity: 1;
	transform: none;
}

@media (max-width: 1199.98px) {
	.tk-contact-home.tk-ch {
		height: auto !important;
		min-height: 0;
	}

	.tk-contact-home .tk-ch__bg {
		inset: -27px -30px -66px -9px !important;
	}

	.tk-contact-home .tk-ch__title {
		font-size: 38px;
	}
}

@media (max-width: 809.98px) {
	.tk-contact-home.tk-ch {
		height: auto !important;
		padding: 80px 0 !important;
	}

	.tk-contact-home .tk-ch__header {
		flex-direction: column !important;
		align-items: flex-start !important;
		justify-content: flex-start !important;
		gap: 20px !important;
	}

	.tk-contact-home .tk-ch__intro,
	.tk-contact-home .tk-ch__copy {
		flex: none !important;
		width: 100% !important;
		max-width: none !important;
	}

	.tk-contact-home .tk-ch__form {
		width: 100% !important;
	}

	.tk-contact-home .tk-ch__title {
		font-size: 30px;
	}

	.tk-contact-home .tk-ch__submit {
		width: 100% !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tk-contact-home .tk-ch__badge,
	.tk-contact-home .tk-ch__title,
	.tk-contact-home .tk-ch__desc,
	.tk-contact-home .tk-ch__meta,
	.tk-contact-home .tk-ch__form,
	.tk-contact-home .tk-ch__input,
	.tk-contact-home .tk-ch__textarea,
	.tk-contact-home .tk-ch__submit,
	.tk-contact-home .tk-ch__submit-icon {
		transition: none !important;
	}

	.tk-contact-home .tk-ch__badge,
	.tk-contact-home .tk-ch__title,
	.tk-contact-home .tk-ch__desc,
	.tk-contact-home .tk-ch__meta,
	.tk-contact-home .tk-ch__form {
		opacity: 1;
		transform: none;
	}
}
