:root {
	--bg: #020817;
	--bg-soft: #070d22;
	--bg-panel: #0c1227;
	--bg-panel-2: #101933;
	--ink: #f8f2e7;
	--muted: #9ca7bd;
	--line: rgba(255, 255, 255, 0.12);
	--line-gold: rgba(255, 171, 31, 0.34);
	--gold: #ffab1f;
	--gold-soft: #ffd36a;
	--gold-dark: #b97805;
	--deep: #020615;
	--green: #132f35;
	--shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
	--font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	--font-display: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 12% 18%, rgba(45, 28, 118, 0.34), transparent 34%),
		radial-gradient(circle at 85% 18%, rgba(255, 171, 31, 0.08), transparent 28%),
		var(--bg);
	color: var(--ink);
	font-family: var(--font-body);
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

.container {
	width: min(1180px, calc(100% - 32px));
	margin-inline: auto;
}

.narrow {
	max-width: 820px;
}

.skip-link {
	position: absolute;
	left: -999px;
	top: 12px;
	z-index: 20;
	background: #fff;
	color: #111;
	padding: 10px 14px;
}

.skip-link:focus {
	left: 12px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: rgba(4, 7, 24, 0.88);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(255, 171, 31, 0.2);
}

.header-inner {
	min-height: 68px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.brand-logo,
.custom-logo {
	display: block;
	width: min(260px, 48vw);
	height: auto;
}

.footer-brand .brand-logo {
	width: min(280px, 70vw);
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 211, 106, 0.45);
	border-radius: 10px;
	background: linear-gradient(180deg, #ffc24a 0%, #ff9d00 100%);
	color: #1a1204;
	box-shadow: 0 12px 30px rgba(255, 171, 31, 0.28);
	font-family: var(--font-display);
	font-weight: 900;
}

.brand strong,
.brand small {
	display: block;
	line-height: 1.05;
}

.brand strong {
	color: #fff7e8;
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: 0;
}

.brand small {
	margin-top: 4px;
	color: var(--gold);
	font-size: 0.58rem;
	font-weight: 900;
	letter-spacing: 0;
}

.primary-nav ul {
	display: flex;
	align-items: center;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.primary-nav li {
	position: relative;
}

.primary-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 8px 15px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: #d8deee;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus {
	background: linear-gradient(180deg, #ffc24a 0%, #ff9d00 100%);
	border-color: rgba(255, 211, 106, 0.8);
	color: #191104;
	transform: translateY(-1px);
}

.primary-nav .menu-item-has-children > a::after {
	content: "";
	width: 0;
	height: 0;
	margin-left: 8px;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	opacity: 0.72;
}

.primary-nav .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	z-index: 30;
	display: grid;
	min-width: 220px;
	gap: 6px;
	padding: 10px;
	border: 1px solid rgba(255, 171, 31, 0.22);
	border-radius: 18px;
	background: rgba(8, 13, 31, 0.96);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 160ms ease, transform 160ms ease;
}

.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.primary-nav .sub-menu a {
	justify-content: flex-start;
	width: 100%;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.045);
	text-transform: none;
	white-space: nowrap;
}

.header-tools {
	display: flex;
	align-items: center;
	gap: 10px;
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: 9px;
	min-height: 40px;
	padding: 8px 12px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
	color: #fff7e8;
	font: inherit;
	font-size: 0.76rem;
	font-weight: 900;
	text-transform: uppercase;
	cursor: pointer;
}

.menu-toggle-icon {
	display: grid;
	gap: 4px;
	width: 20px;
}

.menu-toggle-icon i {
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .menu-toggle-icon i:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-toggle-icon i:nth-child(2) {
	opacity: 0;
}

.site-header.menu-open .menu-toggle-icon i:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.language-dropdown {
	position: relative;
	z-index: 30;
}

.language-current,
.language-menu a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 34px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: #d8deee;
	font: inherit;
	font-size: 0.76rem;
	font-weight: 950;
	line-height: 1;
	white-space: nowrap;
	text-transform: uppercase;
}

.language-current {
	padding: 6px 30px 6px 11px;
	cursor: pointer;
}

.language-current::after {
	position: absolute;
	right: 11px;
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	content: "";
}

.language-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	display: grid;
	gap: 6px;
	min-width: 180px;
	margin: 0;
	padding: 8px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 14px;
	background: rgba(5, 9, 28, 0.96);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
	list-style: none;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-6px);
	transition: opacity 160ms ease, transform 160ms ease;
}

.language-dropdown:hover .language-menu,
.language-dropdown:focus-within .language-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.language-menu a {
	justify-content: flex-start;
	width: 100%;
	padding: 9px 11px;
	border-radius: 10px;
	text-decoration: none;
}

.language-menu a:hover,
.language-menu a:focus,
.language-menu .current-lang a,
.language-current:hover,
.language-current:focus {
	border-color: rgba(255, 211, 106, 0.58);
	background: rgba(255, 171, 31, 0.12);
	color: var(--gold-soft);
}

.language-switcher img {
	display: block;
	width: 20px;
	height: 14px;
	border-radius: 3px;
	object-fit: cover;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.language-switcher > ul {
	display: flex;
	align-items: center;
	gap: 6px;
	max-width: 190px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.language-switcher > ul a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	min-height: 34px;
	padding: 6px 10px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: #d8deee;
	font-size: 0.72rem;
	font-weight: 950;
	text-transform: uppercase;
}

.theme-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 34px;
	padding: 6px 12px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: #d8deee;
	font: inherit;
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
	cursor: pointer;
}

.theme-toggle-dot {
	width: 14px;
	height: 14px;
	border-radius: 999px;
	background: linear-gradient(180deg, #ffc24a 0%, #ff9d00 100%);
	box-shadow: 0 0 0 4px rgba(255, 171, 31, 0.12);
}

.hero {
	min-height: 0;
	padding: 56px 0 52px;
	background:
		linear-gradient(90deg, rgba(2, 6, 21, 0.82) 0%, rgba(5, 9, 28, 0.62) 46%, rgba(5, 9, 28, 0.22) 100%),
		linear-gradient(180deg, rgba(5, 9, 28, 0.08) 0%, rgba(5, 9, 28, 0.66) 100%),
		var(--hero-image) center 44% / cover no-repeat;
	color: #fff;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.58fr);
	gap: 48px;
	align-items: center;
}

.hero-copy {
	max-width: 710px;
	padding: 8px 0;
}

.eyebrow,
.section-kicker {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin: 0 0 16px;
	padding: 5px 12px;
	border: 1px solid rgba(255, 171, 31, 0.42);
	border-radius: 999px;
	background: rgba(255, 171, 31, 0.08);
	color: var(--gold);
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.eyebrow.dark {
	color: var(--gold);
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1 {
	max-width: 760px;
	margin-bottom: 24px;
	font-family: var(--font-display);
	font-size: clamp(2.35rem, 5.4vw, 5.2rem);
	font-weight: 850;
	line-height: 1;
	letter-spacing: 0;
}

h2 {
	font-family: var(--font-display);
	font-size: clamp(1.65rem, 3vw, 2.9rem);
	font-weight: 820;
	line-height: 1.06;
	letter-spacing: 0;
}

h3 {
	font-size: 1.22rem;
}

.hero-copy h1 {
	color: var(--gold-soft);
	text-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.hero-lead {
	max-width: 610px;
	color: #d5ddec;
	font-size: 1rem;
	font-weight: 700;
}

.hero-actions,
.trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.hero-actions {
	margin-top: 20px;
}

.trust-row {
	margin-top: 20px;
	color: #dce5f7;
}

.trust-row span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #f4f7ff;
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.trust-row span::before {
	content: "";
	width: 9px;
	height: 9px;
	border: 2px solid var(--gold);
	border-radius: 999px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 20px;
	border: 1px solid transparent;
	border-radius: 12px;
	font-size: 0.85rem;
	font-weight: 900;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
	transform: translateY(-1px);
}

.button-primary {
	background: linear-gradient(180deg, #ffc24a 0%, #ff9d00 100%);
	color: #130f09;
	box-shadow: 0 16px 30px rgba(255, 171, 31, 0.22);
}

.button-ghost {
	border-color: rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
}

.button-light {
	background: linear-gradient(180deg, #ffc24a 0%, #ff9d00 100%);
	color: #140f07;
}

.button.full {
	width: 100%;
}

.booking-panel {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(14, 20, 44, 0.94) 0%, rgba(8, 13, 31, 0.96) 100%);
	color: var(--ink);
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 20px;
	box-shadow: var(--shadow);
}

.booking-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	border-top: 1px solid rgba(255, 211, 106, 0.32);
	pointer-events: none;
}

.booking-panel h2 {
	margin-bottom: 18px;
	color: #fff7e8;
	font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.booking-form,
.booking-form-compact {
	position: relative;
	display: grid;
	gap: 14px;
}

.booking-form-compact {
	gap: 16px;
}

.booking-detail-section {
	background:
		radial-gradient(circle at 14% 12%, rgba(45, 28, 118, 0.28), transparent 34%),
		radial-gradient(circle at 86% 14%, rgba(255, 171, 31, 0.08), transparent 30%),
		#020817;
}

.booking-detail-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 26px;
	align-items: start;
}

.booking-detail-copy {
	max-width: 900px;
	padding-top: 0;
}

.booking-detail-copy h1 {
	margin-bottom: 18px;
	color: #fff7e8;
	font-family: var(--font-display);
	font-size: clamp(2.25rem, 4.6vw, 4rem);
	line-height: 1;
}

.booking-detail-copy p:last-child {
	color: #c7d0e3;
	font-weight: 750;
}

.booking-detail-panel {
	max-width: none;
	justify-self: stretch;
	padding: 34px;
}

.booking-form-wide {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.booking-form-wide > label,
.booking-form-wide > .field-grid,
.booking-form-wide > .trip-type-group,
.booking-form-wide > .booking-section-title,
.booking-form-wide > .notice,
.booking-form-wide > .estimate-box,
.booking-form-wide > input[type="hidden"],
.booking-form-wide > button {
	grid-column: span 2;
}

.booking-form-wide > .field-full,
.booking-form-wide > .booking-section-title,
.booking-form-wide > .return-trip-fields,
.booking-form-wide > .estimate-box,
.booking-form-wide > button {
	grid-column: 1 / -1;
}

.booking-form-wide .field-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-form-wide .outbound-trip-grid {
	grid-column: 1 / -1;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.booking-form-wide textarea {
	min-height: 120px;
}

.booking-section-title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 4px;
	color: var(--gold-soft);
	font-size: 0.82rem;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.booking-section-title::after {
	content: "";
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, rgba(255, 171, 31, 0.32), transparent);
}

.field-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

label {
	display: grid;
	gap: 7px;
	color: #aeb8cf;
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
}

input,
select,
textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.055);
	color: #f8f2e7;
	font: inherit;
	padding: 13px 44px 13px 14px;
	border-radius: 10px;
}

select {
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, #f7c462 50%),
		linear-gradient(135deg, #f7c462 50%, transparent 50%);
	background-position:
		calc(100% - 18px) 50%,
		calc(100% - 12px) 50%;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	font-weight: 850;
}

select option,
select optgroup {
	background: #fffaf1;
	color: #1f1a12;
	font-weight: 750;
}

select option:checked {
	background: #ffab1f;
	color: #171004;
}

select option:hover {
	background: #ffe4a8;
	color: #171004;
}

input::placeholder,
textarea::placeholder {
	color: rgba(220, 229, 247, 0.46);
}

input:focus,
select:focus,
textarea:focus {
	outline: 2px solid rgba(255, 171, 31, 0.28);
	border-color: rgba(255, 171, 31, 0.72);
	background-color: rgba(255, 255, 255, 0.08);
}

.vehicle-hint {
	color: #7f8aa2;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: none;
}

.booking-vehicle-preview {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
	overflow: hidden;
	border: 1px solid rgba(255, 171, 31, 0.22);
	border-radius: 10px;
	background:
		linear-gradient(135deg, rgba(255, 171, 31, 0.1) 0%, rgba(255, 255, 255, 0.035) 48%),
		rgba(5, 10, 28, 0.72);
}

.booking-vehicle-preview[hidden] {
	display: none;
}

.booking-vehicle-image {
	min-height: 190px;
	background: #080d1c;
}

.booking-vehicle-image img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 190px;
	object-fit: cover;
}

.booking-vehicle-content {
	align-self: center;
	padding: 24px 26px;
}

.booking-vehicle-label {
	display: block;
	margin-bottom: 7px;
	color: var(--gold);
	font-size: 0.72rem;
	font-weight: 950;
	text-transform: uppercase;
}

.booking-vehicle-content h3 {
	margin: 0 0 8px;
	color: #fff7e8;
	font-family: var(--font-display);
	font-size: 1.5rem;
}

.booking-vehicle-content p {
	margin-bottom: 15px;
	color: #aeb8cf;
	line-height: 1.6;
}

.booking-vehicle-amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.booking-vehicle-amenities li {
	padding: 7px 10px;
	border: 1px solid rgba(255, 211, 106, 0.18);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.055);
	color: #e9edf6;
	font-size: 0.76rem;
	font-weight: 800;
}

.booking-submit-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.booking-submit-spinner {
	display: none;
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	border: 2px solid rgba(23, 16, 4, 0.28);
	border-top-color: #171004;
	border-radius: 50%;
	animation: nhu-booking-spin 700ms linear infinite;
}

.booking-submit-button.is-loading .booking-submit-spinner {
	display: block;
}

.booking-submit-button.is-loading,
.booking-submit-button:disabled {
	cursor: wait;
	opacity: 0.82;
}

@keyframes nhu-booking-spin {
	to {
		transform: rotate(360deg);
	}
}

.trip-type-group {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.trip-type-option {
	position: relative;
	margin: 0;
}

.trip-type-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.trip-type-option span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 13px 16px;
	border: 1px solid rgba(255, 171, 31, 0.24);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.055);
	color: #f6efe2;
	font-weight: 900;
	text-transform: uppercase;
	transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.trip-type-option input:checked + span {
	border-color: rgba(255, 190, 64, 0.78);
	background: linear-gradient(180deg, #ffc34a, #ff9d00);
	color: #130f09;
	box-shadow: 0 18px 34px rgba(255, 171, 31, 0.24);
}

.return-trip-fields {
	display: none;
	padding: 20px;
	border: 1px solid rgba(255, 171, 31, 0.22);
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(255, 171, 31, 0.08), rgba(255, 255, 255, 0.035)),
		rgba(255, 255, 255, 0.035);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.return-trip-fields.is-visible,
.booking-form:has(input[name="trip_type"][value="round_trip"]:checked) .return-trip-fields {
	display: grid;
	gap: 16px;
}

.return-trip-fields[hidden] {
	display: none !important;
}

.return-trip-heading {
	color: var(--gold-soft);
	font-size: 0.82rem;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.estimate-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 15px 16px;
	border: 1px solid rgba(255, 171, 31, 0.24);
	border-radius: 12px;
	background: rgba(255, 171, 31, 0.08);
	color: #fff;
}

.estimate-box span {
	color: #aeb8cf;
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.estimate-box strong {
	color: var(--gold-soft);
	font-size: 1.36rem;
	font-weight: 900;
	white-space: nowrap;
}

.notice {
	position: relative;
	z-index: 1;
	padding: 12px 14px;
	border-radius: 10px;
	font-weight: 800;
}

.notice.success {
	background: rgba(35, 133, 96, 0.18);
	color: #9ff0cd;
}

.notice a {
	color: var(--gold-soft);
	font-weight: 900;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.notice.error {
	background: rgba(255, 100, 72, 0.14);
	color: #ffb6a5;
}

.service-strip {
	background:
		radial-gradient(circle at 10% 10%, rgba(255, 171, 31, 0.1), transparent 30%),
		radial-gradient(circle at 92% 16%, rgba(45, 28, 118, 0.34), transparent 34%),
		linear-gradient(90deg, #050b1d 0%, #071226 100%);
	color: #fff;
	padding: 74px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.strip-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.strip-card {
	position: relative;
	display: grid;
	align-content: start;
	min-height: 190px;
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.026)),
		rgba(255, 255, 255, 0.035);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.strip-card:hover {
	border-color: rgba(255, 211, 106, 0.36);
	transform: translateY(-3px);
	box-shadow: 0 30px 82px rgba(0, 0, 0, 0.3);
}

.strip-grid strong,
.strip-grid span {
	display: block;
}

.strip-icon {
	width: fit-content;
	margin-bottom: 26px;
	padding: 7px 11px;
	border: 1px solid rgba(255, 171, 31, 0.34);
	border-radius: 999px;
	background: rgba(255, 171, 31, 0.12);
	color: var(--gold-soft);
	font-size: 0.72rem;
	font-weight: 950;
	letter-spacing: 0.08em;
}

.strip-grid strong {
	margin-bottom: 12px;
	color: #fff7e8;
	font-family: var(--font-display);
	font-size: 1.26rem;
	font-weight: 850;
	line-height: 1.08;
}

.strip-grid span {
	color: #9ca7bd;
	font-size: 0.92rem;
	line-height: 1.62;
}

.page-section {
	padding: 86px 0;
}

.section-heading {
	max-width: 760px;
	margin: 0 auto 42px;
	text-align: center;
}

.section-heading h2 {
	color: #fff7e8;
}

.section-heading h2::after {
	content: "";
	display: block;
	width: 68px;
	height: 1px;
	margin: 20px auto 0;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-heading p:last-child {
	color: #c3ccdd;
}

.pricing-section {
	background:
		radial-gradient(circle at 20% 20%, rgba(45, 28, 118, 0.3), transparent 34%),
		linear-gradient(180deg, #020817 0%, #06112a 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-table-wrap {
	overflow-x: auto;
	border: 1px solid rgba(255, 211, 106, 0.24);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.045);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.pricing-table {
	width: 100%;
	min-width: 760px;
	border-collapse: separate;
	border-spacing: 0;
}

.pricing-table th,
.pricing-table td {
	padding: 20px 22px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
	text-align: left;
	vertical-align: middle;
}

.pricing-table thead th {
	background: rgba(255, 171, 31, 0.12);
	color: var(--gold-soft);
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
	white-space: nowrap;
}

.vehicle-table-link {
	color: var(--gold-soft);
	text-decoration: underline;
	text-decoration-color: rgba(255, 211, 106, 0.45);
	text-underline-offset: 4px;
}

.vehicle-table-link:hover {
	color: #fff7e8;
}

.pricing-table thead th:first-child {
	width: 34%;
}

.pricing-table tbody th {
	position: sticky;
	left: 0;
	z-index: 1;
	background: rgba(7, 13, 34, 0.98);
	color: #fff7e8;
	font-weight: 900;
}

.pricing-table tbody td {
	background: rgba(255, 255, 255, 0.025);
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
	border-bottom: 0;
}

.pricing-table tbody tr:hover td,
.pricing-table tbody tr:hover th {
	background: rgba(255, 171, 31, 0.08);
}

.route-name,
.route-points {
	display: block;
}

.route-table-route {
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	min-width: 260px;
}

.route-thumb {
	display: block;
	width: 74px;
	aspect-ratio: 4 / 3;
	border: 1px solid rgba(255, 211, 106, 0.3);
	border-radius: 12px;
	background:
		linear-gradient(180deg, rgba(2, 6, 21, 0.04), rgba(2, 6, 21, 0.36)),
		var(--route-image, var(--hero-image)) center / cover no-repeat;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.route-name {
	font-family: var(--font-display);
	font-size: 1.16rem;
	font-weight: 850;
	line-height: 1.25;
}

.route-link {
	color: #fff7e8;
	text-decoration: underline;
	text-decoration-color: rgba(255, 211, 106, 0.5);
	text-underline-offset: 5px;
	transition: color 180ms ease, text-decoration-color 180ms ease;
}

.route-link:hover {
	color: var(--gold-soft);
	text-decoration-color: var(--gold);
}

.route-points {
	margin-top: 7px;
	color: #aeb8cf;
	font-size: 0.82rem;
	font-weight: 800;
}

.price-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 132px;
	padding: 11px 15px;
	border: 1px solid rgba(255, 211, 106, 0.5);
	border-radius: 999px;
	background: linear-gradient(180deg, #ffc24a 0%, #ff9d00 100%);
	color: #171004;
	font-size: 0.98rem;
	font-weight: 950;
	white-space: nowrap;
	box-shadow: 0 12px 26px rgba(255, 171, 31, 0.16);
}

.muted-price {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 112px;
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	color: #aeb8cf;
	font-weight: 900;
	white-space: nowrap;
}

.empty-pricing {
	display: grid;
	gap: 6px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.045);
}

.empty-pricing span {
	color: #aeb8cf;
}

.trip-reviews-section {
	background:
		radial-gradient(circle at 18% 20%, rgba(255, 171, 31, 0.08), transparent 30%),
		radial-gradient(circle at 86% 12%, rgba(45, 28, 118, 0.22), transparent 34%),
		#020817;
}

.trip-review-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.trip-review-card {
	position: relative;
	display: grid;
	gap: 18px;
	overflow: hidden;
	min-height: 260px;
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(18, 24, 50, 0.94) 0%, rgba(8, 13, 31, 0.98) 100%);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.trip-review-card::before {
	position: absolute;
	inset: 0 0 auto;
	height: 3px;
	background: linear-gradient(90deg, #ffab1f, rgba(255, 171, 31, 0));
	content: "";
}

.trip-review-stars {
	color: var(--gold);
	font-size: 1.1rem;
	letter-spacing: 0.08em;
}

.trip-review-card p {
	margin: 0;
	color: #f6eddf;
	font-size: 1.02rem;
	font-weight: 750;
	line-height: 1.7;
}

.trip-review-author {
	align-self: end;
	display: grid;
	gap: 4px;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trip-review-author strong {
	color: #fff7e8;
	font-family: var(--font-display);
	font-size: 1.12rem;
}

.trip-review-author span {
	color: #9aa6bd;
	font-weight: 850;
}

.review-form-section {
	padding: 80px 0;
	background:
		radial-gradient(circle at 18% 14%, rgba(255, 171, 31, 0.09), transparent 30%),
		#020817;
}

.review-form-card {
	max-width: 760px;
	margin: 0 auto;
	padding: 34px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(18, 24, 50, 0.96) 0%, rgba(8, 13, 31, 0.98) 100%);
	box-shadow: var(--shadow);
}

.review-form-card h1 {
	margin-bottom: 14px;
	color: #fff7e8;
	font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.review-form-card p {
	color: #aeb8cf;
	font-weight: 750;
	line-height: 1.7;
}

.trip-review-form {
	display: grid;
	gap: 16px;
}

.review-rating-options {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.review-rating-options label {
	cursor: pointer;
}

.review-rating-options input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.review-rating-options span {
	display: block;
	padding: 11px 14px;
	border: 1px solid rgba(255, 171, 31, 0.25);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	color: var(--gold);
	font-weight: 950;
	letter-spacing: 0.08em;
}

.review-rating-options input:checked + span {
	background: linear-gradient(180deg, #ffbf3e, #ff9d00);
	color: #171004;
	box-shadow: 0 14px 30px rgba(255, 171, 31, 0.24);
}

.fleet-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.fleet-card {
	position: relative;
	overflow: hidden;
	min-height: 330px;
	padding: 146px 28px 28px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	background:
		linear-gradient(180deg, rgba(255, 171, 31, 0.05) 0%, rgba(255, 171, 31, 0) 42%),
		linear-gradient(180deg, #101933 0%, #0b1228 100%);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.fleet-card:hover {
	border-color: rgba(255, 211, 106, 0.44);
	transform: translateY(-4px);
	box-shadow: 0 34px 82px rgba(0, 0, 0, 0.34);
}

.fleet-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 128px;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(8, 13, 31, 0.92)),
		var(--vehicle-image, var(--hero-image)) center / cover no-repeat;
	filter: saturate(0.9);
}

.fleet-card::after {
	content: "Luxury Fleet";
	position: absolute;
	left: 22px;
	top: 22px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 171, 31, 0.88);
	color: #130f09;
	font-size: 0.68rem;
	font-weight: 950;
	text-transform: uppercase;
}

.fleet-card h3,
.fleet-card h2 {
	position: relative;
	margin-bottom: 14px;
	color: #fff7e8;
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 850;
}

.vehicle-list-section {
	background:
		radial-gradient(circle at 18% 0%, rgba(255, 171, 31, 0.08), transparent 34%),
		#070d1c;
}

.vehicle-list-card {
	display: block;
}

.blog-archive-hero {
	background:
		linear-gradient(90deg, rgba(2, 6, 21, 0.96) 0%, rgba(5, 9, 28, 0.86) 54%, rgba(5, 9, 28, 0.6) 100%),
		radial-gradient(circle at 86% 16%, rgba(255, 171, 31, 0.16), transparent 30%),
		var(--hero-image) center / cover no-repeat;
}

.blog-archive-hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: end;
}

.blog-archive-hero h1 {
	max-width: 780px;
	margin: 16px 0 18px;
	color: #fff7e8;
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 5vw, 4.4rem);
	line-height: 0.96;
}

.blog-archive-hero p:last-child {
	max-width: 760px;
	color: #dbe4f6;
	font-size: 1.05rem;
}

.blog-archive-section {
	background:
		radial-gradient(circle at 16% 10%, rgba(255, 171, 31, 0.08), transparent 30%),
		#050b1a;
}

.blog-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.blog-card {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
		#0b1228;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.blog-card-image {
	display: block;
	min-height: 210px;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(5, 9, 28, 0.72)),
		var(--blog-image) center / cover no-repeat;
}

.blog-card-body {
	display: grid;
	gap: 12px;
	padding: 24px;
}

.blog-card-meta {
	color: var(--gold-soft);
	font-size: 0.75rem;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.blog-card h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.45rem;
	line-height: 1.08;
}

.blog-card h2 a {
	color: #fff7e8;
}

.blog-card p {
	margin: 0;
	color: #aeb8cf;
}

.blog-pagination {
	margin-top: 34px;
}

.blog-single-hero {
	background:
		linear-gradient(90deg, rgba(2, 6, 21, 0.98) 0%, rgba(5, 9, 28, 0.9) 52%, rgba(5, 9, 28, 0.56) 100%),
		linear-gradient(180deg, rgba(5, 9, 28, 0.16), rgba(5, 9, 28, 0.92)),
		var(--blog-image) center / cover no-repeat;
}

.blog-single-hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: end;
}

.blog-single-hero h1 {
	max-width: 920px;
	margin: 16px 0;
	color: #fff7e8;
	font-family: var(--font-display);
	font-size: clamp(2.25rem, 5.4vw, 4.8rem);
	line-height: 0.96;
}

.blog-single-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	color: #dbe4f6;
	font-weight: 850;
}

.blog-single-meta span {
	padding: 8px 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.055);
}

.blog-single-section,
.blog-related-section {
	background:
		radial-gradient(circle at 14% 8%, rgba(255, 171, 31, 0.08), transparent 30%),
		#050b1a;
}

.blog-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
	gap: 28px;
	align-items: start;
}

.blog-single-content,
.blog-sidebar-card {
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
		#0b1228;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.blog-single-content {
	padding: clamp(28px, 4vw, 52px);
	color: #d7dfef;
	font-size: 1.04rem;
	line-height: 1.82;
}

.blog-single-content > * + * {
	margin-top: 1.1em;
}

.blog-single-content h2,
.blog-single-content h3 {
	color: #fff7e8;
	font-family: var(--font-display);
	line-height: 1.05;
}

.blog-single-content h2 {
	font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.blog-single-content h3 {
	font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.blog-single-content a {
	color: var(--gold-soft);
	font-weight: 850;
}

.blog-single-content img {
	border-radius: 16px;
}

.blog-sidebar-card {
	position: sticky;
	top: 96px;
	display: grid;
	gap: 14px;
	padding: 24px;
}

.blog-sidebar-card h2 {
	margin: 0;
	color: #fff7e8;
	font-family: var(--font-display);
	font-size: 1.55rem;
	line-height: 1.05;
}

.blog-sidebar-card p {
	margin: 0;
	color: #aeb8cf;
}

.fleet-card p,
.content-article {
	color: #aeb8cf;
}

.fleet-card ul {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
	color: #dce5f7;
}

.fleet-card li {
	padding: 7px 10px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.045);
	font-size: 0.82rem;
	font-weight: 800;
}

.fleet-more {
	position: relative;
	display: inline-flex;
	margin-top: 22px;
	color: var(--gold-soft);
	font-size: 0.82rem;
	font-weight: 900;
	text-transform: uppercase;
}

.cta-band {
	background:
		linear-gradient(90deg, rgba(255, 171, 31, 0.16), transparent),
		#071022;
	color: #fff;
	padding: 58px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.cta-inner h2 {
	margin-bottom: 8px;
	color: #fff7e8;
}

.cta-inner p:last-child {
	margin-bottom: 0;
	color: #aeb8cf;
}

.site-footer {
	background: #020615;
	color: #fff;
	padding: 56px 0 22px;
	border-top: 1px solid rgba(255, 171, 31, 0.18);
}

.footer-faq {
	margin-bottom: 46px;
	padding-bottom: 46px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.faq-item {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	background:
		linear-gradient(180deg, rgba(255, 171, 31, 0.06) 0%, rgba(255, 171, 31, 0) 46%),
		rgba(255, 255, 255, 0.045);
	color: #c8d1e4;
	transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.faq-item:hover,
.faq-item[open] {
	border-color: rgba(255, 211, 106, 0.34);
	background:
		linear-gradient(180deg, rgba(255, 171, 31, 0.1) 0%, rgba(255, 171, 31, 0.02) 52%),
		rgba(255, 255, 255, 0.06);
}

.faq-item summary {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 52px 18px 20px;
	color: #fff7e8;
	font-weight: 950;
	cursor: pointer;
	list-style: none;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	position: absolute;
	right: 20px;
	top: 50%;
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	border-radius: 999px;
	background: linear-gradient(180deg, #ffc24a 0%, #ff9d00 100%);
	color: #171004;
	font-size: 1rem;
	font-weight: 950;
	transform: translateY(-50%);
}

.faq-item[open] summary::after {
	content: "−";
}

.faq-item p {
	margin: 0;
	padding: 0 20px 20px;
	color: #aeb8cf;
	font-weight: 650;
}

.direct-contact {
	margin-bottom: 46px;
}

.contact-page-hero {
	background:
		radial-gradient(circle at 16% 12%, rgba(255, 171, 31, 0.1), transparent 30%),
		radial-gradient(circle at 84% 12%, rgba(45, 28, 118, 0.24), transparent 34%),
		#020817;
}

.contact-page-hero-inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 26px;
}

.contact-page-hero-inner > div {
	max-width: 820px;
}

.contact-page-hero h1 {
	margin-bottom: 16px;
	color: #fff7e8;
	font-size: clamp(2.4rem, 5vw, 5rem);
	line-height: 0.98;
}

.contact-page-hero p:last-child {
	color: #c7d0e3;
	font-size: 1.05rem;
	font-weight: 750;
	line-height: 1.75;
}

.contact-page-section {
	background:
		radial-gradient(circle at 16% 12%, rgba(45, 28, 118, 0.22), transparent 32%),
		#020817;
}

.contact-page-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
	gap: 24px;
}

.contact-info-panel,
.contact-form-panel {
	display: grid;
	gap: 18px;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(18, 24, 50, 0.96) 0%, rgba(8, 13, 31, 0.98) 100%);
	box-shadow: var(--shadow);
}

.contact-info-panel h2,
.contact-form-panel h2 {
	margin: 0;
	color: #fff7e8;
	font-size: clamp(1.6rem, 2.8vw, 2.55rem);
}

.contact-info-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.contact-info-card {
	display: grid;
	gap: 7px;
	min-height: 112px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.045);
	color: #fff7e8;
	text-decoration: none;
}

.contact-info-card.primary {
	background: linear-gradient(180deg, #ffc24a 0%, #ff9d00 100%);
	color: #171004;
}

.contact-info-card span {
	color: inherit;
	opacity: 0.72;
	font-size: 0.75rem;
	font-weight: 950;
	text-transform: uppercase;
}

.contact-info-card strong {
	overflow-wrap: anywhere;
	font-size: 1rem;
}

.contact-channel-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
}

.contact-page-form {
	display: grid;
	gap: 16px;
}

.direct-contact-inner {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
	gap: 28px;
	align-items: center;
	padding: 30px;
	border: 1px solid rgba(255, 211, 106, 0.32);
	border-radius: 18px;
	background:
		linear-gradient(135deg, rgba(255, 171, 31, 0.2) 0%, rgba(255, 171, 31, 0.06) 42%, rgba(255, 255, 255, 0.04) 100%),
		#071022;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 171, 31, 0.08) inset;
}

.direct-contact-kicker {
	display: inline-flex;
	margin-bottom: 10px;
	color: var(--gold-soft);
	font-size: 0.76rem;
	font-weight: 950;
	text-transform: uppercase;
}

.direct-contact h2 {
	margin: 0 0 8px;
	color: #fff7e8;
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 2.6vw, 2.55rem);
	line-height: 1.05;
}

.direct-contact p {
	margin: 0;
	color: #c8d1e4;
	font-weight: 700;
}

.direct-contact-actions {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
}

.contact-action {
	display: grid;
	gap: 4px;
	min-height: 78px;
	padding: 14px 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.055);
	color: #fff7e8;
	text-align: center;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-action:hover,
.contact-action:focus {
	border-color: rgba(255, 211, 106, 0.5);
	background: rgba(255, 171, 31, 0.12);
	transform: translateY(-2px);
}

.contact-action.primary {
	background: linear-gradient(180deg, #ffc24a 0%, #ff9d00 100%);
	color: #171004;
	box-shadow: 0 16px 34px rgba(255, 171, 31, 0.22);
}

.contact-action span {
	font-size: 0.72rem;
	font-weight: 950;
	text-transform: uppercase;
}

.contact-action strong {
	font-size: 0.9rem;
	font-weight: 950;
	line-height: 1.2;
}

.quick-contact-bar {
	position: fixed;
	right: 18px;
	top: 50%;
	z-index: 30;
	display: grid;
	align-items: center;
	justify-items: center;
	gap: 8px;
	width: 74px;
	max-height: calc(100vh - 140px);
	padding: 10px 8px;
	border: 1px solid rgba(255, 211, 106, 0.35);
	border-radius: 999px;
	background: rgba(4, 7, 24, 0.9);
	backdrop-filter: blur(18px);
	box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
	transform: translateY(-50%);
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 171, 31, 0.55) transparent;
}

.quick-contact-bar::-webkit-scrollbar {
	width: 4px;
}

.quick-contact-bar::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: rgba(255, 171, 31, 0.55);
}

.quick-contact-bar a,
.quick-contact-bar button {
	display: grid;
	align-items: center;
	justify-items: center;
	justify-content: center;
	gap: 5px;
	width: 54px;
	min-height: 58px;
	padding: 7px 5px;
	border: 0;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.06);
	color: #fff7e8;
	font: inherit;
	font-size: 0.66rem;
	font-weight: 950;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
}

.quick-contact-bar a:hover,
.quick-contact-bar a:focus,
.quick-contact-bar button:hover,
.quick-contact-bar button:focus {
	background: rgba(255, 171, 31, 0.16);
	color: var(--gold-soft);
}

.quick-contact-hotline {
	background: linear-gradient(180deg, #ffc24a 0%, #ff9d00 100%) !important;
	color: #171004 !important;
	box-shadow: 0 12px 28px rgba(255, 171, 31, 0.22);
}

.quick-contact-icon {
	display: inline-grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
}

.quick-contact-icon svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.quick-contact-letter {
	font-size: 0.82rem;
	font-weight: 950;
}

.quick-contact-label,
.quick-theme-toggle .theme-toggle-text {
	max-width: 48px;
	overflow: hidden;
	text-overflow: ellipsis;
	text-transform: uppercase;
}

.quick-theme-toggle .theme-toggle-dot {
	width: 20px;
	height: 20px;
}

.quick-theme-toggle .theme-toggle-text {
	font-size: 0.62rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.35fr 0.8fr 0.85fr;
	gap: 34px;
}

.footer-grid p,
.footer-grid a {
	color: #aeb8cf;
}

.footer-grid h2 {
	color: #fff7e8;
	font-family: var(--font-display);
	font-size: 1rem;
	text-transform: uppercase;
}

.vehicle-detail-hero {
	padding: 76px 0;
	background:
		linear-gradient(90deg, rgba(2, 6, 21, 0.92) 0%, rgba(5, 9, 28, 0.78) 52%, rgba(5, 9, 28, 0.6) 100%),
		var(--hero-image) center / cover no-repeat;
}

.compact-vehicle-hero {
	min-height: 360px;
	display: flex;
	align-items: center;
}

.vehicle-detail-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.42fr);
	gap: 46px;
	align-items: center;
}

.vehicle-hero-copy {
	max-width: 640px;
}

.vehicle-hero-copy h1 {
	font-size: clamp(2.35rem, 4.8vw, 4.6rem);
	line-height: 1;
}

.vehicle-detail-panel {
	display: grid;
	gap: 14px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(14, 20, 44, 0.94) 0%, rgba(8, 13, 31, 0.96) 100%);
	box-shadow: var(--shadow);
}

.vehicle-detail-panel div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vehicle-detail-panel div:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.vehicle-detail-panel span {
	color: #aeb8cf;
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.vehicle-detail-panel strong {
	color: var(--gold-soft);
	text-align: right;
}

.vehicle-detail-content .content-article h2 {
	color: #fff7e8;
	font-size: clamp(1.65rem, 3.1vw, 2.8rem);
	line-height: 1.08;
}

.vehicle-content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
	gap: 28px;
	align-items: start;
}

.vehicle-content-layout-full {
	grid-template-columns: minmax(0, 1fr);
}

.vehicle-content-layout-full .vehicle-content-card {
	width: 100%;
}

.single-nhu_vehicle .vehicle-content-layout {
	grid-template-columns: minmax(0, 1fr);
}

.single-nhu_vehicle .vehicle-content-card,
.single-nhu_vehicle .content-article.vehicle-content-card {
	grid-column: 1 / -1;
	width: 100%;
	max-width: none;
}

.single-nhu_vehicle .vehicle-full-description,
.single-nhu_vehicle .vehicle-full-description > *,
.single-nhu_vehicle .vehicle-content-card > * {
	max-width: none;
}

.single-nhu_vehicle .vehicle-fit-note {
	display: none;
}

.vehicle-content-card {
	padding: 38px;
}

.vehicle-content-card .eyebrow {
	margin-bottom: 22px;
}

.vehicle-full-description {
	color: #c7d0e3;
	font-size: 1rem;
}

.vehicle-full-description > * {
	max-width: none;
}

.vehicle-full-description p,
.vehicle-full-description ul,
.vehicle-full-description ol {
	margin-bottom: 18px;
}

.vehicle-full-description li {
	margin-bottom: 8px;
}

.vehicle-fit-note {
	position: sticky;
	top: 92px;
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 22px;
	border: 1px solid rgba(255, 171, 31, 0.24);
	border-radius: 14px;
	background: rgba(255, 171, 31, 0.08);
	color: #c7d0e3;
}

.vehicle-fit-note strong {
	color: var(--gold-soft);
}

.route-price-scope {
	display: grid;
	gap: 6px;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 211, 106, 0.18);
}

.route-price-scope strong {
	color: #fff7e8;
	font-size: 0.82rem;
	text-transform: uppercase;
}

.route-price-scope span {
	white-space: pre-line;
}

.route-detail-content {
	background:
		radial-gradient(circle at 12% 16%, rgba(255, 171, 31, 0.08), transparent 30%),
		radial-gradient(circle at 88% 62%, rgba(55, 74, 124, 0.12), transparent 34%),
		#020817;
}

.route-detail-layout-full {
	width: min(100% - 40px, 1360px);
}

.route-detail-card {
	width: 100%;
	max-width: none;
	padding: clamp(28px, 4vw, 54px);
	border-color: rgba(255, 211, 106, 0.2);
	background:
		linear-gradient(145deg, rgba(15, 23, 49, 0.96), rgba(5, 11, 27, 0.98));
	box-shadow: 0 34px 100px rgba(0, 0, 0, 0.32);
}

.route-detail-heading,
.route-inline-pricing-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
}

.route-detail-heading {
	padding-bottom: 28px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.route-detail-heading .eyebrow,
.route-inline-pricing-head .eyebrow {
	margin-bottom: 12px;
}

.route-detail-heading h2,
.route-inline-pricing-head h2 {
	margin: 0;
}

.route-detail-heading .button {
	flex: 0 0 auto;
}

.route-description {
	padding: 32px 0 12px;
}

.route-description .vehicle-full-description {
	max-width: none;
	color: #d2d9e7;
	font-size: 1.02rem;
	line-height: 1.8;
}

.route-scope-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 24px;
}

.route-scope-card {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 16px;
	padding: 24px;
	border: 1px solid rgba(255, 211, 106, 0.2);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.035);
}

.route-scope-icon {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 10px;
	background: rgba(255, 171, 31, 0.14);
	color: var(--gold-soft);
	font-size: 1.2rem;
	font-weight: 950;
}

.route-scope-excluded .route-scope-icon {
	background: rgba(255, 255, 255, 0.08);
	color: #c8d1e2;
}

.route-scope-card h3 {
	margin: 1px 0 8px;
	color: #fff7e8;
	font-size: 1.06rem;
}

.route-scope-card p {
	margin: 0;
	color: #b9c3d5;
	line-height: 1.65;
}

.route-inline-pricing {
	margin-top: 46px;
	padding-top: 38px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.route-inline-pricing-head {
	margin-bottom: 22px;
}

.route-inline-pricing-head > p {
	max-width: 500px;
	margin: 0;
	color: #aeb8ca;
	line-height: 1.65;
	text-align: right;
}

.route-price-list {
	display: grid;
	gap: 14px;
}

.route-detail-card .route-price-list {
	margin-top: 22px;
}

.route-price-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 210px minmax(230px, 0.38fr);
	align-items: stretch;
	min-height: 206px;
	overflow: hidden;
	border: 1px solid rgba(255, 211, 106, 0.18);
	border-radius: 10px;
	background: rgba(8, 13, 31, 0.86);
	box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
}

.route-price-row:last-child {
	border-bottom: 1px solid rgba(255, 211, 106, 0.18);
}

.route-price-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 30px 32px;
}

.route-price-info h3 {
	margin: 15px 0 14px;
	color: #fff7e8;
	font-family: var(--font-display);
	font-size: 1.55rem;
	line-height: 1.08;
}

.route-price-features {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	color: #c3ccdd;
	font-size: 0.88rem;
	font-weight: 750;
}

.route-price-features span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.route-price-features b {
	color: var(--gold);
	font-size: 0.5rem;
}

.route-price-detail-link {
	margin-top: auto;
	padding-top: 20px;
	border: 0;
	background: transparent;
	color: var(--gold-soft);
	font: inherit;
	font-size: 0.82rem;
	font-weight: 950;
	text-transform: uppercase;
	cursor: pointer;
}

.route-price-thumb {
	position: relative;
	display: block;
	min-height: 206px;
	padding: 0;
	border: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	background:
		linear-gradient(180deg, rgba(2, 6, 21, 0.04), rgba(8, 13, 31, 0.22)),
		var(--vehicle-image, var(--hero-image)) center / cover no-repeat;
	cursor: zoom-in;
}

.route-price-thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(2, 6, 21, 0);
	transition: background 180ms ease;
}

.route-price-thumb:hover::after,
.route-price-thumb:focus-visible::after {
	background: rgba(2, 6, 21, 0.16);
}

.route-price-thumb:focus-visible,
.route-price-detail-link:focus-visible {
	outline: 3px solid var(--gold);
	outline-offset: -3px;
}

.route-price-photo-count {
	position: absolute;
	z-index: 1;
	top: 12px;
	left: 12px;
	padding: 6px 9px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 5px;
	background: rgba(2, 6, 21, 0.82);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.route-price-booking {
	display: grid;
	align-content: center;
	gap: 10px;
	padding: 30px;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	text-align: right;
}

.route-price-booking .route-price-value {
	font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.route-price-note {
	color: #9ca7bd;
	font-size: 0.8rem;
	font-weight: 750;
}

.route-price-booking .button {
	margin-top: 8px;
}

.route-vehicle-detail-dialog {
	position: relative;
	z-index: 1;
	display: grid;
	width: min(1040px, 94vw);
	max-height: calc(100vh - 48px);
	overflow: hidden;
	border: 1px solid rgba(255, 211, 106, 0.28);
	border-radius: 10px;
	background: #070b18;
	box-shadow: 0 40px 120px rgba(0, 0, 0, 0.62);
}

.route-vehicle-detail-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 22px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.route-vehicle-detail-toolbar span {
	color: var(--gold);
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
}

.route-vehicle-detail-toolbar h2 {
	margin: 4px 0 0;
	color: #fff7e8;
	font-size: clamp(1.45rem, 3vw, 2.3rem);
}

.route-vehicle-detail-content {
	overflow-y: auto;
	padding: 22px;
}

.route-vehicle-detail-popup-grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
	gap: 26px;
}

.route-vehicle-detail-popup-grid > img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 7px;
	object-fit: cover;
}

.route-vehicle-detail-popup-body {
	min-width: 0;
}

.route-vehicle-detail-summary,
.route-vehicle-detail-description {
	color: #c7d0e3;
	line-height: 1.7;
}

.route-vehicle-detail-facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin: 18px 0;
}

.route-vehicle-detail-facts span {
	display: grid;
	gap: 4px;
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	color: #fff7e8;
}

.route-vehicle-detail-facts strong {
	color: #8995ad;
	font-size: 0.7rem;
	text-transform: uppercase;
}

.route-vehicle-detail-amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}

.route-vehicle-detail-amenities li {
	padding: 7px 10px;
	border: 1px solid rgba(255, 211, 106, 0.18);
	border-radius: 5px;
	background: rgba(255, 171, 31, 0.07);
	color: #e5e9f2;
	font-size: 0.78rem;
	font-weight: 800;
}

.route-vehicle-detail-description {
	max-height: 260px;
	overflow-y: auto;
	padding-right: 8px;
}

.route-vehicle-detail-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.route-price-grid,
.other-routes-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.route-price-card {
	display: grid;
	position: relative;
	overflow: hidden;
	gap: 14px;
	min-height: 390px;
	padding: 0 26px 26px;
	border: 1px solid rgba(255, 211, 106, 0.22);
	border-radius: 18px;
	background:
		linear-gradient(135deg, rgba(255, 171, 31, 0.14) 0%, rgba(255, 171, 31, 0.02) 42%, rgba(255, 255, 255, 0.045) 100%),
		linear-gradient(180deg, rgba(14, 20, 44, 0.98) 0%, rgba(8, 13, 31, 0.99) 100%);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 171, 31, 0.05) inset;
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.other-route-card {
	display: grid;
	gap: 10px;
	position: relative;
	overflow: hidden;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	background:
		linear-gradient(180deg, rgba(255, 171, 31, 0.08) 0%, rgba(255, 171, 31, 0) 45%),
		linear-gradient(180deg, rgba(14, 20, 44, 0.96) 0%, rgba(8, 13, 31, 0.98) 100%);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.route-price-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	z-index: 2;
	height: 5px;
	background: linear-gradient(90deg, var(--gold), var(--gold-soft), transparent);
}

.route-price-card::after {
	content: "";
	position: absolute;
	right: -46px;
	top: -52px;
	width: 150px;
	height: 150px;
	border-radius: 999px;
	background: rgba(255, 171, 31, 0.12);
	filter: blur(4px);
}

.other-route-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 112px;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(8, 13, 31, 0.9)),
		var(--route-image, var(--hero-image)) center / cover no-repeat;
}

.other-route-card > * {
	position: relative;
}

.other-route-card span {
	margin-top: 112px;
}

.route-price-card:hover,
.other-route-card:hover {
	border-color: rgba(255, 211, 106, 0.44);
	transform: translateY(-4px);
	box-shadow: 0 34px 82px rgba(0, 0, 0, 0.34);
}

.route-price-card > * {
	position: relative;
	z-index: 1;
}

.route-price-image {
	display: block;
	margin: 0 -26px 4px;
	aspect-ratio: 16 / 9;
	background:
		linear-gradient(180deg, rgba(2, 6, 21, 0.08), rgba(8, 13, 31, 0.78)),
		var(--vehicle-image, var(--hero-image)) center / cover no-repeat;
}

.route-price-badge {
	justify-self: start;
	padding: 7px 11px;
	border: 1px solid rgba(255, 211, 106, 0.34);
	border-radius: 999px;
	background: rgba(255, 171, 31, 0.12);
	color: var(--gold-soft);
	font-size: 0.7rem;
	font-weight: 950;
	text-transform: uppercase;
}

.route-price-value {
	color: #fff7e8;
	font-family: var(--font-display);
	font-size: clamp(2rem, 3.6vw, 3.25rem);
	font-weight: 850;
	line-height: 0.95;
}

.route-price-vehicle,
.other-route-card span {
	color: var(--gold-soft);
	font-size: 0.76rem;
	font-weight: 950;
	text-transform: uppercase;
}

.route-price-vehicle {
	color: #fff7e8;
	font-family: var(--font-display);
	font-size: 1.2rem;
	line-height: 1.18;
}

.route-price-meta,
.other-route-card small {
	color: #aeb8cf;
	font-weight: 800;
}

.route-price-more {
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--gold-soft);
	font-size: 0.78rem;
	font-weight: 950;
	text-transform: uppercase;
}

.other-routes-section {
	background:
		radial-gradient(circle at 18% 16%, rgba(45, 28, 118, 0.24), transparent 32%),
		#06112a;
}

.other-route-card strong {
	color: #fff7e8;
	font-family: var(--font-display);
	font-size: 1.45rem;
	font-weight: 850;
	line-height: 1.2;
}

.private-car-hero {
	background:
		linear-gradient(90deg, rgba(2, 6, 21, 0.95) 0%, rgba(5, 9, 28, 0.82) 48%, rgba(5, 9, 28, 0.5) 100%),
		var(--hero-image) center / cover no-repeat;
	border-bottom: 1px solid rgba(255, 171, 31, 0.16);
}

.private-car-hero-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.private-car-hero h1 {
	max-width: 780px;
	margin-bottom: 16px;
	color: #fff7e8;
	font-family: var(--font-display);
	font-size: clamp(2.25rem, 5vw, 4.4rem);
	line-height: 1;
}

.private-car-hero p:last-child {
	max-width: 720px;
	margin-bottom: 0;
	color: #c7d0e3;
	font-weight: 750;
}

.private-route-section {
	background:
		radial-gradient(circle at 16% 12%, rgba(45, 28, 118, 0.24), transparent 32%),
		radial-gradient(circle at 88% 12%, rgba(255, 171, 31, 0.08), transparent 30%),
		#020817;
}

.vehicle-routes-section {
	background:
		radial-gradient(circle at 16% 12%, rgba(255, 171, 31, 0.08), transparent 30%),
		radial-gradient(circle at 86% 10%, rgba(45, 28, 118, 0.22), transparent 34%),
		#020817;
}

.private-route-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.private-route-card {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	background:
		linear-gradient(180deg, rgba(255, 171, 31, 0.06) 0%, rgba(255, 171, 31, 0) 45%),
		linear-gradient(180deg, rgba(14, 20, 44, 0.96) 0%, rgba(8, 13, 31, 0.98) 100%);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.vehicle-route-grid {
	align-items: stretch;
}

.vehicle-route-card .private-route-footer {
	gap: 14px;
}

.vehicle-route-card .button {
	white-space: nowrap;
}

.private-route-card:hover {
	border-color: rgba(255, 211, 106, 0.42);
	transform: translateY(-4px);
	box-shadow: 0 34px 88px rgba(0, 0, 0, 0.36);
}

.private-route-image {
	display: block;
	aspect-ratio: 16 / 10;
	background:
		linear-gradient(180deg, rgba(2, 6, 21, 0.06), rgba(2, 6, 21, 0.36)),
		var(--route-image, var(--hero-image)) center / cover no-repeat;
}

.private-route-body {
	display: grid;
	gap: 14px;
	padding: 22px;
}

.private-route-card-simple .private-route-body {
	gap: 18px;
}

.private-route-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	color: var(--gold-soft);
	font-size: 0.76rem;
	font-weight: 950;
	text-transform: uppercase;
}

.private-route-card h2 {
	margin: 0;
	color: #fff7e8;
	font-family: var(--font-display);
	font-size: 1.55rem;
	line-height: 1.16;
}

.private-route-card-simple h2 {
	min-height: 3.6rem;
}

.private-route-card p {
	margin: 0;
	color: #aeb8cf;
	font-weight: 650;
}

.private-route-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 4px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.private-route-card-simple .private-route-footer {
	margin-top: 0;
}

.private-route-price {
	display: grid;
	gap: 2px;
}

.private-route-price span {
	color: #8f9ab2;
	font-size: 0.72rem;
	font-weight: 950;
	text-transform: uppercase;
}

.private-route-price strong {
	color: var(--gold-soft);
	font-family: var(--font-display);
	font-size: 1.55rem;
	line-height: 1;
}

.route-pagination {
	display: flex;
	justify-content: center;
	margin-top: 34px;
}

.route-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.route-pagination a,
.route-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 9px 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.055);
	color: #fff7e8;
	font-weight: 950;
}

.route-pagination .current,
.route-pagination a:hover {
	border-color: rgba(255, 211, 106, 0.56);
	background: linear-gradient(180deg, #ffc24a 0%, #ff9d00 100%);
	color: #171004;
}

.other-vehicles-section {
	background:
		radial-gradient(circle at 18% 16%, rgba(45, 28, 118, 0.24), transparent 32%),
		#06112a;
}

.booking-check-section {
	min-height: 70vh;
	background:
		radial-gradient(circle at 18% 12%, rgba(45, 28, 118, 0.34), transparent 34%),
		radial-gradient(circle at 88% 18%, rgba(255, 171, 31, 0.08), transparent 28%),
		#020817;
}

.booking-check {
	display: grid;
	grid-template-columns: 1fr;
	gap: 26px;
	align-items: start;
}

.booking-check-card,
.booking-result {
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(14, 20, 44, 0.94) 0%, rgba(8, 13, 31, 0.96) 100%);
	box-shadow: var(--shadow);
	padding: 28px;
}

.booking-check-card h1 {
	margin-bottom: 14px;
	font-size: clamp(1.9rem, 3.8vw, 3.3rem);
}

.booking-check-card p {
	color: #aeb8cf;
}

.booking-check-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: end;
	margin-top: 24px;
}

.booking-result {
	position: relative;
	overflow: hidden;
}

.booking-result::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 3px;
	background: linear-gradient(90deg, var(--gold), transparent);
}

.booking-status-badge {
	display: inline-flex;
	margin-bottom: 18px;
	padding: 8px 13px;
	border-radius: 999px;
	background: linear-gradient(180deg, #ffc24a 0%, #ff9d00 100%);
	color: #171004;
	font-size: 0.78rem;
	font-weight: 950;
	text-transform: uppercase;
}

.booking-result-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 20px;
}

.booking-result-head h2 {
	margin: 0;
	color: #fff7e8;
	font-family: var(--font-display);
	font-size: clamp(1.45rem, 2.5vw, 2.2rem);
	line-height: 1.05;
}

.booking-vehicle-summary {
	display: grid;
	grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
	gap: 22px;
	align-items: center;
	margin-bottom: 20px;
	padding: 14px;
	border: 1px solid rgba(255, 171, 31, 0.2);
	border-radius: 10px;
	background: rgba(255, 171, 31, 0.055);
}

.booking-vehicle-summary img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 6px;
	object-fit: cover;
}

.booking-vehicle-summary > div {
	display: grid;
	gap: 5px;
}

.booking-vehicle-summary span {
	color: var(--gold);
	font-size: 0.72rem;
	font-weight: 950;
	text-transform: uppercase;
}

.booking-vehicle-summary strong {
	color: #fff7e8;
	font-family: var(--font-display);
	font-size: 1.45rem;
}

.booking-vehicle-summary ul {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 7px 0 0;
	padding: 0;
	list-style: none;
}

.booking-vehicle-summary li {
	padding: 5px 8px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 5px;
	color: #cbd3e2;
	font-size: 0.74rem;
	font-weight: 750;
}

.customer-booking-vehicle {
	margin-bottom: 18px;
}

.booking-result-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.booking-result-grid div {
	display: grid;
	gap: 4px;
	min-height: 92px;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.045);
}

.booking-result-grid div:last-child {
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-result-grid div.wide {
	grid-column: span 3;
	min-height: auto;
}

.booking-result-grid span,
.booking-result-empty span {
	color: #8f9ab2;
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.booking-result-grid strong,
.booking-result-empty strong {
	color: #fff7e8;
}

.booking-result-empty {
	display: grid;
	gap: 8px;
}

.booking-suggestions {
	display: grid;
	gap: 22px;
	margin-top: 10px;
}

.booking-suggestion-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.booking-suggestion-card {
	overflow: hidden;
	display: grid;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	background:
		linear-gradient(180deg, rgba(255, 171, 31, 0.06) 0%, rgba(255, 171, 31, 0) 45%),
		linear-gradient(180deg, rgba(14, 20, 44, 0.96) 0%, rgba(8, 13, 31, 0.98) 100%);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.booking-suggestion-card:hover {
	border-color: rgba(255, 211, 106, 0.42);
	transform: translateY(-3px);
	box-shadow: 0 32px 84px rgba(0, 0, 0, 0.34);
}

.booking-suggestion-image {
	display: block;
	aspect-ratio: 16 / 9;
	background:
		linear-gradient(180deg, rgba(2, 6, 21, 0.06), rgba(2, 6, 21, 0.38)),
		var(--route-image, var(--hero-image)) center / cover no-repeat;
}

.booking-suggestion-body {
	display: grid;
	gap: 8px;
	padding: 18px;
}

.booking-suggestion-body strong {
	color: #fff7e8;
	font-family: var(--font-display);
	font-size: 1.28rem;
	line-height: 1.16;
}

.booking-suggestion-body small {
	color: #aeb8cf;
	font-weight: 800;
}

.booking-suggestion-body em {
	color: var(--gold-soft);
	font-style: normal;
	font-weight: 950;
}

.customer-account-section {
	background:
		radial-gradient(circle at 16% 12%, rgba(45, 28, 118, 0.28), transparent 34%),
		radial-gradient(circle at 86% 14%, rgba(255, 171, 31, 0.08), transparent 30%),
		#020817;
}

.customer-account-hero {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.customer-account-hero h1 {
	margin-bottom: 14px;
	color: #fff7e8;
}

.customer-account-hero p:last-child,
.customer-login-card p {
	color: #aeb8cf;
	font-weight: 750;
}

.customer-login-card,
.customer-account-summary,
.customer-booking-card {
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(14, 20, 44, 0.94) 0%, rgba(8, 13, 31, 0.96) 100%);
	box-shadow: var(--shadow);
	padding: 26px;
}

.customer-login-card {
	max-width: 620px;
}

.customer-account-hero-centered {
	justify-content: center;
	text-align: center;
}

.customer-account-hero-centered > div {
	display: grid;
	justify-items: center;
}

.customer-auth-shell {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	width: min(100%, 1060px);
	margin: 0 auto;
	align-items: start;
}

.customer-auth-card {
	width: 100%;
	max-width: none;
	min-height: 100%;
	padding: clamp(24px, 3vw, 34px);
}

.customer-register-card {
	border: 1px solid rgba(255, 171, 31, 0.24);
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(20, 25, 49, 0.96) 0%, rgba(9, 14, 31, 0.98) 100%);
	box-shadow: var(--shadow);
}

.customer-auth-card .section-kicker {
	width: fit-content;
	margin-bottom: 16px;
}

.customer-auth-card h2 {
	margin: 0 0 12px;
	color: #fff7e8;
	font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.customer-auth-card > p:not(.section-kicker) {
	min-height: 52px;
	margin-bottom: 24px;
	color: #aeb8cf;
	font-weight: 750;
	line-height: 1.65;
}

.customer-login-card #loginform,
.customer-register-form {
	display: grid;
	gap: 16px;
}

.customer-login-card #loginform p {
	margin: 0;
}

.customer-login-card #loginform label,
.customer-register-form > label,
.customer-register-form .field-grid label {
	color: #c8d1e2;
	font-size: 0.76rem;
	font-weight: 900;
	text-transform: uppercase;
}

.customer-login-card #loginform input[type="text"],
.customer-login-card #loginform input[type="password"],
.customer-register-form input[type="text"],
.customer-register-form input[type="email"],
.customer-register-form input[type="tel"],
.customer-register-form input[type="password"] {
	width: 100%;
}

.customer-login-card .login-remember {
	display: block;
}

.customer-login-card .login-remember label,
.customer-consent-option {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	color: #b8c2d5;
	font-size: 0.86rem;
	font-weight: 750;
	line-height: 1.5;
	text-transform: none;
}

.customer-login-card .login-remember input,
.customer-consent-option input {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
	accent-color: var(--gold);
}

.customer-consent-option a {
	color: var(--gold-soft);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.customer-consent-required {
	padding-top: 4px;
}

.customer-register-submit[hidden] {
	display: none;
}

.customer-login-card .login-submit input {
	width: 100%;
	min-height: 50px;
	border: 0;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--gold-soft), var(--gold));
	color: #171006;
	font-weight: 950;
	text-transform: uppercase;
	cursor: pointer;
}

.customer-register-success {
	width: min(100%, 1060px);
	margin: 0 auto 24px;
}

.customer-login-card h2 {
	color: #fff7e8;
}

.customer-login-card .login-username,
.customer-login-card .login-password,
.customer-login-card .login-remember {
	display: grid;
	gap: 7px;
}

.customer-account-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 16px;
	color: var(--gold-soft);
	font-weight: 900;
}

.customer-account-summary {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 24px;
}

.customer-account-summary div {
	display: grid;
	gap: 4px;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.045);
}

.customer-account-summary span,
.customer-booking-info span {
	color: #8f9ab2;
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.customer-account-summary strong,
.customer-booking-info strong,
.customer-booking-head strong {
	color: #fff7e8;
}

.customer-booking-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.customer-booking-card {
	display: grid;
	gap: 18px;
}

.customer-booking-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.customer-booking-info {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.customer-booking-info div {
	display: grid;
	gap: 4px;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.04);
}

.customer-booking-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.customer-account-section {
	padding-top: 86px;
	background:
		linear-gradient(135deg, rgba(14, 10, 48, 0.96) 0%, rgba(4, 9, 21, 0.98) 48%, rgba(2, 8, 18, 1) 100%),
		#020817;
}

.customer-account-hero {
	align-items: center;
	margin-bottom: 34px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(255, 171, 31, 0.18);
}

.customer-account-hero > div {
	max-width: 780px;
}

.customer-account-hero h1 {
	max-width: 740px;
	margin: 14px 0 12px;
	font-size: clamp(2.4rem, 5vw, 4.9rem);
	line-height: 0.98;
	letter-spacing: 0;
}

.customer-account-hero p:last-child {
	max-width: 720px;
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.75;
}

.customer-dashboard {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.4fr);
	gap: 18px;
	margin-bottom: 34px;
}

.customer-profile-card,
.customer-account-summary,
.customer-profile-edit-card,
.customer-booking-card {
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(18, 24, 50, 0.96) 0%, rgba(8, 13, 31, 0.98) 100%);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.customer-profile-card {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 24px;
}

.customer-avatar {
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	border: 1px solid rgba(255, 171, 31, 0.34);
	border-radius: 18px;
	background: linear-gradient(135deg, #ffab1f, #ffe1a3);
	color: #120d05;
	font-size: 2rem;
	font-weight: 950;
	text-transform: uppercase;
	box-shadow: 0 18px 42px rgba(255, 171, 31, 0.24);
}

.customer-profile-card span,
.customer-account-summary span,
.customer-booking-info span {
	color: #93a0bb;
	font-size: 0.73rem;
	font-weight: 950;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.customer-profile-card strong {
	display: block;
	margin: 6px 0 4px;
	color: #fff7e8;
	font-family: var(--font-display);
	font-size: 1.35rem;
	line-height: 1.15;
}

.customer-profile-card small,
.customer-booking-head small {
	color: #b6bfd3;
	font-weight: 800;
}

.customer-account-summary {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 0;
	padding: 12px;
}

.customer-account-summary div {
	min-height: 104px;
	align-content: center;
	gap: 8px;
	padding: 18px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.045);
}

.customer-account-summary strong {
	font-size: 1.12rem;
	line-height: 1.3;
}

.customer-profile-edit-card {
	display: grid;
	gap: 18px;
	margin-bottom: 34px;
	padding: 24px;
}

.customer-section-head-compact {
	margin-bottom: 0;
}

.customer-profile-form {
	display: grid;
	gap: 16px;
}

.customer-profile-form label,
.customer-password-fields {
	display: grid;
	gap: 8px;
}

.customer-profile-form input:disabled {
	cursor: not-allowed;
	opacity: 0.74;
}

.customer-password-fields {
	margin-top: 4px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.customer-password-fields h3 {
	margin: 0;
	color: #fff7e8;
	font-size: 1.2rem;
}

.customer-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 18px;
}

.customer-section-head h2 {
	margin: 6px 0 0;
	color: #fff7e8;
	font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.customer-booking-grid {
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 20px;
}

.customer-booking-card {
	position: relative;
	overflow: hidden;
	padding: 24px;
}

.customer-booking-card::before {
	position: absolute;
	inset: 0 0 auto;
	height: 3px;
	background: linear-gradient(90deg, #ffab1f, rgba(255, 171, 31, 0));
	content: "";
}

.customer-booking-head {
	align-items: flex-start;
}

.customer-booking-head > div {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.customer-booking-head strong {
	font-size: 1.05rem;
	letter-spacing: 0.02em;
}

.customer-booking-info {
	gap: 10px;
}

.customer-booking-info div {
	min-height: 82px;
	align-content: center;
	gap: 7px;
	padding: 14px 16px;
}

.customer-booking-info strong {
	display: block;
	overflow-wrap: anywhere;
	font-size: 1rem;
	line-height: 1.35;
}

.customer-booking-actions {
	padding-top: 2px;
}

.customer-booking-actions .button {
	min-height: 50px;
	padding-inline: 22px;
}

.customer-booking-list {
	display: grid;
	gap: 12px;
}

.customer-booking-item {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(18, 24, 50, 0.96) 0%, rgba(8, 13, 31, 0.98) 100%);
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.customer-booking-item[open] {
	border-color: rgba(255, 171, 31, 0.34);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.customer-booking-row {
	position: relative;
	display: grid;
	grid-template-columns: minmax(180px, 0.75fr) minmax(220px, 1.2fr) minmax(150px, 0.65fr) minmax(120px, 0.55fr) 28px;
	align-items: center;
	gap: 16px;
	padding: 18px 22px;
	cursor: pointer;
	list-style: none;
}

.customer-booking-row::-webkit-details-marker {
	display: none;
}

.customer-booking-row::after {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border: 1px solid rgba(255, 171, 31, 0.26);
	border-radius: 999px;
	color: var(--gold);
	font-weight: 950;
	content: "+";
}

.customer-booking-item[open] .customer-booking-row::after {
	background: rgba(255, 171, 31, 0.16);
	content: "−";
}

.booking-row-main {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.booking-row-main strong,
.booking-row-route,
.booking-row-price {
	color: #fff7e8;
	font-weight: 950;
}

.booking-row-route,
.booking-row-meta,
.booking-row-price {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.booking-row-meta {
	color: #b6bfd3;
	font-weight: 850;
}

.customer-booking-detail {
	display: grid;
	gap: 18px;
	padding: 0 22px 22px;
}

.customer-booking-detail .customer-booking-info {
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.customer-booking-info div.wide {
	grid-column: 1 / -1;
}

.customer-booking-detail .customer-booking-actions {
	justify-content: flex-end;
}

.vehicle-gallery-section {
	background:
		radial-gradient(circle at 85% 15%, rgba(255, 171, 31, 0.08), transparent 30%),
		#020817;
}

.vehicle-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.vehicle-content-gallery {
	margin-top: 38px;
	padding-top: 34px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.vehicle-content-gallery-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 22px;
}

.vehicle-content-gallery-heading .eyebrow {
	margin-bottom: 12px;
}

.vehicle-content-gallery-heading h2 {
	margin-bottom: 0;
}

.vehicle-gallery-count {
	flex: 0 0 auto;
	padding: 7px 11px;
	border: 1px solid rgba(255, 171, 31, 0.28);
	border-radius: 999px;
	background: rgba(255, 171, 31, 0.08);
	color: var(--gold-soft);
	font-size: 0.76rem;
	font-weight: 900;
	text-transform: uppercase;
}

.vehicle-gallery-item {
	overflow: hidden;
	margin: 0;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.045);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.vehicle-gallery-trigger {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: zoom-in;
}

.vehicle-gallery-trigger img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 240ms ease, filter 240ms ease;
}

.vehicle-gallery-trigger:hover img,
.vehicle-gallery-trigger:focus-visible img {
	transform: scale(1.035);
	filter: brightness(0.82);
}

.vehicle-gallery-trigger:focus-visible {
	outline: 3px solid var(--gold);
	outline-offset: -3px;
}

.vehicle-gallery-zoom {
	position: absolute;
	right: 12px;
	bottom: 12px;
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 50%;
	background: rgba(2, 6, 21, 0.78);
	color: #fff;
	font-size: 1.45rem;
	font-weight: 400;
	line-height: 1;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

body.vehicle-lightbox-open {
	overflow: hidden;
}

.vehicle-lightbox[hidden] {
	display: none;
}

.vehicle-lightbox {
	position: fixed;
	z-index: 10000;
	inset: 0;
	display: grid;
	padding: 24px;
	place-items: center;
}

.vehicle-lightbox-backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	border: 0;
	background: rgba(1, 4, 14, 0.92);
	backdrop-filter: blur(12px);
	cursor: zoom-out;
}

.vehicle-lightbox-dialog {
	position: relative;
	z-index: 1;
	display: grid;
	width: min(1180px, 94vw);
	max-height: calc(100vh - 48px);
	padding: 14px;
	border: 1px solid rgba(255, 211, 106, 0.28);
	border-radius: 10px;
	background: #070b18;
	box-shadow: 0 40px 120px rgba(0, 0, 0, 0.62);
}

.vehicle-lightbox-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 40px;
	padding: 0 2px 10px 10px;
}

.vehicle-lightbox-counter,
.vehicle-lightbox-caption {
	color: #e4e8f1;
	font-size: 0.86rem;
	font-weight: 800;
}

.vehicle-lightbox-close,
.vehicle-lightbox-nav {
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	cursor: pointer;
}

.vehicle-lightbox-close {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	font-size: 1.55rem;
}

.vehicle-lightbox-stage {
	position: relative;
	display: grid;
	min-height: 300px;
	place-items: center;
	overflow: hidden;
	border-radius: 6px;
	background: #02040b;
}

.vehicle-lightbox-stage img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: calc(100vh - 160px);
	object-fit: contain;
}

.vehicle-lightbox-nav {
	position: absolute;
	z-index: 2;
	top: 50%;
	width: 48px;
	height: 64px;
	border-radius: 6px;
	font-size: 2.4rem;
	transform: translateY(-50%);
}

.vehicle-lightbox-prev {
	left: 14px;
}

.vehicle-lightbox-next {
	right: 14px;
}

.vehicle-lightbox-close:hover,
.vehicle-lightbox-close:focus-visible,
.vehicle-lightbox-nav:hover,
.vehicle-lightbox-nav:focus-visible {
	border-color: var(--gold);
	background: var(--gold);
	color: #090b12;
	outline: none;
}

.vehicle-lightbox-caption {
	margin: 10px 10px 2px;
	text-align: center;
}

.footer-brand {
	margin-bottom: 18px;
}

.footer-bottom {
	margin-top: 36px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #7f8aa2;
}

.content-article {
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.045);
	padding: 34px;
}

@media (max-width: 980px) {
	.header-inner {
		position: relative;
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto auto;
		min-height: 72px;
		gap: 12px;
		padding: 10px 0;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.primary-nav {
		position: absolute;
		top: calc(100% + 1px);
		left: 0;
		z-index: 40;
		width: 100%;
		max-height: min(70vh, 560px);
		overflow-y: auto;
		padding: 14px;
		border: 1px solid rgba(255, 171, 31, 0.2);
		border-radius: 0 0 10px 10px;
		background: rgba(4, 7, 24, 0.98);
		box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 160ms ease, transform 160ms ease;
	}

	.site-header.menu-open .primary-nav {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.primary-nav > ul {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		align-items: stretch;
		width: 100%;
		gap: 8px;
	}

	.primary-nav a {
		justify-content: center;
		width: 100%;
		min-height: 44px;
		border-radius: 7px;
		text-align: center;
	}

	.primary-nav .sub-menu {
		position: static;
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
		min-width: 0;
		margin-top: 6px;
		padding: 6px;
		border-radius: 7px;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.primary-nav .sub-menu a {
		min-height: 38px;
		padding: 7px 10px;
		font-size: 0.72rem;
		white-space: normal;
	}

	.header-tools {
		flex-wrap: nowrap;
		justify-content: flex-end;
	}

	.pricing-table-wrap {
		overflow-x: auto;
		overscroll-behavior-inline: contain;
		scrollbar-color: var(--gold) rgba(255, 255, 255, 0.08);
	}

	.pricing-table {
		min-width: 720px;
	}

	.route-price-row {
		grid-template-columns: minmax(0, 1fr) 170px minmax(200px, 0.34fr);
	}

	.route-price-info,
	.route-price-booking {
		padding: 22px;
	}

	.language-switcher ul {
		max-width: 124px;
	}

	.hero {
		min-height: auto;
		padding: 46px 0;
	}

	.hero-grid {
		gap: 34px;
	}

		.hero-grid,
		.strip-grid,
		.vehicle-detail-grid,
	.vehicle-content-layout,
	.booking-detail-layout,
	.vehicle-gallery-grid,
	.trip-review-grid,
	.booking-check,
	.fleet-grid,
	.faq-grid,
		.customer-booking-grid,
		.private-route-grid,
		.contact-page-layout,
		.booking-result-grid,
		.booking-suggestion-grid,
		.blog-card-grid,
		.blog-single-layout,
		.route-price-grid,
	.other-routes-grid,
	.direct-contact-inner,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.direct-contact-actions {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.contact-page-hero-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.blog-archive-hero-inner {
		grid-template-columns: 1fr;
		align-items: flex-start;
	}

	.blog-single-hero-inner {
		grid-template-columns: 1fr;
		align-items: flex-start;
	}

	.blog-sidebar-card {
		position: static;
	}

	.contact-info-grid,
	.contact-channel-grid {
		grid-template-columns: 1fr;
	}

	.booking-panel {
		max-width: 720px;
	}

	.vehicle-detail-panel {
		max-width: 720px;
	}

	.vehicle-fit-note {
		position: static;
	}

	.route-detail-heading,
	.route-inline-pricing-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.route-inline-pricing-head > p {
		max-width: 720px;
		text-align: left;
	}

	.booking-detail-copy {
		position: static;
		padding-top: 0;
	}

	.booking-detail-panel {
		max-width: none;
		justify-self: stretch;
	}

	.booking-form-wide {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.booking-form-wide > label,
	.booking-form-wide > .field-grid,
	.booking-form-wide > .notice,
	.booking-form-wide > .estimate-box,
	.booking-form-wide > button {
		grid-column: 1 / -1;
	}

	.private-car-hero-inner,
	.private-route-footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.booking-check-form {
		grid-template-columns: 1fr;
	}

	.booking-result-head {
		align-items: stretch;
		flex-direction: column;
	}

	.customer-account-hero,
	.customer-booking-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.customer-dashboard,
	.customer-account-summary,
	.customer-booking-info {
		grid-template-columns: 1fr;
	}

	.customer-auth-shell {
		grid-template-columns: 1fr;
		max-width: 680px;
	}

	.customer-section-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.booking-result-grid div.wide {
		grid-column: auto;
	}
}

@media (max-width: 720px) {
	.container {
		width: min(100% - 24px, 1180px);
	}

	.brand strong {
		font-size: 0.95rem;
	}

	.route-price-row {
		grid-template-columns: 1fr;
	}

	.route-detail-layout-full {
		width: min(100% - 24px, 1360px);
	}

	.route-detail-card {
		padding: 24px 18px;
	}

	.route-detail-heading .button {
		width: 100%;
	}

	.route-scope-grid {
		grid-template-columns: 1fr;
	}

	.route-scope-card {
		grid-template-columns: 36px minmax(0, 1fr);
		padding: 20px 16px;
	}

	.route-scope-icon {
		width: 36px;
		height: 36px;
	}

	.route-inline-pricing {
		margin-top: 34px;
		padding-top: 30px;
	}

	.route-price-thumb {
		min-height: 220px;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		border-left: 0;
	}

	.route-price-booking {
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		border-left: 0;
		text-align: left;
	}

	.route-vehicle-detail-popup-grid {
		grid-template-columns: 1fr;
	}

	.route-vehicle-detail-popup-grid > img {
		max-height: 320px;
	}

	.route-vehicle-detail-facts {
		grid-template-columns: 1fr;
	}

	.brand-logo,
	.custom-logo {
		width: min(210px, 54vw);
	}

	.hero {
		padding: 34px 0 40px;
		background:
			linear-gradient(180deg, rgba(2, 6, 21, 0.76) 0%, rgba(2, 6, 21, 0.58) 48%, rgba(2, 6, 21, 0.82) 100%),
			var(--hero-image) center 42% / cover no-repeat;
	}

	.vehicle-detail-hero {
		padding: 44px 0;
	}

	.customer-account-section {
		padding-top: 50px;
	}

	.customer-account-hero h1 {
		font-size: clamp(2.2rem, 12vw, 3.4rem);
	}

	.customer-auth-card {
		padding: 22px 18px;
	}

	.customer-register-form .field-grid {
		grid-template-columns: 1fr;
	}

	.customer-profile-card {
		align-items: flex-start;
		flex-direction: column;
		padding: 20px;
	}

	.customer-account-summary,
	.customer-profile-edit-card,
	.customer-booking-card {
		padding: 18px;
	}

	.customer-account-summary {
		gap: 10px;
	}

	.customer-booking-grid {
		grid-template-columns: 1fr;
	}

	.customer-booking-row {
		grid-template-columns: 1fr 28px;
		gap: 10px;
		padding: 16px;
	}

	.booking-row-main,
	.booking-row-route,
	.booking-row-meta,
	.booking-row-price {
		grid-column: 1;
		white-space: normal;
	}

	.customer-booking-row::after {
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
	}

	.customer-booking-detail {
		padding: 0 16px 16px;
	}

	.customer-booking-detail .customer-booking-info {
		grid-template-columns: 1fr;
	}

	.customer-booking-actions .button {
		width: 100%;
		justify-content: center;
	}

	.compact-vehicle-hero {
		min-height: auto;
	}

	.hero-grid {
		gap: 28px;
	}

	.hero-copy {
		padding-bottom: 8px;
	}

	h1 {
		font-size: clamp(2.2rem, 11vw, 3.35rem);
	}

	.field-grid,
	.strip-grid {
		grid-template-columns: 1fr;
	}

	.booking-panel,
	.fleet-card,
	.content-article {
		padding: 22px;
	}

	.route-table-route {
		grid-template-columns: 62px minmax(0, 1fr);
		min-width: 220px;
	}

	.route-thumb {
		width: 62px;
	}

	.booking-panel {
		border-radius: 16px;
	}

	.booking-detail-panel {
		padding: 22px;
	}

	.booking-form-wide,
	.booking-form-wide .field-grid {
		grid-template-columns: 1fr;
	}

	.fleet-card {
		padding-top: 138px;
	}

	.page-section {
		padding: 64px 0;
	}

	.cta-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.direct-contact-inner {
		padding: 22px;
	}

	.faq-item summary {
		padding: 16px 48px 16px 16px;
	}

	.faq-item p {
		padding: 0 16px 16px;
	}

	.direct-contact-actions {
		grid-template-columns: 1fr 1fr;
	}

	.contact-info-panel,
	.contact-form-panel {
		padding: 22px;
	}

	.quick-contact-bar {
		right: 10px;
		top: auto;
		bottom: 14px;
		width: 62px;
		max-height: calc(100vh - 120px);
		border-radius: 22px;
		transform: none;
	}

	.quick-contact-bar a,
	.quick-contact-bar button {
		width: 46px;
		min-height: 50px;
		font-size: 0.58rem;
	}

	.quick-contact-icon {
		width: 21px;
		height: 21px;
	}
}

html.light-luxury body {
	background:
		linear-gradient(180deg, rgba(255, 252, 245, 0.94) 0%, rgba(244, 234, 217, 0.94) 48%, rgba(236, 222, 197, 0.96) 100%),
		radial-gradient(circle at 12% 8%, rgba(255, 198, 74, 0.22), transparent 30%),
		radial-gradient(circle at 88% 10%, rgba(62, 72, 92, 0.12), transparent 32%),
		#f6efe4;
	color: #1f1a12;
}

html.light-luxury .site-header {
	background: rgba(255, 252, 246, 0.82);
	border-bottom-color: rgba(162, 118, 41, 0.24);
	box-shadow: 0 18px 46px rgba(80, 55, 18, 0.08);
}

html.light-luxury .brand strong,
html.light-luxury .section-heading h2,
html.light-luxury .cta-inner h2,
html.light-luxury .vehicle-detail-content .content-article h2,
html.light-luxury .fleet-card h3,
html.light-luxury .fleet-card h2 {
	color: #17130d;
}

html.light-luxury .brand small,
html.light-luxury .eyebrow,
html.light-luxury .eyebrow.dark,
html.light-luxury .section-kicker {
	color: #9b680d;
}

html.light-luxury .primary-nav a,
html.light-luxury .language-current,
html.light-luxury .language-menu a,
html.light-luxury .theme-toggle {
	border-color: rgba(142, 98, 28, 0.18);
	background: rgba(255, 255, 255, 0.72);
	color: #2b2419;
	box-shadow: 0 8px 22px rgba(80, 55, 18, 0.06);
}

html.light-luxury .primary-nav a:hover,
html.light-luxury .language-current:hover,
html.light-luxury .language-current:focus,
html.light-luxury .language-menu a:hover,
html.light-luxury .language-menu a:focus,
html.light-luxury .language-menu .current-lang a,
html.light-luxury .theme-toggle:hover {
	background: linear-gradient(180deg, #ffc24a 0%, #ff9d00 100%);
	color: #17130d;
}

html.light-luxury .primary-nav .sub-menu {
	border-color: rgba(162, 118, 41, 0.2);
	background: rgba(255, 252, 246, 0.98);
	box-shadow: 0 24px 70px rgba(79, 55, 18, 0.18);
}

html.light-luxury .primary-nav .sub-menu a {
	background: rgba(23, 19, 13, 0.045);
	color: #30291f;
}

html.light-luxury .language-menu {
	border-color: rgba(142, 98, 28, 0.18);
	background: rgba(255, 252, 246, 0.96);
	box-shadow: 0 24px 70px rgba(80, 55, 18, 0.16);
}

html.light-luxury .hero,
html.light-luxury .vehicle-detail-hero,
html.light-luxury .private-car-hero {
	background:
		linear-gradient(90deg, rgba(255, 250, 241, 0.96) 0%, rgba(255, 250, 241, 0.86) 46%, rgba(255, 250, 241, 0.36) 100%),
		linear-gradient(180deg, rgba(255, 250, 241, 0.16) 0%, rgba(246, 239, 228, 0.96) 100%),
		var(--hero-image) center / cover no-repeat;
	color: #1f1a12;
}

html.light-luxury .hero {
	background:
		linear-gradient(90deg, rgba(255, 250, 241, 0.82) 0%, rgba(255, 250, 241, 0.58) 46%, rgba(255, 250, 241, 0.14) 100%),
		linear-gradient(180deg, rgba(255, 250, 241, 0.06) 0%, rgba(246, 239, 228, 0.7) 100%),
		var(--hero-image) center 44% / cover no-repeat;
}

html.light-luxury .route-detail-hero {
	background:
		linear-gradient(90deg, rgba(255, 250, 241, 0.82) 0%, rgba(255, 250, 241, 0.66) 34%, rgba(255, 250, 241, 0.2) 64%, rgba(255, 250, 241, 0.04) 100%),
		linear-gradient(180deg, rgba(255, 250, 241, 0.02) 0%, rgba(246, 239, 228, 0.3) 100%),
		var(--hero-image) center 52% / cover no-repeat;
}

html.light-luxury .route-detail-hero .vehicle-detail-panel {
	background: rgba(255, 252, 246, 0.88);
	backdrop-filter: blur(8px);
}

html.light-luxury .hero-copy h1,
html.light-luxury .vehicle-hero-copy h1,
html.light-luxury .private-car-hero h1,
html.light-luxury .customer-account-hero h1,
html.light-luxury .booking-detail-copy h1 {
	color: #261d10;
	text-shadow: none;
}

html.light-luxury .hero-lead,
html.light-luxury .trust-row,
html.light-luxury .trust-row span,
html.light-luxury .section-heading p:last-child,
html.light-luxury .private-car-hero p:last-child,
html.light-luxury .customer-account-hero p:last-child,
html.light-luxury .customer-login-card p,
html.light-luxury .booking-detail-copy p:last-child,
html.light-luxury .private-route-card p,
html.light-luxury .vehicle-full-description,
html.light-luxury .fleet-card p,
html.light-luxury .content-article,
html.light-luxury .booking-check-card p,
html.light-luxury .cta-inner p:last-child {
	color: #5f574d;
}

html.light-luxury .booking-panel,
html.light-luxury .vehicle-detail-panel,
html.light-luxury .booking-check-card,
html.light-luxury .booking-result,
html.light-luxury .customer-login-card,
html.light-luxury .customer-profile-card,
html.light-luxury .customer-account-summary,
html.light-luxury .customer-profile-edit-card,
html.light-luxury .customer-booking-card,
html.light-luxury .customer-booking-item,
html.light-luxury .trip-review-card,
html.light-luxury .review-form-card,
html.light-luxury .content-article,
html.light-luxury .empty-pricing,
html.light-luxury .vehicle-gallery-item {
	border-color: rgba(164, 118, 38, 0.2);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 249, 238, 0.9) 100%);
	box-shadow: 0 30px 80px rgba(79, 55, 18, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.58) inset;
	color: #1f1a12;
}

html.light-luxury .customer-account-section {
	background:
		linear-gradient(180deg, rgba(255, 251, 243, 0.98) 0%, rgba(247, 238, 224, 0.98) 100%),
		radial-gradient(circle at 14% 8%, rgba(255, 184, 46, 0.22), transparent 30%),
		#f7efe3;
}

html.light-luxury .customer-account-hero {
	border-bottom-color: rgba(164, 118, 38, 0.22);
}

html.light-luxury .customer-register-card {
	border-color: rgba(164, 118, 38, 0.22);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 249, 238, 0.9) 100%);
	box-shadow: 0 30px 80px rgba(79, 55, 18, 0.12);
}

html.light-luxury .customer-auth-card h2 {
	color: #241b10;
}

html.light-luxury .customer-auth-card > p:not(.section-kicker),
html.light-luxury .customer-login-card #loginform label,
html.light-luxury .customer-register-form > label,
html.light-luxury .customer-register-form .field-grid label,
html.light-luxury .customer-login-card .login-remember label,
html.light-luxury .customer-consent-option {
	color: #655c50;
}

html.light-luxury .booking-result-grid div {
	border-color: rgba(23, 19, 13, 0.1);
	background: rgba(255, 255, 255, 0.62);
}

html.light-luxury .customer-profile-card,
html.light-luxury .customer-account-summary div,
html.light-luxury .customer-booking-info div {
	border-color: rgba(23, 19, 13, 0.1);
	background: rgba(255, 255, 255, 0.62);
}

html.light-luxury .booking-panel h2,
html.light-luxury .booking-result-head h2,
html.light-luxury .customer-login-card h2,
html.light-luxury .customer-section-head h2,
html.light-luxury .customer-password-fields h3,
html.light-luxury .review-form-card h1,
html.light-luxury .booking-result-grid strong,
html.light-luxury .booking-result-empty strong,
html.light-luxury .customer-profile-card strong,
html.light-luxury .customer-account-summary strong,
html.light-luxury .customer-booking-info strong,
html.light-luxury .customer-booking-head strong,
html.light-luxury .booking-row-main strong,
html.light-luxury .booking-row-route,
html.light-luxury .booking-row-price,
html.light-luxury .trip-review-author strong,
html.light-luxury .vehicle-detail-panel strong,
html.light-luxury .vehicle-fit-note strong,
html.light-luxury .route-price-scope strong {
	color: #2a2012;
}

html.light-luxury .route-price-list {
	border: 0;
	background: transparent;
	box-shadow: none;
}

html.light-luxury .route-detail-card {
	border-color: rgba(164, 118, 38, 0.22);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 243, 230, 0.96));
	box-shadow: 0 34px 100px rgba(79, 55, 18, 0.13);
}

html.light-luxury .route-detail-heading,
html.light-luxury .route-inline-pricing,
html.light-luxury .route-price-row,
html.light-luxury .route-price-thumb,
html.light-luxury .route-price-booking {
	border-color: rgba(23, 19, 13, 0.1);
}

html.light-luxury .route-price-row {
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 16px 44px rgba(79, 55, 18, 0.1);
}

html.light-luxury .route-description .vehicle-full-description,
html.light-luxury .route-scope-card p,
html.light-luxury .route-inline-pricing-head > p {
	color: #655c50;
}

html.light-luxury .route-scope-card {
	border-color: rgba(164, 118, 38, 0.2);
	background: rgba(255, 255, 255, 0.68);
}

html.light-luxury .route-scope-card h3 {
	color: #241b10;
}

html.light-luxury .route-scope-excluded .route-scope-icon {
	background: rgba(47, 56, 73, 0.08);
	color: #4c5666;
}

html.light-luxury .route-price-row,
html.light-luxury .route-price-thumb,
html.light-luxury .route-price-booking {
	border-color: rgba(23, 19, 13, 0.1);
}

html.light-luxury .route-price-info h3,
html.light-luxury .route-price-booking .route-price-value {
	color: #17130d;
}

html.light-luxury .route-price-features,
html.light-luxury .route-price-note {
	color: #655c50;
}

html.light-luxury .route-price-detail-link {
	color: #9a6408;
}

html.light-luxury .route-price-photo-count {
	border-color: rgba(255, 255, 255, 0.5);
	background: rgba(33, 25, 14, 0.82);
}

html.light-luxury .route-vehicle-detail-dialog {
	border-color: rgba(162, 118, 41, 0.24);
	background: #fffaf1;
	box-shadow: 0 36px 110px rgba(79, 55, 18, 0.24);
}

html.light-luxury .route-vehicle-detail-toolbar {
	border-color: rgba(162, 118, 41, 0.16);
}

html.light-luxury .route-vehicle-detail-toolbar h2,
html.light-luxury .route-vehicle-detail-facts span {
	color: #261d10;
}

html.light-luxury .route-vehicle-detail-summary,
html.light-luxury .route-vehicle-detail-description {
	color: #5f574d;
}

html.light-luxury .route-vehicle-detail-facts span,
html.light-luxury .route-vehicle-detail-amenities li {
	border-color: rgba(162, 118, 41, 0.16);
	background: rgba(255, 255, 255, 0.68);
	color: #4f473d;
}

html.light-luxury label,
html.light-luxury .vehicle-detail-panel span,
html.light-luxury .booking-result-grid span,
html.light-luxury .booking-result-empty span,
html.light-luxury .customer-profile-card span,
html.light-luxury .customer-profile-card small,
html.light-luxury .customer-booking-head small,
html.light-luxury .booking-row-meta,
html.light-luxury .trip-review-author span,
html.light-luxury .review-form-card p,
html.light-luxury .customer-account-summary span,
html.light-luxury .customer-booking-info span,
html.light-luxury .estimate-box span,
html.light-luxury .vehicle-hint {
	color: #6b6258;
}

html.light-luxury .trip-type-option span {
	border-color: rgba(162, 118, 41, 0.22);
	background: rgba(255, 255, 255, 0.72);
	color: #30291f;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

html.light-luxury .trip-type-option input:checked + span {
	border-color: rgba(172, 111, 11, 0.46);
	background: linear-gradient(180deg, #d99b24, #b9780e);
	color: #fffaf0;
	box-shadow: 0 18px 34px rgba(165, 106, 16, 0.2);
}

html.light-luxury .return-trip-fields {
	border-color: rgba(162, 118, 41, 0.2);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 247, 233, 0.78)),
		#fff8ec;
	box-shadow: 0 18px 45px rgba(79, 55, 18, 0.08);
}

html.light-luxury .return-trip-heading {
	color: #9b680d;
}

html.light-luxury .booking-section-title {
	color: #9b680d;
}

html.light-luxury .booking-section-title::after {
	background: linear-gradient(90deg, rgba(162, 118, 41, 0.28), transparent);
}

html.light-luxury input,
html.light-luxury select,
html.light-luxury textarea {
	border-color: rgba(142, 98, 28, 0.18);
	background-color: rgba(255, 255, 255, 0.82);
	color: #1f1a12;
	box-shadow: 0 8px 20px rgba(80, 55, 18, 0.04) inset;
}

html.light-luxury select option,
html.light-luxury select optgroup {
	background: #fffaf1;
	color: #1f1a12;
}

html.light-luxury select option:checked {
	background: #ffab1f;
	color: #171004;
}

html.light-luxury input::placeholder,
html.light-luxury textarea::placeholder {
	color: rgba(95, 87, 77, 0.55);
}

html.light-luxury .estimate-box,
html.light-luxury .vehicle-fit-note {
	border-color: rgba(255, 171, 31, 0.26);
	background: rgba(255, 171, 31, 0.12);
	color: #17130d;
}

html.light-luxury .service-strip,
html.light-luxury .pricing-section,
html.light-luxury .trip-reviews-section,
html.light-luxury .review-form-section,
html.light-luxury .private-route-section,
html.light-luxury .vehicle-routes-section,
html.light-luxury .vehicle-list-section,
html.light-luxury .customer-account-section,
html.light-luxury .booking-detail-section,
html.light-luxury .contact-page-hero,
html.light-luxury .contact-page-section,
html.light-luxury .route-detail-content,
html.light-luxury .route-pricing-section,
html.light-luxury .other-routes-section,
html.light-luxury .other-vehicles-section,
html.light-luxury .booking-check-section,
html.light-luxury .vehicle-gallery-section {
	background:
		radial-gradient(circle at 15% 14%, rgba(255, 190, 64, 0.14), transparent 30%),
		radial-gradient(circle at 88% 10%, rgba(48, 60, 80, 0.08), transparent 32%),
		linear-gradient(180deg, #fffaf1 0%, #f2e4cf 100%);
	border-color: rgba(162, 118, 41, 0.14);
	color: #1f1a12;
}

html.light-luxury .customer-account-section {
	background:
		linear-gradient(180deg, rgba(255, 251, 243, 0.98) 0%, rgba(247, 238, 224, 0.98) 100%),
		radial-gradient(circle at 14% 8%, rgba(255, 184, 46, 0.22), transparent 30%),
		#f7efe3;
}

html.light-luxury .customer-booking-item[open] {
	border-color: rgba(164, 118, 38, 0.34);
	box-shadow: 0 28px 72px rgba(79, 55, 18, 0.14);
}

html.light-luxury .customer-booking-detail .customer-booking-info {
	border-top-color: rgba(23, 19, 13, 0.1);
}

html.light-luxury .customer-password-fields {
	border-top-color: rgba(23, 19, 13, 0.1);
}

html.light-luxury .trip-review-card p {
	color: #4d4438;
}

html.light-luxury .review-rating-options span {
	background: rgba(255, 255, 255, 0.68);
	color: #9b680d;
}

html.light-luxury .strip-card,
html.light-luxury .pricing-table-wrap,
html.light-luxury .fleet-card,
html.light-luxury .private-route-card,
html.light-luxury .booking-suggestion-card,
html.light-luxury .route-price-card,
html.light-luxury .other-route-card {
	border-color: rgba(164, 118, 38, 0.2);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 248, 235, 0.88) 100%);
	box-shadow: 0 26px 76px rgba(79, 55, 18, 0.13), 0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

html.light-luxury .strip-grid strong,
html.light-luxury .route-name,
html.light-luxury .private-route-card h2,
html.light-luxury .booking-suggestion-body strong,
html.light-luxury .route-price-value,
html.light-luxury .route-price-vehicle,
html.light-luxury .other-route-card strong {
	color: #17130d;
}

html.light-luxury .strip-icon {
	border-color: rgba(162, 118, 41, 0.24);
	background: rgba(255, 171, 31, 0.13);
	color: #9b680d;
}

html.light-luxury .strip-grid span,
html.light-luxury .route-points,
html.light-luxury .private-route-price span,
html.light-luxury .booking-suggestion-body small,
html.light-luxury .route-price-meta,
html.light-luxury .other-route-card small,
html.light-luxury .muted-price,
html.light-luxury .empty-pricing span {
	color: #6b6258;
}

html.light-luxury .pricing-table thead th {
	background: linear-gradient(180deg, rgba(255, 197, 78, 0.18), rgba(164, 118, 38, 0.08));
	color: #7d5309;
}

html.light-luxury .pricing-table th,
html.light-luxury .pricing-table td,
html.light-luxury .pricing-table tbody tr:last-child th,
html.light-luxury .pricing-table tbody tr:last-child td {
	border-bottom-color: rgba(23, 19, 13, 0.08);
}

html.light-luxury .pricing-table tbody th,
html.light-luxury .pricing-table tbody td {
	background: rgba(255, 255, 255, 0.66);
	color: #1f1a12;
}

html.light-luxury .pricing-table tbody tr:hover td,
html.light-luxury .pricing-table tbody tr:hover th {
	background: rgba(255, 171, 31, 0.12);
}

html.light-luxury .vehicle-table-link,
html.light-luxury .route-link:hover,
html.light-luxury .private-route-meta,
html.light-luxury .private-route-price strong,
html.light-luxury .booking-suggestion-body em,
html.light-luxury .route-price-badge,
html.light-luxury .route-price-more,
html.light-luxury .route-price-vehicle,
html.light-luxury .other-route-card span,
html.light-luxury .fleet-more {
	color: #9b680d;
}

html.light-luxury .route-link {
	color: #17130d;
	text-decoration-color: rgba(155, 104, 13, 0.42);
}

html.light-luxury .private-route-image {
	background:
		linear-gradient(180deg, rgba(255, 248, 235, 0.04), rgba(255, 248, 235, 0.3)),
		var(--route-image, var(--hero-image)) center / cover no-repeat;
}

html.light-luxury .route-price-image {
	background:
		linear-gradient(180deg, rgba(255, 248, 235, 0.04), rgba(255, 248, 235, 0.62)),
		var(--vehicle-image, var(--hero-image)) center / cover no-repeat;
}

html.light-luxury .booking-suggestion-image {
	background:
		linear-gradient(180deg, rgba(255, 248, 235, 0.04), rgba(255, 248, 235, 0.3)),
		var(--route-image, var(--hero-image)) center / cover no-repeat;
}

html.light-luxury .private-route-footer {
	border-top-color: rgba(23, 19, 13, 0.1);
}

html.light-luxury .route-pagination a,
html.light-luxury .route-pagination span {
	border-color: rgba(142, 98, 28, 0.16);
	background: rgba(255, 255, 255, 0.72);
	color: #1f1a12;
	box-shadow: 0 10px 26px rgba(80, 55, 18, 0.06);
}

html.light-luxury .route-pagination .current,
html.light-luxury .route-pagination a:hover {
	border-color: rgba(255, 171, 31, 0.48);
	background: linear-gradient(180deg, #ffc24a 0%, #ff9d00 100%);
	color: #171004;
}

html.light-luxury .fleet-card::before {
	background:
		linear-gradient(180deg, rgba(255, 248, 235, 0.04), rgba(255, 248, 235, 0.88)),
		var(--vehicle-image, var(--hero-image)) center / cover no-repeat;
}

html.light-luxury .route-thumb {
	border-color: rgba(150, 104, 28, 0.22);
	background:
		linear-gradient(180deg, rgba(255, 248, 235, 0.04), rgba(255, 248, 235, 0.26)),
		var(--route-image, var(--hero-image)) center / cover no-repeat;
	box-shadow: 0 12px 28px rgba(61, 43, 13, 0.14);
}

html.light-luxury .other-route-card::before {
	background:
		linear-gradient(180deg, rgba(255, 248, 235, 0.04), rgba(255, 248, 235, 0.88)),
		var(--route-image, var(--hero-image)) center / cover no-repeat;
}

html.light-luxury .fleet-card li,
html.light-luxury .muted-price {
	border-color: rgba(23, 19, 13, 0.1);
	background: rgba(255, 255, 255, 0.64);
	color: #3c352c;
}

html.light-luxury .cta-band,
html.light-luxury .site-footer {
	background:
		linear-gradient(180deg, #21170c 0%, #130f09 100%);
	color: #fff8eb;
}

html.light-luxury .footer-faq {
	border-bottom-color: rgba(255, 248, 235, 0.16);
}

html.light-luxury .faq-item {
	border-color: rgba(255, 248, 235, 0.16);
	background:
		linear-gradient(180deg, rgba(255, 221, 142, 0.08) 0%, rgba(255, 248, 235, 0.04) 46%),
		rgba(255, 255, 255, 0.055);
	color: #d8c8ae;
}

html.light-luxury .faq-item:hover,
html.light-luxury .faq-item[open] {
	border-color: rgba(255, 211, 106, 0.48);
	background:
		linear-gradient(180deg, rgba(255, 194, 74, 0.16) 0%, rgba(255, 248, 235, 0.06) 52%),
		rgba(255, 255, 255, 0.08);
}

html.light-luxury .faq-item summary {
	color: #fff8eb;
}

html.light-luxury .faq-item p {
	color: #c9bba6;
}

html.light-luxury .direct-contact-inner {
	border-color: rgba(190, 136, 34, 0.28);
	background:
		linear-gradient(135deg, rgba(255, 196, 74, 0.22) 0%, rgba(255, 255, 255, 0.86) 45%, rgba(255, 246, 229, 0.92) 100%);
	box-shadow: 0 30px 84px rgba(79, 55, 18, 0.16), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

html.light-luxury .direct-contact h2 {
	color: #17130d;
}

html.light-luxury .direct-contact p {
	color: #5f574d;
}

html.light-luxury .contact-action {
	border-color: rgba(142, 98, 28, 0.18);
	background: rgba(255, 255, 255, 0.76);
	color: #1f1a12;
	box-shadow: 0 12px 28px rgba(80, 55, 18, 0.06);
}

html.light-luxury .contact-action:hover,
html.light-luxury .contact-action:focus {
	background: rgba(255, 171, 31, 0.16);
}

html.light-luxury .contact-action.primary {
	background: linear-gradient(180deg, #ffc24a 0%, #ff9d00 100%);
}

html.light-luxury .contact-page-hero h1,
html.light-luxury .contact-info-panel h2,
html.light-luxury .contact-form-panel h2 {
	color: #17130d;
}

html.light-luxury .contact-page-hero p:last-child {
	color: #5f574d;
}

html.light-luxury .contact-info-panel,
html.light-luxury .contact-form-panel,
html.light-luxury .contact-info-card {
	border-color: rgba(164, 118, 38, 0.2);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 249, 238, 0.9) 100%);
	color: #1f1a12;
	box-shadow: 0 30px 80px rgba(79, 55, 18, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.58) inset;
}

html.light-luxury .contact-info-card.primary {
	background: linear-gradient(180deg, #ffc24a 0%, #ff9d00 100%);
	color: #171004;
}

html.light-luxury .blog-archive-hero,
html.light-luxury .blog-archive-section {
	background:
		radial-gradient(circle at 15% 14%, rgba(255, 190, 64, 0.14), transparent 30%),
		radial-gradient(circle at 88% 10%, rgba(48, 60, 80, 0.08), transparent 32%),
		linear-gradient(180deg, #fffaf1 0%, #f2e4cf 100%);
	color: #1f1a12;
}

html.light-luxury .blog-archive-hero h1,
html.light-luxury .blog-card h2 a {
	color: #17130d;
}

html.light-luxury .blog-archive-hero p:last-child,
html.light-luxury .blog-card p {
	color: #5f574d;
}

html.light-luxury .blog-card {
	border-color: rgba(162, 118, 41, 0.14);
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 24px 70px rgba(79, 55, 18, 0.12);
}

html.light-luxury .blog-single-hero,
html.light-luxury .blog-single-section,
html.light-luxury .blog-related-section {
	background:
		radial-gradient(circle at 15% 14%, rgba(255, 190, 64, 0.14), transparent 30%),
		radial-gradient(circle at 88% 10%, rgba(48, 60, 80, 0.08), transparent 32%),
		linear-gradient(180deg, #fffaf1 0%, #f2e4cf 100%);
	color: #1f1a12;
}

html.light-luxury .blog-single-hero h1,
html.light-luxury .blog-single-content h2,
html.light-luxury .blog-single-content h3,
html.light-luxury .blog-sidebar-card h2 {
	color: #17130d;
}

html.light-luxury .blog-single-meta,
html.light-luxury .blog-single-content,
html.light-luxury .blog-sidebar-card p {
	color: #5f574d;
}

html.light-luxury .blog-single-meta span,
html.light-luxury .blog-single-content,
html.light-luxury .blog-sidebar-card {
	border-color: rgba(162, 118, 41, 0.16);
	background: rgba(255, 255, 255, 0.84);
	box-shadow: 0 24px 70px rgba(79, 55, 18, 0.12);
}

html.light-luxury .quick-contact-bar {
	border-color: rgba(142, 98, 28, 0.22);
	background: rgba(255, 252, 246, 0.9);
	box-shadow: 0 22px 70px rgba(79, 55, 18, 0.16);
}

html.light-luxury .quick-contact-bar a,
html.light-luxury .quick-contact-bar button {
	background: rgba(23, 19, 13, 0.06);
	color: #17130d;
}

html.light-luxury .quick-contact-bar a:hover,
html.light-luxury .quick-contact-bar a:focus,
html.light-luxury .quick-contact-bar button:hover,
html.light-luxury .quick-contact-bar button:focus {
	background: rgba(255, 171, 31, 0.16);
	color: #7a4f08;
}

html.light-luxury .quick-contact-hotline {
	color: #171004 !important;
}

html.light-luxury .quick-contact-icon {
	background: rgba(255, 255, 255, 0.55);
}

html.light-luxury .footer-grid p,
html.light-luxury .footer-grid a,
html.light-luxury .footer-bottom {
	color: #c9bba6;
}

html.light-luxury .footer-grid h2 {
	color: #fff8eb;
}

html.light-luxury .vehicle-content-gallery {
	border-top-color: rgba(162, 118, 41, 0.2);
}

html.light-luxury .vehicle-gallery-count {
	border-color: rgba(162, 118, 41, 0.24);
	background: rgba(255, 171, 31, 0.1);
	color: #835609;
}

html.light-luxury .booking-vehicle-preview,
html.light-luxury .booking-vehicle-summary {
	border-color: rgba(162, 118, 41, 0.2);
	background:
		linear-gradient(135deg, rgba(255, 190, 64, 0.14) 0%, rgba(255, 255, 255, 0.82) 52%),
		#fffaf1;
}

html.light-luxury .booking-vehicle-content h3,
html.light-luxury .booking-vehicle-summary strong {
	color: #261d10;
}

html.light-luxury .booking-vehicle-content p,
html.light-luxury .booking-vehicle-summary li {
	color: #5f574d;
}

html.light-luxury .booking-vehicle-amenities li,
html.light-luxury .booking-vehicle-summary li {
	border-color: rgba(162, 118, 41, 0.16);
	background: rgba(255, 255, 255, 0.66);
}

@media (min-width: 721px) and (max-width: 980px) {
	.vehicle-content-gallery .vehicle-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.booking-form-wide .outbound-trip-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.header-inner {
		grid-template-columns: minmax(0, 1fr) auto auto;
		gap: 8px;
	}

	.brand-logo,
	.custom-logo {
		width: min(210px, 48vw);
	}

	.language-current {
		min-height: 38px;
	}

	.primary-nav > ul {
		grid-template-columns: 1fr;
	}

	.primary-nav .sub-menu {
		margin-left: 12px;
		width: calc(100% - 12px);
	}

	.pricing-table-wrap {
		overflow: visible;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.pricing-table {
		display: block;
		min-width: 0;
		border: 0;
	}

	.pricing-table thead {
		display: none;
	}

	.pricing-table tbody {
		display: grid;
		gap: 14px;
	}

	.pricing-table tbody tr {
		display: grid;
		overflow: hidden;
		border: 1px solid rgba(255, 211, 106, 0.2);
		border-radius: 10px;
		background: rgba(8, 13, 31, 0.88);
		box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
	}

	.pricing-table tbody th {
		position: static;
		display: block;
		width: 100%;
		padding: 18px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.pricing-table tbody td {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		gap: 12px;
		width: 100%;
		padding: 13px 18px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.pricing-table tbody td::before {
		content: attr(data-label);
		color: var(--gold-soft);
		font-size: 0.74rem;
		font-weight: 900;
		text-transform: uppercase;
	}

	.pricing-table tbody tr:last-child th,
	.pricing-table tbody tr:last-child td,
	.pricing-table tbody tr td:last-child {
		border-bottom: 0;
	}

	.route-table-route {
		grid-template-columns: 68px minmax(0, 1fr);
		min-width: 0;
	}

	.route-name {
		font-size: 1rem;
	}

	.price-pill,
	.muted-price {
		min-width: 0;
		padding: 8px 11px;
		font-size: 0.86rem;
	}

	.quick-contact-bar {
		inset: auto 10px 10px 10px;
		display: flex;
		width: auto;
		max-height: none;
		padding: 7px;
		overflow-x: auto;
		overflow-y: hidden;
		border-radius: 10px;
	}

	.quick-contact-bar a,
	.quick-contact-bar button {
		flex: 0 0 54px;
		min-height: 52px;
	}

	body {
		padding-bottom: 78px;
	}

	.booking-form-wide .outbound-trip-grid {
		grid-template-columns: 1fr;
	}

	.booking-vehicle-preview,
	.booking-vehicle-summary {
		grid-template-columns: 1fr;
	}

	.booking-vehicle-image,
	.booking-vehicle-image img {
		min-height: 0;
		aspect-ratio: 16 / 9;
	}

	.booking-vehicle-content {
		padding: 20px;
	}

	.vehicle-content-gallery {
		margin-top: 30px;
		padding-top: 28px;
	}

	.vehicle-content-gallery-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

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

	.vehicle-lightbox {
		padding: 10px;
	}

	.vehicle-lightbox-dialog {
		width: 100%;
		max-height: calc(100vh - 20px);
		padding: 8px;
	}

	.vehicle-lightbox-stage {
		min-height: 220px;
	}

	.vehicle-lightbox-stage img {
		max-height: calc(100vh - 130px);
	}

	.vehicle-lightbox-nav {
		width: 42px;
		height: 56px;
	}

	.vehicle-lightbox-prev {
		left: 8px;
	}

	.vehicle-lightbox-next {
		right: 8px;
	}
}

@media (max-width: 520px) {
	.menu-toggle-label,
	.language-current span {
		display: none;
	}

	.menu-toggle,
	.language-current {
		justify-content: center;
		width: 42px;
		padding: 8px;
	}

	.language-current {
		padding-right: 8px;
	}

	.language-current::after {
		display: none;
	}

	.brand-logo,
	.custom-logo {
		width: min(190px, 58vw);
	}

	.trip-type-group {
		grid-template-columns: 1fr;
	}

	html.light-luxury .route-detail-hero {
		background:
			linear-gradient(180deg, rgba(255, 250, 241, 0.72) 0%, rgba(255, 250, 241, 0.52) 48%, rgba(246, 239, 228, 0.76) 100%),
			var(--hero-image) center 48% / cover no-repeat;
	}
}
