/**
 * HALINK C9 — Booking page (Luxury Spa mockup)
 */

.hl-page--booking {
	background: var(--hl-bg);
}

/* ===== HERO ===== */
.hl-book-hero {
	padding: clamp(1.75rem, 4vw, 3rem) 0;
	background: var(--hl-bg);
}

.hl-book-hero__crumb {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	align-items: center;
	margin-bottom: 0.85rem;
	font-size: 0.86rem;
	color: var(--hl-muted);
}

.hl-book-hero__crumb a {
	color: var(--hl-muted);
	text-decoration: none;
}

.hl-book-hero__crumb a:hover {
	color: var(--hl-gold);
}

.hl-book-hero__title {
	margin: 0 0 0.55rem;
	font-family: var(--hl-font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--hl-ink);
}

.hl-book-hero__text {
	margin: 0 0 1.25rem;
	font-size: 1.1rem;
	color: var(--hl-muted);
}

.hl-book-hero__points {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hl-book-hero__points li {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--hl-ink);
}

.hl-book-hero__icon {
	width: 2rem;
	height: 2rem;
	display: grid;
	place-items: center;
	border: 1px solid rgba(184, 154, 90, 0.45);
	border-radius: 50%;
	color: var(--hl-gold);
	font-size: 0.85rem;
}

.hl-book-hero__media {
	overflow: hidden;
	border-radius: 0.35rem;
	box-shadow: 0 16px 40px rgba(47, 59, 40, 0.1);
}

.hl-book-hero__media img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

/* ===== STEPS ===== */
.hl-book-steps {
	padding: 0 0 1.5rem;
}

.hl-book-steps__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 0;
	padding: 1.15rem 1rem;
	list-style: none;
	background: #fff;
	border: 1px solid var(--hl-border);
	border-radius: 0.35rem;
}

.hl-book-steps__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.55rem;
	text-align: center;
	position: relative;
	color: var(--hl-muted);
}

.hl-book-steps__item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 1.15rem;
	left: calc(50% + 1.4rem);
	width: calc(100% - 2.8rem);
	height: 1px;
	background: var(--hl-border);
}

.hl-book-steps__num {
	width: 2.35rem;
	height: 2.35rem;
	display: grid;
	place-items: center;
	border-radius: 50%;
	border: 1px solid var(--hl-gold);
	color: var(--hl-gold);
	background: #fff;
	font-size: 0.9rem;
	z-index: 1;
}

.hl-book-steps__item.is-active .hl-book-steps__num,
.hl-book-steps__item.is-done .hl-book-steps__num {
	background: var(--hl-primary);
	border-color: var(--hl-primary);
	color: #fff;
}

.hl-book-steps__item.is-active {
	color: var(--hl-ink);
	font-weight: 700;
}

.hl-book-steps__label {
	font-size: 0.82rem;
	font-weight: 600;
}

/* ===== MAIN ===== */
.hl-book-main {
	padding: 0.5rem 0 clamp(2rem, 4vw, 3rem);
}

.hl-book-panel,
.hl-book-summary,
.hl-book-commit,
.hl-book-support {
	background: #fff;
	border: 1px solid var(--hl-border);
	border-radius: 0.35rem;
}

.hl-book-panel {
	padding: clamp(1.25rem, 3vw, 1.85rem);
	box-shadow: 0 12px 32px rgba(47, 59, 40, 0.05);
}

.hl-book-panel__title {
	margin: 0 0 1.25rem;
	font-family: var(--hl-font-display);
	font-size: 1.45rem;
	font-weight: 600;
	color: var(--hl-ink);
}

.hl-book-label {
	display: block;
	margin-bottom: 0.4rem;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--hl-ink);
}

.hl-book-input,
.hl-book-input-wrap .hl-book-input {
	width: 100%;
	height: 2.85rem;
	padding: 0 0.9rem;
	border: 1px solid var(--hl-border);
	border-radius: 0.2rem;
	background: #faf8f4;
	color: var(--hl-ink);
	font-size: 0.95rem;
}

textarea.hl-book-input {
	height: auto;
	padding: 0.75rem 0.9rem;
	resize: vertical;
}

.hl-book-input:focus {
	outline: 0;
	border-color: var(--hl-gold);
	background: #fff;
}

.hl-book-input-wrap {
	position: relative;
}

.hl-book-input-wrap i {
	position: absolute;
	right: 0.85rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--hl-muted);
	pointer-events: none;
}

.hl-book-input-wrap .hl-book-input {
	padding-right: 2.35rem;
	appearance: none;
}

.hl-book-service__card {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin-top: 0.75rem;
	padding: 0.85rem;
	background: var(--hl-bg);
	border: 1px solid var(--hl-border);
	border-radius: 0.25rem;
}

.hl-book-service__card img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 0.2rem;
	flex-shrink: 0;
}

.hl-book-service__card strong {
	display: block;
	margin-bottom: 0.2rem;
	font-size: 0.98rem;
	color: var(--hl-ink);
}

.hl-book-service__card span {
	font-size: 0.86rem;
	color: var(--hl-muted);
}

.hl-book-confirm {
	margin: 0;
	padding: 0;
	border: 0;
}

.hl-book-confirm__opts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem 1rem;
}

.hl-book-radio {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.9rem;
	color: var(--hl-text);
	cursor: pointer;
}

.hl-book-radio input {
	accent-color: var(--hl-primary);
}

.hl-book-check {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	font-size: 0.88rem;
	color: var(--hl-text);
	cursor: pointer;
}

.hl-book-check input {
	margin-top: 0.2rem;
	accent-color: var(--hl-primary);
}

.hl-book-check a {
	color: var(--hl-gold);
}

.hl-book-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	width: 100%;
	margin-top: 1.25rem;
	padding: 0.95rem 1.25rem;
	border: 0;
	border-radius: 0.2rem;
	background: var(--hl-primary);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
}

.hl-book-submit:hover {
	background: #1c1c1c;
}

.hl-book-submit:disabled {
	opacity: 0.7;
	cursor: wait;
}

.hl-book-secure {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	margin: 0.85rem 0 0;
	font-size: 0.82rem;
	color: var(--hl-muted);
}

.hl-book-secure i {
	color: var(--hl-gold);
}

.hl-booking__msg {
	margin: 0.75rem 0 0;
	padding: 0.65rem 0.85rem;
	border-radius: 0.2rem;
	font-size: 0.9rem;
}

.hl-booking__msg:not([hidden]) {
	background: rgba(180, 35, 24, 0.08);
	color: var(--hl-danger);
}

/* ===== ASIDE ===== */
.hl-book-aside {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: sticky;
	top: 6.5rem;
}

.hl-book-summary {
	padding: 1.25rem;
}

.hl-book-summary__title {
	margin: 0 0 1rem;
	font-family: var(--hl-font-display);
	font-size: 1.25rem;
	font-weight: 600;
}

.hl-book-summary__service {
	display: flex;
	gap: 0.85rem;
	align-items: center;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--hl-border);
}

.hl-book-summary__service img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 0.2rem;
}

.hl-book-summary__service strong {
	display: block;
	margin-bottom: 0.2rem;
	font-size: 0.98rem;
}

.hl-book-summary__service span {
	font-size: 0.84rem;
	color: var(--hl-muted);
}

.hl-book-summary__list {
	margin: 0 0 1rem;
	padding: 0;
	list-style: none;
}

.hl-book-summary__list li {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.4rem 0;
	font-size: 0.9rem;
	border-bottom: 1px dashed var(--hl-border);
}

.hl-book-summary__list span {
	color: var(--hl-muted);
}

.hl-book-summary__list b {
	font-weight: 600;
	color: var(--hl-ink);
	text-align: right;
}

.hl-book-summary__price > div {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.3rem 0;
	font-size: 0.9rem;
}

.hl-book-summary__price .is-total {
	margin-top: 0.35rem;
	padding-top: 0.65rem;
	border-top: 1px solid var(--hl-border);
	font-size: 1.05rem;
}

.hl-book-summary__price .is-total strong {
	color: var(--hl-primary);
	font-size: 1.2rem;
}

.hl-book-commit {
	padding: 1.15rem 1.25rem;
	background: #eef3ea;
	border-color: #d5e2cf;
}

.hl-book-commit strong {
	display: block;
	margin-bottom: 0.65rem;
	font-size: 0.92rem;
	color: var(--hl-ink);
}

.hl-book-commit ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hl-book-commit li {
	position: relative;
	padding: 0.28rem 0 0.28rem 1.35rem;
	font-size: 0.86rem;
	color: var(--hl-text);
}

.hl-book-commit li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--hl-primary);
	font-weight: 700;
}

.hl-book-support {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 1.1rem 1.25rem;
	background: var(--hl-bg);
}

.hl-book-support__icon {
	width: 2.75rem;
	height: 2.75rem;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--hl-primary);
	color: #fff;
	flex-shrink: 0;
}

.hl-book-support strong {
	display: block;
	font-size: 0.86rem;
	margin-bottom: 0.15rem;
}

.hl-book-support a {
	color: var(--hl-primary);
	font-weight: 700;
	text-decoration: none;
	font-size: 1.05rem;
}

/* ===== TRUST ===== */
.hl-book-trust {
	padding: 1.5rem 0 clamp(2.5rem, 5vw, 3.5rem);
	border-top: 1px solid var(--hl-border);
	background: #fff;
}

.hl-book-trust__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.55rem;
	text-align: center;
	padding: 0.5rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--hl-ink);
}

.hl-book-trust__icon {
	width: 2.75rem;
	height: 2.75rem;
	display: grid;
	place-items: center;
	border: 1px solid rgba(184, 154, 90, 0.45);
	color: var(--hl-gold);
	font-size: 1.1rem;
}

@media (max-width: 991.98px) {
	.hl-book-aside {
		position: static;
	}

	.hl-book-trust .col {
		flex: 0 0 33.333%;
		max-width: 33.333%;
	}
}

@media (max-width: 575.98px) {
	.hl-book-steps__label {
		font-size: 0.72rem;
	}

	.hl-book-trust .col {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

/* ===== THANK YOU / CAM ON ===== */
.hl-page--thankyou {
	background:
		radial-gradient(ellipse 60% 50% at 50% 0%, rgba(184, 154, 90, 0.12), transparent 60%),
		var(--hl-bg, #f7f3ec);
}

.hl-thankyou {
	padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}

.hl-thankyou__panel {
	position: relative;
	isolation: isolate;
	max-width: 52rem;
	margin: 0 auto;
	padding: clamp(2rem, 4.5vw, 3.25rem) clamp(1.35rem, 3.5vw, 2.75rem);
	background: #fff;
	border: 1px solid rgba(47, 59, 40, 0.08);
	border-radius: 1.35rem;
	box-shadow: 0 24px 60px rgba(28, 34, 24, 0.08);
	overflow: hidden;
	text-align: center;
}

.hl-thankyou__glow {
	position: absolute;
	inset: auto auto -20% -10%;
	width: min(70%, 22rem);
	height: min(70%, 22rem);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(184, 154, 90, 0.18), transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.hl-thankyou__status,
.hl-thankyou__steps,
.hl-thankyou__contact,
.hl-thankyou__actions {
	position: relative;
	z-index: 1;
}

.hl-thankyou__icon {
	display: inline-flex;
	margin-bottom: 1.15rem;
	animation: hl-thankyou-pop 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hl-thankyou__icon svg {
	display: block;
	filter: drop-shadow(0 10px 24px rgba(47, 59, 40, 0.22));
}

.hl-thankyou__eyebrow {
	margin: 0 0 0.55rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--hl-gold, #b89a5a);
}

.hl-thankyou__title {
	margin: 0 0 0.85rem;
	font-family: var(--hl-font-display, "Be Vietnam Pro", sans-serif);
	font-size: clamp(1.85rem, 4vw, 2.65rem);
	font-weight: 600;
	line-height: 1.2;
	color: var(--hl-ink, #1c2218);
}

.hl-thankyou__text {
	margin: 0 auto 2rem;
	max-width: 34rem;
	font-size: 1.02rem;
	line-height: 1.65;
	color: var(--hl-muted, rgba(28, 34, 24, 0.68));
}

.hl-thankyou__steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin: 0 0 2rem;
	padding: 0;
	text-align: left;
}

.hl-thankyou__step {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 1.15rem 1rem;
	background: var(--hl-bg, #f7f3ec);
	border: 1px solid rgba(47, 59, 40, 0.06);
	border-radius: 0.85rem;
	min-height: 100%;
}

.hl-thankyou__step-num {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: var(--hl-gold, #b89a5a);
}

.hl-thankyou__step-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--hl-ink, #1c2218);
}

.hl-thankyou__step-text {
	font-size: 0.86rem;
	line-height: 1.45;
	color: var(--hl-muted, rgba(28, 34, 24, 0.68));
}

.hl-thankyou__contact {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
	margin: 0 0 2rem;
}

.hl-thankyou__contact-item {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.95rem 1.1rem;
	text-align: left;
	text-decoration: none;
	color: inherit;
	background: rgba(47, 59, 40, 0.04);
	border: 1px solid rgba(47, 59, 40, 0.08);
	border-radius: 0.85rem;
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.hl-thankyou__contact-item:hover {
	background: #fff;
	border-color: rgba(184, 154, 90, 0.55);
	transform: translateY(-2px);
}

.hl-thankyou__contact-icon {
	width: 2.5rem;
	height: 2.5rem;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	border-radius: 50%;
	border: 1px solid rgba(184, 154, 90, 0.45);
	color: var(--hl-gold, #b89a5a);
	background: #fff;
}

.hl-thankyou__contact-icon .fa {
	display: block;
	line-height: 1;
}

.hl-thankyou__contact-item strong {
	display: block;
	margin-bottom: 0.15rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-muted, rgba(28, 34, 24, 0.68));
}

.hl-thankyou__contact-item em {
	font-style: normal;
	font-size: 0.98rem;
	font-weight: 700;
	color: var(--hl-primary, #2f3b28);
}

.hl-thankyou__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.hl-thankyou__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	min-height: 3rem;
	padding: 0.75rem 1.45rem;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 0.55rem;
	border: 1px solid transparent;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hl-thankyou__btn--primary {
	background: var(--hl-primary, #2f3b28);
	color: #fff;
}

.hl-thankyou__btn--primary:hover {
	background: var(--hl-gold, #b89a5a);
	color: #1c2218;
	transform: translateY(-1px);
}

.hl-thankyou__btn--ghost {
	background: transparent;
	color: var(--hl-primary, #2f3b28);
	border-color: rgba(47, 59, 40, 0.22);
}

.hl-thankyou__btn--ghost:hover {
	border-color: var(--hl-gold, #b89a5a);
	color: var(--hl-gold, #b89a5a);
}

@keyframes hl-thankyou-pop {
	from {
		opacity: 0;
		transform: scale(0.85) translateY(0.75rem);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 767.98px) {
	.hl-thankyou__steps {
		grid-template-columns: 1fr;
	}

	.hl-thankyou__contact {
		grid-template-columns: 1fr;
	}

	.hl-thankyou__actions {
		flex-direction: column;
	}

	.hl-thankyou__btn {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hl-thankyou__icon {
		animation: none;
	}
}
