:root {
	--vtr-ink: #152238;
	--vtr-muted: #64748b;
	--vtr-line: #dbe3ee;
	--vtr-soft: #f5f8fc;
}

.vtr-registration,
.vtr-registration *,
.vtr-floating,
.vtr-floating *,
.vtr-modal,
.vtr-modal * {
	box-sizing: border-box;
}

.vtr-registration {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: clamp(22px, 4vw, 42px);
	border: 1px solid rgba(11, 36, 77, 0.1);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 20px 60px rgba(15, 35, 65, 0.11);
	color: var(--vtr-ink);
	font-family: inherit;
}

.vtr-registration__header {
	margin-bottom: 26px;
}

.vtr-registration__eyebrow {
	display: block;
	margin-bottom: 7px;
	color: var(--vtr-accent);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.vtr-registration__header h2 {
	margin: 0;
	color: var(--vtr-ink);
	font-size: clamp(26px, 4vw, 38px);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.12;
}

.vtr-registration__header p {
	margin: 10px 0 0;
	color: var(--vtr-muted);
	font-size: 15px;
	line-height: 1.65;
}

.vtr-grid {
	display: grid;
	gap: 18px;
}

.vtr-grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vtr-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vtr-field {
	min-width: 0;
	margin-bottom: 19px;
}

.vtr-field label,
.vtr-passengers legend {
	display: block;
	margin: 0 0 8px;
	color: #26364d;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.vtr-field input:not([type="checkbox"]),
.vtr-field select,
.vtr-field textarea {
	display: block;
	width: 100%;
	min-height: 48px;
	margin: 0;
	padding: 11px 13px;
	border: 1px solid var(--vtr-line);
	border-radius: 10px;
	outline: none;
	background: #fff;
	box-shadow: none;
	color: var(--vtr-ink);
	font: inherit;
	font-size: 16px;
	line-height: 1.4;
	transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
	-webkit-appearance: none;
	appearance: none;
}

.vtr-field select {
	padding-right: 42px;
	background-image: linear-gradient(45deg, transparent 50%, #62748b 50%), linear-gradient(135deg, #62748b 50%, transparent 50%);
	background-position: calc(100% - 18px) 20px, calc(100% - 12px) 20px;
	background-repeat: no-repeat;
	background-size: 6px 6px, 6px 6px;
}

.vtr-field textarea {
	min-height: 105px;
	resize: vertical;
}

.vtr-field input:not([type="checkbox"]):focus,
.vtr-field select:focus,
.vtr-field textarea:focus {
	border-color: var(--vtr-accent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--vtr-accent) 15%, transparent);
}

.vtr-field [aria-invalid="true"] {
	border-color: #c93636 !important;
	box-shadow: 0 0 0 3px rgba(201, 54, 54, 0.1) !important;
}

.vtr-field__error {
	display: block;
	min-height: 0;
	margin-top: 5px;
	color: #b42318;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
}

.vtr-optional {
	color: var(--vtr-muted);
	font-weight: 400;
}

.vtr-date-card {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	margin: -3px 0 21px;
	padding: 16px;
	border: 1px solid color-mix(in srgb, var(--vtr-accent) 20%, #dbe3ee);
	border-radius: 12px;
	background: color-mix(in srgb, var(--vtr-accent) 5%, #fff);
}

.vtr-date-card[hidden],
.vtr-field[hidden],
.vtr-date-card [hidden],
.vtr-modal[hidden] {
	display: none !important;
}

.vtr-date-card__icon {
	display: grid;
	flex: 0 0 37px;
	width: 37px;
	height: 37px;
	place-items: center;
	border-radius: 9px;
	background: var(--vtr-accent);
	font-size: 18px;
}

.vtr-date-card__content {
	flex: 1;
	min-width: 0;
}

.vtr-date-card__content > strong {
	display: block;
	margin: 1px 0 3px;
	color: var(--vtr-ink);
	font-size: 14px;
}

.vtr-date-card__content > p {
	margin: 0;
	color: var(--vtr-muted);
	font-size: 14px;
}

.vtr-field--date {
	margin: 12px 0 0;
}

.vtr-passengers {
	min-width: 0;
	margin: 2px 0 21px;
	padding: 0;
	border: 0;
}

.vtr-passengers legend {
	padding: 0;
}

.vtr-number {
	min-width: 0;
	padding: 12px;
	border: 1px solid var(--vtr-line);
	border-radius: 11px;
	background: var(--vtr-soft);
}

.vtr-number label {
	display: block;
	margin: 0;
	font-size: 13px;
	font-weight: 800;
}

.vtr-number small {
	display: block;
	min-height: 17px;
	margin: 2px 0 9px;
	color: var(--vtr-muted);
	font-size: 11px;
	line-height: 1.35;
}

.vtr-number input {
	display: block;
	width: 100%;
	min-height: 40px;
	margin: 0;
	padding: 7px 9px;
	border: 1px solid var(--vtr-line);
	border-radius: 8px;
	background: #fff;
	color: var(--vtr-ink);
	font: inherit;
	font-size: 16px;
}

.vtr-field--consent {
	margin: 2px 0 21px;
}

.vtr-field--consent label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	font-weight: 500;
	line-height: 1.55;
	cursor: pointer;
}

.vtr-field--consent input[type="checkbox"] {
	flex: 0 0 19px;
	width: 19px;
	height: 19px;
	margin: 1px 0 0;
	accent-color: var(--vtr-accent);
}

.vtr-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	min-height: 50px;
	padding: 12px 21px;
	border: 0;
	border-radius: 11px;
	background: var(--vtr-accent);
	box-shadow: 0 10px 24px color-mix(in srgb, var(--vtr-accent) 24%, transparent);
	color: #fff;
	font: inherit;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
	cursor: pointer;
	transition: transform 160ms ease, filter 160ms ease, opacity 160ms ease;
}

.vtr-submit:hover {
	filter: brightness(1.12);
	transform: translateY(-1px);
}

.vtr-submit:focus-visible,
.vtr-floating__trigger:focus-visible,
.vtr-modal__close:focus-visible {
	outline: 3px solid #f2b84b;
	outline-offset: 3px;
}

.vtr-submit:disabled {
	cursor: wait;
	opacity: 0.68;
	transform: none;
}

.vtr-submit__arrow {
	font-size: 20px;
	line-height: 1;
}

.vtr-response {
	display: none;
	margin-top: 16px;
	padding: 13px 15px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.55;
}

.vtr-response.is-visible {
	display: block;
}

.vtr-response.is-success {
	border: 1px solid #a6d8bb;
	background: #eefbf3;
	color: #17633a;
}

.vtr-response.is-error {
	border: 1px solid #f0b7b3;
	background: #fff3f2;
	color: #9f281f;
}

.vtr-notice {
	padding: 15px 17px;
	border-radius: 10px;
	font-size: 14px;
	line-height: 1.55;
}

.vtr-notice--info {
	border: 1px solid #b8d6f2;
	background: #eff7ff;
	color: #194d77;
}

.vtr-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.vtr-floating {
	position: fixed;
	z-index: 99990;
	bottom: 20px;
	left: 20px;
}

.vtr-floating__trigger {
	position: relative;
	display: grid;
	width: 58px;
	height: 58px;
	padding: 0;
	place-items: center;
	border: 2px solid rgba(255, 255, 255, 0.85);
	border-radius: 50%;
	background: var(--vtr-accent);
	box-shadow: 0 12px 32px rgba(13, 34, 67, 0.32);
	color: #fff;
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.vtr-floating__trigger:hover {
	filter: brightness(1.1);
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 16px 38px rgba(13, 34, 67, 0.38);
}

.vtr-floating__trigger svg {
	position: relative;
	z-index: 2;
	width: 29px;
	height: 29px;
	fill: currentColor;
	transform: rotate(-25deg);
}

.vtr-floating__pulse {
	position: absolute;
	inset: -4px;
	border: 2px solid var(--vtr-accent);
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	animation: vtr-pulse 2.4s ease-out infinite;
}

@keyframes vtr-pulse {
	0% { opacity: 0.45; transform: scale(0.85); }
	70%, 100% { opacity: 0; transform: scale(1.35); }
}

.vtr-modal {
	position: fixed;
	z-index: 99999;
	inset: 0;
	display: grid;
	padding: 22px;
	place-items: center;
}

.vtr-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 19, 38, 0.72);
	backdrop-filter: blur(4px);
}

.vtr-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(920px, 100%);
	max-height: calc(100vh - 44px);
	overflow-x: hidden;
	overflow-y: auto;
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
	-webkit-overflow-scrolling: touch;
}

.vtr-modal .vtr-registration {
	max-width: none;
	border: 0;
	box-shadow: none;
}

.vtr-modal__close {
	position: absolute;
	z-index: 5;
	top: 14px;
	right: 14px;
	display: grid;
	width: 39px;
	height: 39px;
	padding: 0;
	place-items: center;
	border: 1px solid #dce3ec;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 5px 15px rgba(15, 35, 65, 0.1);
	color: #334155;
	font-family: Arial, sans-serif;
	font-size: 28px;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
}

.vtr-modal__close:hover {
	background: #f1f5f9;
	color: #111827;
}

body.vtr-modal-open {
	overflow: hidden !important;
}

@media (max-width: 760px) {
	.vtr-registration {
		padding: 25px 18px;
		border-radius: 16px;
	}

	.vtr-registration__header {
		padding-right: 28px;
		margin-bottom: 21px;
	}

	.vtr-registration__header h2 {
		font-size: 27px;
	}

	.vtr-grid--two {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.vtr-grid--four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.vtr-field {
		margin-bottom: 16px;
	}

	.vtr-submit {
		width: 100%;
	}

	.vtr-modal {
		align-items: end;
		padding: 0;
	}

	.vtr-modal__dialog {
		width: 100%;
		max-height: 94vh;
		border-radius: 20px 20px 0 0;
	}

	.vtr-floating {
		bottom: 13px;
		left: 13px;
	}

	.vtr-floating__trigger {
		width: 53px;
		height: 53px;
	}

	.vtr-floating__trigger svg {
		width: 26px;
		height: 26px;
	}
}

@media (max-width: 380px) {
	.vtr-grid--four {
		grid-template-columns: 1fr;
	}
}

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

	.vtr-submit,
	.vtr-floating__trigger {
		transition: none;
	}
}
