/* ==========================================================================
   SkyTrade Aviation — Charter Page Enhanced Design
   Loaded only on template-charter.php (after booking.css).
   ========================================================================== */

.charter-page .container.booking-page {
	max-width: 880px;
	padding-top: 0;
	margin-left: auto;
	margin-right: auto;
}

/* ── CHARTER HERO ─────────────────────────────────────────────────────────── */
.charter-hero {
	position: relative;
	min-height: 420px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: var(--st-navy);
}

.charter-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.charter-hero__bg img,
.charter-hero__bg .skytrade-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.45;
	transform: scale(1.04);
	animation: charterHeroZoom 12s ease-in-out infinite alternate;
}

.charter-hero__bg .skytrade-img-placeholder {
	width: 100%;
	height: 100%;
	min-height: 420px;
	border-radius: 0;
	border: none;
	opacity: 0.35;
}

@keyframes charterHeroZoom {
	from { transform: scale(1.04); }
	to   { transform: scale(1.12); }
}

.charter-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		160deg,
		rgba(10, 22, 40, 0.55) 0%,
		rgba(10, 22, 40, 0.92) 100%
	);
	z-index: 1;
}

.charter-hero__content {
	position: relative;
	z-index: 2;
	padding: 48px 0 56px;
	width: 100%;
}

.charter-hero__eyebrow {
	font-family: var(--st-font-body);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 3px;
	color: var(--st-gold);
	margin-bottom: 12px;
	opacity: 0;
	animation: charterFadeUp 0.6s 0.2s forwards;
}

.charter-hero__headline {
	font-family: var(--st-font-display);
	font-size: clamp(36px, 5vw, 64px);
	font-weight: 700;
	color: var(--st-white);
	line-height: 1.08;
	margin-bottom: 16px;
	opacity: 0;
	animation: charterFadeUp 0.6s 0.35s forwards;
}

.charter-hero__headline span {
	color: var(--st-gold);
}

.charter-hero__sub {
	font-family: var(--st-font-body);
	font-size: 16px;
	color: var(--st-white-60);
	max-width: 520px;
	line-height: 1.6;
	opacity: 0;
	animation: charterFadeUp 0.6s 0.5s forwards;
}

.charter-hero__trust {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	margin-top: 28px;
	opacity: 0;
	animation: charterFadeUp 0.6s 0.65s forwards;
}

.charter-hero__trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	color: var(--st-white-60);
}

.charter-hero__trust-item::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--st-gold);
	flex-shrink: 0;
}

@keyframes charterFadeUp {
	from { opacity: 0; transform: translateY(18px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ── BOOKING WRAPPER ──────────────────────────────────────────────────────── */
.charter-page .booking-glass-card {
	background: rgba(15, 32, 64, 0.85);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(201, 168, 76, 0.18);
	border-radius: 16px;
	padding: 40px;
	margin-top: -48px;
	margin-bottom: var(--st-space-3xl);
	position: relative;
	z-index: 10;
	box-shadow:
		0 32px 64px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(201, 168, 76, 0.08) inset;
	animation: charterFadeUp 0.5s 0.8s both;
}

@media (max-width: 768px) {
	.charter-page .booking-glass-card {
		padding: 24px 20px;
		margin-top: -24px;
	}
}

/* ── TRIP TYPE TOGGLE ─────────────────────────────────────────────────────── */
.charter-page .trip-type-toggle {
	display: inline-flex;
	background: var(--st-navy);
	border: 1px solid var(--st-navy-mid);
	border-radius: 8px;
	padding: 3px;
	gap: 2px;
	margin-bottom: 28px;
	width: auto;
	overflow: visible;
}

.charter-page .trip-type-toggle__option {
	padding: 9px 22px;
	border-radius: 6px;
	border: none;
	background: transparent;
	color: var(--st-white-60);
	font-family: var(--st-font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.22s ease;
	text-transform: uppercase;
	flex: none;
}

.charter-page .trip-type-toggle__option.is-active {
	background: var(--st-gold);
	color: var(--st-navy);
	box-shadow: 0 2px 12px rgba(201, 168, 76, 0.3);
}

.charter-page .trip-type-toggle__option:hover:not(.is-active) {
	color: var(--st-white);
	background: rgba(255, 255, 255, 0.06);
}

/* ── FORM FIELDS ──────────────────────────────────────────────────────────── */
.charter-page .field__label {
	font-family: var(--st-font-body);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--st-gold);
	text-transform: uppercase;
	display: block;
	margin-bottom: 8px;
}

.charter-page .field__input {
	width: 100%;
	background: var(--st-navy);
	border: 1px solid var(--st-navy-mid);
	border-radius: var(--st-input-radius);
	color: var(--st-white);
	font-family: var(--st-font-body);
	font-size: 15px;
	padding: 14px 16px;
	transition: border-color 0.2s, box-shadow 0.2s;
	outline: none;
	box-sizing: border-box;
	min-height: auto;
}

.charter-page .field__input:focus {
	border-color: var(--st-gold);
	box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.charter-page .field__input::placeholder {
	color: var(--st-white-20);
}

/* ── ROUTE ROW ────────────────────────────────────────────────────────────── */
.charter-page .route-row {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: start;
	gap: 12px;
	margin-bottom: 20px;
}

.charter-page .swap-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--st-navy-mid);
	background: var(--st-navy);
	color: var(--st-gold);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.02em;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	margin-top: 28px;
	flex-shrink: 0;
}

.charter-page .swap-btn:hover {
	background: var(--st-gold);
	color: var(--st-navy);
	border-color: var(--st-gold);
	transform: rotate(180deg);
}

@media (max-width: 640px) {
	.charter-page .route-row {
		grid-template-columns: 1fr;
	}

	.charter-page .swap-btn {
		margin: 0 auto;
		transform: rotate(90deg);
	}

	.charter-page .swap-btn:hover {
		transform: rotate(270deg);
	}
}

/* ── PAX COUNTER ──────────────────────────────────────────────────────────── */
.charter-page .pax-counter,
.charter-page .counter {
	display: flex;
	align-items: center;
	gap: 0;
	border: 1px solid var(--st-navy-mid);
	border-radius: var(--st-input-radius);
	background: var(--st-navy);
	overflow: hidden;
	width: fit-content;
}

.charter-page .pax-counter__btn,
.charter-page .counter__btn {
	width: 48px;
	height: 52px;
	border: none;
	background: transparent;
	color: var(--st-gold);
	font-size: 20px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0;
}

.charter-page .pax-counter__btn:hover,
.charter-page .counter__btn:hover {
	background: rgba(201, 168, 76, 0.1);
	border-color: transparent;
	color: var(--st-gold);
}

.charter-page .pax-counter__value,
.charter-page .counter__value {
	min-width: 56px;
	text-align: center;
	font-family: var(--st-font-body);
	font-size: 18px;
	font-weight: 700;
	color: var(--st-white);
	border-left: 1px solid var(--st-navy-mid);
	border-right: 1px solid var(--st-navy-mid);
	padding: 0 8px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ── JET CATEGORY CHIPS ───────────────────────────────────────────────────── */
.charter-page .category-chips,
.charter-page .category-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px;
}

.charter-page .category-chip,
.charter-page .category-pill {
	padding: 9px 18px;
	border-radius: 24px;
	border: 1px solid var(--st-navy-mid);
	background: transparent;
	color: var(--st-white-60);
	font-family: var(--st-font-body);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	letter-spacing: 0.5px;
}

.charter-page .category-chip.is-active,
.charter-page .category-chip:hover,
.charter-page .category-pill.is-active,
.charter-page .category-pill:hover {
	border-color: var(--st-gold);
	color: var(--st-gold);
	background: rgba(201, 168, 76, 0.08);
}

.charter-page .category-chip.is-active,
.charter-page .category-pill.is-active {
	background: rgba(201, 168, 76, 0.14);
	box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.3);
}

/* ── EXTRAS CHECKBOXES ────────────────────────────────────────────────────── */
.charter-page .extras-grid,
.charter-page .extra-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 8px;
}

.charter-page .extras-chip,
.charter-page .extra-chip {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 16px;
	border-radius: 8px;
	border: 1px solid var(--st-navy-mid);
	background: var(--st-navy);
	color: var(--st-white-60);
	font-size: 13px;
	cursor: pointer;
	transition: all 0.2s;
	user-select: none;
}

.charter-page .extras-chip input,
.charter-page .extra-chip input {
	width: auto;
	min-height: auto;
	accent-color: var(--st-gold);
}

.charter-page .extras-chip:has(input:checked),
.charter-page .extra-chip:has(input:checked) {
	border-color: var(--st-gold);
	color: var(--st-white);
	background: rgba(201, 168, 76, 0.08);
}

/* ── QUOTE OPTIONS CARDS ──────────────────────────────────────────────────── */
.charter-page .quote-option,
.charter-page .quote-card:not(.quote-card--premium) {
	border: 1px solid var(--st-navy-mid);
	border-radius: 12px;
	padding: 20px 24px;
	cursor: pointer;
	transition: all 0.22s;
	background: var(--st-navy);
	margin-bottom: 10px;
	position: relative;
	overflow: hidden;
}

.charter-page .quote-option::before,
.charter-page .quote-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: transparent;
	transition: background 0.2s;
}

.charter-page .quote-option:hover,
.charter-page .quote-card:hover {
	border-color: rgba(201, 168, 76, 0.4);
}

.charter-page .quote-option.is-selected,
.charter-page .quote-card.is-selected {
	border-color: var(--st-gold);
	background: rgba(201, 168, 76, 0.06);
}

.charter-page .quote-option.is-selected::before,
.charter-page .quote-card.is-selected::before {
	background: var(--st-gold);
}

.charter-page .quote-option__name,
.charter-page .quote-card__title {
	font-family: var(--st-font-display);
	font-size: 20px;
	font-weight: 700;
	color: var(--st-white);
	margin-bottom: 4px;
}

.charter-page .quote-option__meta {
	font-size: 12px;
	color: var(--st-white-60);
	margin-bottom: 12px;
}

.charter-page .quote-option__price,
.charter-page .quote-card__price,
.charter-page .quote-card__estimate {
	font-family: var(--st-font-body);
	font-size: 22px;
	font-weight: 800;
	color: var(--st-gold);
}

.charter-page .quote-card__select {
	display: none;
}

/* ── SECTION DIVIDER ──────────────────────────────────────────────────────── */
.charter-page .booking-section-title {
	font-family: var(--st-font-body);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2.5px;
	color: var(--st-gold);
	text-transform: uppercase;
	margin: 28px 0 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.charter-page .booking-section-title::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--st-navy-mid);
}

/* ── STEP PROGRESS ────────────────────────────────────────────────────────── */
.charter-page .booking-progress {
	display: flex;
	align-items: center;
	margin-bottom: 32px;
	flex-wrap: wrap;
	gap: 8px 0;
}

.charter-page .booking-progress__step span:last-child {
	white-space: nowrap;
}

@media (max-width: 640px) {
	.charter-page .booking-progress__step span:last-child {
		display: none;
	}

	.charter-page .booking-progress__line {
		min-width: 12px;
	}
}

.charter-page .booking-progress__step {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 600;
	color: var(--st-white-60);
	letter-spacing: 0.5px;
}

.charter-page .booking-progress__step.is-active {
	color: var(--st-white);
}

.charter-page .booking-progress__step.is-done {
	color: var(--st-gold);
}

.charter-page .booking-progress__dot {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1.5px solid var(--st-navy-mid);
	background: var(--st-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	flex-shrink: 0;
	transition: all 0.3s;
}

.charter-page .booking-progress__step.is-active .booking-progress__dot {
	border-color: var(--st-gold);
	background: rgba(201, 168, 76, 0.12);
	color: var(--st-gold);
}

.charter-page .booking-progress__step.is-done .booking-progress__dot {
	border-color: var(--st-gold);
	background: var(--st-gold);
	color: var(--st-navy);
}

.charter-page .booking-progress__line {
	flex: 1;
	height: 1px;
	background: var(--st-navy-mid);
	margin: 0 8px;
}

.charter-page .booking-progress__line.is-done {
	background: var(--st-gold);
}

/* ── AIRPORT RESULTS ──────────────────────────────────────────────────────── */
.charter-page .field--autocomplete {
	position: relative;
}

.charter-page .airport-results {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	background: var(--st-navy-light);
	border: 1px solid var(--st-navy-mid);
	border-radius: 8px;
	z-index: 100;
	max-height: 220px;
	overflow-y: auto;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.charter-page .airport-result-item,
.charter-page .airport-result {
	width: 100%;
	padding: 12px 16px;
	cursor: pointer;
	transition: background 0.15s;
	border-bottom: 1px solid rgba(26, 48, 84, 0.5);
	display: flex;
	align-items: center;
	gap: 12px;
	border: none;
	background: none;
	text-align: left;
	color: inherit;
	font: inherit;
}

.charter-page .airport-result-item:last-child,
.charter-page .airport-result:last-child {
	border-bottom: none;
}

.charter-page .airport-result-item:hover,
.charter-page .airport-result:hover {
	background: rgba(201, 168, 76, 0.08);
}

.charter-page .airport-result-item__code,
.charter-page .airport-result__code {
	font-family: monospace;
	font-size: 13px;
	font-weight: 700;
	color: var(--st-gold);
	min-width: 36px;
}

.charter-page .airport-result-item__name,
.charter-page .airport-result__name {
	font-size: 13px;
	color: var(--st-white);
	flex: 1;
}

.charter-page .airport-result-item__city,
.charter-page .airport-result__city {
	font-size: 11px;
	color: var(--st-white-60);
}

.charter-page .airport-result__details {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
}

/* ── BOOKING CONFIRMATION ─────────────────────────────────────────────────── */
.charter-page .booking-confirmation {
	text-align: center;
	padding: 48px 32px;
	max-width: 560px;
	margin: var(--st-space-3xl) auto;
	animation: charterFadeUp 0.6s both;
}

.charter-page .booking-confirmation__icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(201, 168, 76, 0.12);
	border: 2px solid var(--st-gold);
	margin: 0 auto 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.charter-page .booking-confirmation__icon::after {
	content: '';
	display: block;
	width: 28px;
	height: 16px;
	border-left: 3px solid var(--st-gold);
	border-bottom: 3px solid var(--st-gold);
	transform: rotate(-45deg) translate(3px, -3px);
	animation: charterCheckmark 0.4s 0.3s both;
}

@keyframes charterCheckmark {
	from { width: 0; height: 0; }
	to   { width: 28px; height: 16px; }
}

.charter-page .booking-ref-card {
	background: var(--st-navy);
	border: 1px solid rgba(201, 168, 76, 0.2);
	border-radius: 12px;
	padding: 20px 24px;
	margin: 24px auto;
	max-width: 360px;
}

.charter-page .booking-ref-card__label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--st-white-60);
	text-transform: uppercase;
	margin-bottom: 6px;
}

.charter-page .booking-ref-card__value {
	font-family: monospace;
	font-size: 22px;
	font-weight: 700;
	color: var(--st-gold);
	letter-spacing: 2px;
}

/* ── TRUST BAR ────────────────────────────────────────────────────────────── */
.charter-page .trust-bar {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 32px;
	padding: 24px 0 0;
	border-top: 1px solid var(--st-navy-mid);
	margin-top: 32px;
}

.charter-page .trust-bar__item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	color: var(--st-white-60);
	font-weight: 500;
}

.charter-page .trust-bar__icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(201, 168, 76, 0.1);
	border: 1px solid rgba(201, 168, 76, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 700;
	color: var(--st-gold);
	flex-shrink: 0;
	letter-spacing: 0.02em;
}

/* ── LOADING SPINNER ──────────────────────────────────────────────────────── */
.charter-page .quote-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 32px;
	color: var(--st-white-60);
	font-size: 13px;
	text-align: center;
}

.charter-page .quote-loading::before {
	content: '';
	width: 20px;
	height: 20px;
	border: 2px solid rgba(201, 168, 76, 0.2);
	border-top-color: var(--st-gold);
	border-radius: 50%;
	animation: charterSpin 0.8s linear infinite;
	flex-shrink: 0;
}

@keyframes charterSpin {
	to { transform: rotate(360deg); }
}

/* ── FIELD ANIMATE IN ─────────────────────────────────────────────────────── */
.charter-page .booking-form > .field {
	position: relative;
	margin-bottom: 20px;
	animation: charterFadeUp 0.4s both;
}

.charter-page .booking-form > .field:nth-child(2) { animation-delay: 0.05s; }
.charter-page .booking-form > .field:nth-child(3) { animation-delay: 0.10s; }
.charter-page .booking-form > .field:nth-child(4) { animation-delay: 0.15s; }
.charter-page .booking-form > .field:nth-child(5) { animation-delay: 0.20s; }
.charter-page .booking-form > .field:nth-child(6) { animation-delay: 0.25s; }

/* ── DATE INPUT ───────────────────────────────────────────────────────────── */
.charter-page input[type="date"].field__input {
	color-scheme: dark;
}

/* ── MULTI-LEG ────────────────────────────────────────────────────────────── */
.charter-page .leg-card {
	background: var(--st-navy);
	border: 1px solid var(--st-navy-mid);
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 12px;
	position: relative;
	animation: charterFadeUp 0.3s both;
}

.charter-page .leg-card__header,
.charter-page .leg-card .row.row--between {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.charter-page .leg-card__label,
.charter-page .leg-card__number {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--st-gold);
	text-transform: uppercase;
}

.charter-page .leg-remove-btn,
.charter-page .leg-remove {
	min-width: 28px;
	height: 28px;
	padding: 0 8px;
	border: 1px solid var(--st-navy-mid);
	border-radius: 50%;
	background: transparent;
	color: var(--st-white-60);
	cursor: pointer;
	font-size: 11px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.charter-page .leg-remove-btn:hover,
.charter-page .leg-remove:hover {
	border-color: var(--st-red);
	color: var(--st-red);
}

.charter-page .add-leg-btn,
.charter-page #charter-add-leg {
	width: 100%;
	padding: 13px;
	border: 1px dashed rgba(201, 168, 76, 0.3);
	border-radius: 8px;
	background: transparent;
	color: var(--st-gold);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.2s;
	text-transform: uppercase;
}

.charter-page .add-leg-btn:hover,
.charter-page #charter-add-leg:hover {
	background: rgba(201, 168, 76, 0.06);
	border-color: var(--st-gold);
}

@media (prefers-reduced-motion: reduce) {
	.charter-hero__bg img,
	.charter-hero__bg .skytrade-img,
	.charter-hero__eyebrow,
	.charter-hero__headline,
	.charter-hero__sub,
	.charter-hero__trust,
	.charter-page .booking-glass-card,
	.charter-page .booking-form > .field,
	.charter-page .leg-card,
	.charter-page .booking-confirmation {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.charter-hero__bg img,
	.charter-hero__bg .skytrade-img {
		transform: scale(1.04);
	}

	.charter-page .booking-confirmation__icon::after {
		animation: none;
	}

	.helicopter-page .map-pin,
	.helicopter-page .map-mode-dot,
	.map-mode-indicator__arrow {
		animation: none;
	}
}

/* ── HELICOPTER PAGE ──────────────────────────────────────────────────────── */
.helicopter-page .map-picker {
	height: 400px;
	border-radius: 12px;
	border: 1px solid rgba(201, 168, 76, 0.2);
	overflow: hidden;
	margin-bottom: 20px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.helicopter-page .map-picker-hint {
	font-size: 12px;
	color: var(--st-white-60);
	margin-bottom: 12px;
}

.map-mode-indicator {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin-bottom: 16px;
	padding: 10px 16px;
	background: rgba(10, 22, 40, 0.6);
	border: 1px solid var(--st-navy-mid);
	border-radius: 10px;
}

.map-mode-indicator__item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 8px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: var(--st-white-60);
	border: 1px solid transparent;
	transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.map-mode-indicator__item.is-active {
	color: var(--st-white);
	border-color: rgba(201, 168, 76, 0.35);
	background: rgba(201, 168, 76, 0.08);
}

.map-mode-indicator__item.is-done {
	color: var(--st-gold);
}

.map-mode-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}

.map-mode-dot--pickup {
	background: #38A169;
}

.map-mode-dot--dropoff {
	background: var(--st-gold);
}

.map-mode-indicator__item.is-active .map-mode-dot {
	animation: mapModePulse 1.4s ease-in-out infinite;
}

.map-mode-indicator__arrow {
	font-size: 14px;
	color: var(--st-white-60);
	animation: mapModeArrow 1.4s ease-in-out infinite;
}

.map-pin-marker {
	background: none;
	border: none;
}

.map-pin {
	display: block;
	width: 22px;
	height: 22px;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	position: relative;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
	animation: mapPinDrop 0.45s ease-out;
}

.map-pin--pickup {
	background: #38A169;
	border: 2px solid #fff;
}

.map-pin--dropoff {
	background: var(--st-gold);
	border: 2px solid var(--st-navy);
}

.map-pin::after {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.helicopter-page select.field__input {
	appearance: none;
	background-color: var(--st-navy);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A84C' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 40px;
	color: var(--st-white);
	border: 1px solid var(--st-navy-mid);
	cursor: pointer;
}

.helicopter-page select.field__input:focus {
	border-color: var(--st-gold);
	box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.2);
	outline: none;
}

.helicopter-page select.field__input option {
	background: var(--st-navy);
	color: var(--st-white);
}

@keyframes mapModePulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.35); opacity: 0.75; }
}

@keyframes mapModeArrow {
	0%, 100% { transform: translateX(0); opacity: 0.5; }
	50% { transform: translateX(4px); opacity: 1; }
}

@keyframes mapPinDrop {
	from { transform: rotate(-45deg) translateY(-12px); opacity: 0; }
	to { transform: rotate(-45deg) translateY(0); opacity: 1; }
}
