/**
 * Honesha enquiry form, enquiry popup and floating WhatsApp button.
 * Site Elementor global colour / typography variables, design-system
 * values as fallbacks.
 */

.hon-enq,
.hon-enq-modal,
.hon-wa-float {
	--hon-ink: var(--e-global-color-primary, #23211C);
	--hon-text: var(--e-global-color-text, #57534A);
	--hon-gold: var(--e-global-color-accent, #C99A3F);
	--hon-gold-700: var(--e-global-color-gold700, #8C6A24);
	--hon-muted: var(--e-global-color-muted, #6F6A5D);
	--hon-border: var(--e-global-color-border, #E4DECF);
	--hon-cream-50: var(--e-global-color-cream50, #FBF9F4);
	--hon-cream: var(--e-global-color-cream100, #F5F1E8);
	--hon-forest-800: var(--e-global-color-forest800, #36433A);
	--hon-forest-900: var(--e-global-color-forest900, #26302A);
	--hon-sage-700: var(--e-global-color-sage700, #6B7A5C);
	--hon-white: var(--e-global-color-white, #FFFFFF);
	--hon-danger: var(--e-global-color-danger, #B4543B);
	--hon-success: var(--e-global-color-success, #4F7A4A);
	--hon-field-border: #938E81;
	--hon-focus: 0 0 0 3px rgba(201, 154, 63, .35);
	--hon-radius: 4px;
	--hon-ease: cubic-bezier(.22, .61, .36, 1);
	--hon-text-family: var(--e-global-typography-text-font-family, "Lato"), sans-serif;
}

.hon-enq {
	font-family: var(--hon-text-family);
	font-size: 16px;
	line-height: 1.6;
	color: var(--hon-text);
}

.hon-enq *,
.hon-enq-modal * {
	box-sizing: border-box;
}

.hon-enq--page {
	background: var(--hon-white);
	border-radius: 8px;
	box-shadow: 0 14px 40px rgba(35, 33, 28, .10);
	padding: clamp(20px, 4vw, 44px);
}

.hon-enq--compact {
	background: var(--hon-white);
	border: 1px solid var(--hon-border);
	border-radius: 8px;
	padding: clamp(18px, 3vw, 28px);
}

.hon-enq__sr,
.hon-enq__hp {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.hon-enq [hidden],
.hon-enq-modal[hidden] {
	display: none !important;
}

/* Labels: 12px / 700 / .18em uppercase. */
.hon-enq__label,
.hon-enq__eyebrow,
.hon-enq__stepper-label {
	font-family: var(--hon-text-family);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	line-height: 1.4;
}

.hon-enq__label {
	display: block;
	margin: 0 0 8px;
	padding: 0;
	color: var(--hon-muted);
}

.hon-enq__eyebrow {
	margin: 0 0 6px;
	color: var(--hon-gold-700);
}

.hon-enq__req {
	color: var(--hon-gold-700);
}

/* ---------------------------------------------------------------- Stepper */

.hon-enq__stepper {
	display: flex;
	align-items: center;
	gap: 0;
	margin: 0 0 clamp(24px, 3vw, 36px);
	padding: 0;
	list-style: none;
	counter-reset: none;
}

.hon-enq__stepper-item {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	gap: 10px;
	min-width: 0;
	margin: 0;
	color: var(--hon-muted);
}

.hon-enq__stepper-item:not(:last-child)::after {
	content: "";
	flex: 1 1 16px;
	min-width: 12px;
	height: 1px;
	margin: 0 12px 0 2px;
	background: var(--hon-border);
}

.hon-enq__stepper-item:last-child {
	flex: 0 0 auto;
}

.hon-enq__stepper-num {
	display: grid;
	place-items: center;
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--hon-cream);
	color: var(--hon-muted);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.hon-enq__stepper-label {
	white-space: nowrap;
	letter-spacing: .1em;
}

.hon-enq__stepper-item.is-current {
	color: var(--hon-ink);
}

.hon-enq__stepper-item.is-current .hon-enq__stepper-num {
	background: var(--hon-forest-800);
	color: var(--hon-white);
	box-shadow: 0 0 0 2px var(--hon-gold);
}

.hon-enq__stepper-item.is-done .hon-enq__stepper-num {
	background: var(--hon-gold);
	color: var(--hon-ink);
}

.hon-enq__stepper-item.is-done:not(:last-child)::after {
	background: var(--hon-gold);
}

@media (max-width: 767px) {
	.hon-enq__stepper-item:not(.is-current) .hon-enq__stepper-label {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
	}
}

/* ------------------------------------------------------------------ Steps */

.hon-enq__title {
	margin: 0 0 clamp(18px, 2.5vw, 26px);
	font-family: var(--e-global-typography-h3-font-family, "Lato"), sans-serif;
	font-size: clamp(20px, 1.1rem + .6vw, 26px);
	font-weight: 700;
	line-height: 1.25;
	color: var(--hon-ink);
}

.hon-enq .hon-enq__title:focus {
	outline: none;
	box-shadow: none;
}

.hon-enq__fields {
	display: grid;
	gap: var(--gap-m, 22px);
}

.hon-enq__row {
	display: grid;
	gap: var(--gap-m, 22px);
	align-items: start;
}

@media (min-width: 600px) {
	.hon-enq__row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hon-enq__row--3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.hon-enq__field,
.hon-enq__fieldset {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.hon-enq__field--check {
	align-self: end;
}

/* ----------------------------------------------------------------- Inputs */

.hon-enq__input {
	display: block;
	width: 100%;
	min-height: 48px;
	margin: 0;
	padding: 11px 14px;
	border: 1.5px solid var(--hon-field-border);
	border-radius: var(--hon-radius);
	background: var(--hon-white);
	color: var(--hon-ink);
	font: inherit;
	line-height: 1.4;
	transition: border-color .15s var(--hon-ease), box-shadow .15s var(--hon-ease);
}

.hon-enq__textarea {
	min-height: 132px;
	resize: vertical;
}

.hon-enq select.hon-enq__input {
	appearance: none;
	padding-right: 40px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%236F6A5D' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
}

.hon-enq__input:hover {
	border-color: var(--hon-muted);
}

.hon-enq__input:focus {
	outline: 2px solid transparent;
	border-color: var(--hon-gold-700);
	box-shadow: var(--hon-focus);
}

.hon-enq__input:disabled {
	background: var(--hon-cream);
	color: var(--hon-muted);
	cursor: not-allowed;
}

.hon-enq__input[aria-invalid="true"] {
	border-color: var(--hon-danger);
}

.hon-enq__hint {
	margin: 6px 0 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--hon-muted);
}

.hon-enq__fieldset > .hon-enq__hint {
	margin: -2px 0 10px;
}

.hon-enq__error {
	display: flex;
	gap: 6px;
	margin: 6px 0 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	color: var(--hon-danger);
}

.hon-enq__error::before {
	content: "!";
	display: inline-grid;
	place-items: center;
	flex: 0 0 18px;
	height: 18px;
	margin-top: 1px;
	border-radius: 50%;
	background: var(--hon-danger);
	color: var(--hon-white);
	font-size: 12px;
}

/* Checkbox rows (flexible, consent). */
.hon-enq__check {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	min-height: 48px;
	padding-top: 12px;
	color: var(--hon-text);
	cursor: pointer;
}

.hon-enq__check input {
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	margin: 2px 0 0;
	accent-color: var(--hon-forest-800);
}

.hon-enq__check input:focus-visible {
	outline: 2px solid var(--hon-gold-700);
	outline-offset: 2px;
}

.hon-enq__check a,
.hon-enq__link {
	color: var(--hon-gold-700);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.hon-enq__field--check.is-invalid .hon-enq__check {
	color: var(--hon-ink);
}

/* Chips (radio / checkbox). */
.hon-enq__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hon-enq__chip {
	position: relative;
	display: inline-flex;
	cursor: pointer;
}

.hon-enq__chip-input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: pointer;
}

.hon-enq__chip-text {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 10px 18px;
	border: 1.5px solid var(--hon-field-border);
	border-radius: 999px;
	background: var(--hon-white);
	color: var(--hon-ink);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	transition: background-color .15s var(--hon-ease), border-color .15s var(--hon-ease), color .15s var(--hon-ease);
}

.hon-enq__chip:hover .hon-enq__chip-text {
	border-color: var(--hon-forest-800);
}

.hon-enq__chip-input:checked + .hon-enq__chip-text {
	background: var(--hon-forest-800);
	border-color: var(--hon-forest-800);
	color: var(--hon-white);
}

.hon-enq__chip-input:checked + .hon-enq__chip-text::before {
	content: "";
	width: 10px;
	height: 6px;
	margin-top: -3px;
	border: solid var(--hon-gold);
	border-width: 0 0 2px 2px;
	transform: rotate(-45deg);
}

.hon-enq__chip-input:focus-visible + .hon-enq__chip-text {
	outline: 2px solid var(--hon-gold-700);
	outline-offset: 2px;
}

.hon-enq__fieldset.is-invalid .hon-enq__chip-text {
	border-color: var(--hon-danger);
}

/* Number with − / + buttons. */
.hon-enq__counter {
	display: flex;
	align-items: stretch;
	gap: 6px;
}

.hon-enq__input--num {
	flex: 1 1 auto;
	min-width: 0;
	text-align: center;
	-moz-appearance: textfield;
}

.hon-enq__input--num::-webkit-inner-spin-button,
.hon-enq__input--num::-webkit-outer-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.hon-enq .hon-enq__count-btn {
	flex: 0 0 48px;
	min-height: 48px;
	padding: 0;
	border: 1.5px solid var(--hon-border);
	border-radius: var(--hon-radius);
	background: var(--hon-cream);
	color: var(--hon-ink);
	font: 700 20px/1 var(--hon-text-family);
	cursor: pointer;
}

.hon-enq .hon-enq__count-btn:hover,
.hon-enq .hon-enq__count-btn:focus {
	background: var(--hon-cream);
	color: var(--hon-ink);
	border-color: var(--hon-muted);
}

.hon-enq .hon-enq__count-btn:focus-visible {
	outline: 2px solid var(--hon-gold-700);
	outline-offset: 2px;
}

/* ------------------------------------------------------ Alert, nav, done */

.hon-enq__alert {
	margin: 0 0 20px;
	padding: 12px 16px;
	border-left: 4px solid var(--hon-danger);
	border-radius: var(--hon-radius);
	background: #FBEFEB;
	color: var(--hon-ink);
	font-size: 15px;
	font-weight: 700;
}

.hon-enq__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
	margin-top: clamp(24px, 3vw, 36px);
}

.hon-enq__nav [data-hon-next],
.hon-enq__nav [data-hon-submit] {
	margin-left: auto;
}

.hon-enq .hon-enq__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 14px 28px;
	border: 1.5px solid var(--hon-gold);
	border-radius: var(--hon-radius);
	background: var(--hon-gold);
	color: var(--hon-ink);
	font-family: var(--hon-text-family);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	line-height: 1.2;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color .15s var(--hon-ease), border-color .15s var(--hon-ease), color .15s var(--hon-ease);
}

.hon-enq .hon-enq__btn:hover,
.hon-enq .hon-enq__btn:focus {
	background: var(--hon-ink);
	border-color: var(--hon-ink);
	color: var(--hon-white);
}

.hon-enq .hon-enq__btn:focus-visible {
	outline: 2px solid var(--hon-ink);
	outline-offset: 3px;
}

.hon-enq .hon-enq__btn[disabled] {
	opacity: .7;
	cursor: progress;
}

.hon-enq .hon-enq__btn--ghost {
	background: transparent;
	border-color: var(--hon-ink);
	color: var(--hon-ink);
}

@media (max-width: 420px) {
	.hon-enq .hon-enq__btn {
		flex: 1 1 auto;
		padding-left: 18px;
		padding-right: 18px;
	}
}

.hon-enq__done {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: clamp(16px, 4vw, 40px) 0;
	text-align: center;
}

.hon-enq__done:focus {
	outline: none;
}

.hon-enq__done p {
	max-width: 46ch;
	margin: 0;
}

.hon-enq__done-icon {
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	margin-bottom: 10px;
	border-radius: 50%;
	background: var(--hon-success);
	color: var(--hon-white);
}

.hon-enq__done-title {
	margin: 0 0 8px;
	font-size: clamp(22px, 1.2rem + .8vw, 28px);
	font-weight: 700;
	line-height: 1.25;
	color: var(--hon-ink);
}

/* ------------------------------------------------------------------ Popup */

html.hon-enq-lock,
html.hon-enq-lock body {
	overflow: hidden;
}

.hon-enq-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	font-family: var(--hon-text-family);
}

.hon-enq-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(38, 48, 42, .72);
}

.hon-enq-modal__dialog {
	position: relative;
	width: min(760px, 100%);
	max-height: calc(100vh - 32px);
	max-height: calc(100dvh - 32px);
	overflow-y: auto;
	overscroll-behavior: contain;
	border-radius: 8px;
	background: var(--hon-white);
	box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
	padding: clamp(20px, 4vw, 40px);
	animation: hon-enq-in .22s var(--hon-ease) both;
}

.hon-enq-modal__dialog:focus {
	outline: none;
}

.hon-enq-modal__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: clamp(18px, 3vw, 28px);
	padding-bottom: clamp(14px, 2vw, 20px);
	border-bottom: 1px solid var(--hon-border);
}

.hon-enq-modal .hon-enq-modal__title {
	margin: 0;
	font-size: clamp(22px, 1.1rem + 1vw, 32px);
	line-height: 1.15;
	color: var(--hon-ink);
}

.hon-enq-modal__about {
	margin: 8px 0 0;
	color: var(--hon-text);
	font-size: 15px;
	line-height: 1.5;
}

.hon-enq-modal__about strong {
	color: var(--hon-ink);
}

.hon-enq-modal .hon-enq-modal__close {
	display: grid;
	flex: 0 0 44px;
	place-items: center;
	width: 44px;
	height: 44px;
	margin: -6px -6px 0 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--hon-cream);
	color: var(--hon-ink);
	cursor: pointer;
}

.hon-enq-modal .hon-enq-modal__close:hover,
.hon-enq-modal .hon-enq-modal__close:focus {
	color: var(--hon-ink);
	background: var(--hon-border);
}

.hon-enq-modal .hon-enq-modal__close:focus-visible {
	outline: 2px solid var(--hon-gold-700);
	outline-offset: 2px;
}

.hon-enq--popup {
	padding: 0;
}

@media (max-width: 599px) {
	.hon-enq-modal {
		padding: 0;
	}

	.hon-enq-modal__dialog {
		width: 100%;
		height: 100%;
		max-height: none;
		border-radius: 0;
		padding: 20px 16px calc(20px + env(safe-area-inset-bottom));
	}
}

@keyframes hon-enq-in {
	from {
		opacity: 0;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

/* -------------------------------------------------------- WhatsApp button */

.hon-wa-float {
	position: fixed;
	right: 16px;
	bottom: calc(16px + env(safe-area-inset-bottom));
	z-index: 160;
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #1B8A4B;
	color: #FFFFFF;
	box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
	transition: transform .2s var(--hon-ease), box-shadow .2s var(--hon-ease);
}

.hon-wa-float:hover,
.hon-wa-float:focus-visible {
	color: #FFFFFF;
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(0, 0, 0, .3);
}

/* Beat the Elementor kit's link colour (.elementor-kit-N a). */
body a.hon-wa-float,
body a.hon-wa-float:hover,
body a.hon-wa-float:focus-visible {
	color: #FFFFFF;
}

.hon-wa-float svg {
	fill: currentColor;
}

.hon-wa-float:focus-visible {
	outline: 3px solid var(--hon-ink);
	outline-offset: 3px;
}

@media (max-width: 1024px) {
	body.single-tour .hon-wa-float {
		bottom: calc(84px + env(safe-area-inset-bottom));
	}
}

@media (prefers-reduced-motion: reduce) {
	.hon-enq-modal__dialog {
		animation: none;
	}

	.hon-enq *,
	.hon-wa-float {
		transition: none !important;
	}

	.hon-wa-float:hover,
	.hon-wa-float:focus-visible {
		transform: none;
	}
}

@media print {
	.hon-wa-float,
	.hon-enq-modal {
		display: none !important;
	}
}
