/* ==========================================================================
   SkyTrade Aviation — Helicopter Premium Page
   Loaded on template-helicopter.php (after charter.css + booking.css).
   ========================================================================== */

.heli-page .booking-glass-card {
	margin-top: 0;
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.heli-hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--st-navy);
}

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

.heli-hero__bg img,
.heli-hero__bg .skytrade-img,
.heli-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
	animation: heliHeroZoom 14s ease-in-out infinite alternate;
}

.heli-hero__bg .skytrade-img-placeholder {
	width: 100%;
	height: 100%;
	min-height: 88vh;
	border-radius: 0;
	border: none;
	opacity: 0.35;
}

.heli-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(135deg, rgba(10, 22, 40, 0.7) 0%, rgba(10, 22, 40, 0.95) 100%);
}

.heli-hero__content {
	position: relative;
	z-index: 2;
	padding: 80px 0 100px;
}

.heli-hero__headline {
	font-family: var(--st-font-display);
	font-size: clamp(44px, 6vw, 80px);
	font-weight: 700;
	color: var(--st-white);
	line-height: 1.05;
	margin: 12px 0 20px;
}

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

.heli-hero__sub {
	color: var(--st-white-60);
	font-size: 17px;
	line-height: 1.7;
	max-width: 560px;
	margin-bottom: 28px;
}

.heli-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 36px;
}

.heli-trust-pill {
	padding: 7px 14px;
	border-radius: 24px;
	border: 1px solid rgba(201, 168, 76, 0.25);
	background: rgba(201, 168, 76, 0.07);
	color: var(--st-white-60);
	font-size: 12px;
	font-weight: 500;
}

.heli-hero__cta {
	display: inline-flex;
}

.heli-hero__scroll-hint {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.heli-hero__scroll-hint span {
	display: block;
	width: 1px;
	height: 60px;
	background: linear-gradient(to bottom, transparent, var(--st-gold));
	margin: 0 auto;
	animation: heliScrollPulse 2s ease-in-out infinite;
}

@keyframes heliHeroZoom {
	from { transform: scale(1.02); }
	to   { transform: scale(1.1); }
}

@keyframes heliScrollPulse {
	0%, 100% { opacity: 0; height: 30px; }
	50%      { opacity: 1; height: 60px; }
}

/* ── STATS BAR ────────────────────────────────────────────────────────────── */
.heli-stats-bar {
	background: var(--st-navy-light);
	border-top: 1px solid var(--st-navy-mid);
	border-bottom: 1px solid var(--st-navy-mid);
}

.heli-stats-bar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	padding: 24px 0;
}

.heli-stat {
	text-align: center;
	padding: 12px 40px;
}

.heli-stat__num {
	display: block;
	font-family: var(--st-font-display);
	font-size: 32px;
	font-weight: 700;
	color: var(--st-gold);
}

.heli-stat__label {
	font-size: 11px;
	color: var(--st-white-60);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-top: 4px;
}

.heli-stat-divider {
	width: 1px;
	height: 48px;
	background: var(--st-navy-mid);
}

/* ── BOOKING GRID ─────────────────────────────────────────────────────────── */
.heli-booking-section {
	padding: 64px 0 80px;
}

.heli-booking-grid {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 32px;
	align-items: start;
}

/* ── MAP STACK ────────────────────────────────────────────────────────────── */
.heli-map-stack {
	margin-bottom: 20px;
}

.map-mode-bar {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 12px 16px;
	background: var(--st-navy);
	border: 1px solid var(--st-navy-mid);
	border-radius: 8px 8px 0 0;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: var(--st-white-60);
	flex-wrap: wrap;
}

.map-mode-bar__item {
	display: flex;
	align-items: center;
	gap: 8px;
	transition: color 0.2s;
}

.map-mode-bar__item.is-active {
	color: var(--st-white);
}

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

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

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

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

.map-mode-bar__item.is-active .map-mode-bar__dot {
	animation: heliMapDotPulse 1.4s ease-in-out infinite;
}

.map-mode-bar__arrow {
	color: var(--st-navy-mid);
	font-size: 14px;
	font-weight: 700;
	animation: heliMapArrow 1.4s ease-in-out infinite;
}

.heli-page .heli-map-stack .map-picker {
	height: 420px;
	border: 1px solid var(--st-navy-mid);
	border-top: none;
	border-radius: 0;
	overflow: hidden;
	margin-bottom: 0;
	box-shadow: none;
}

.heli-coords-row {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--st-navy);
	border: 1px solid var(--st-navy-mid);
	border-top: none;
	border-radius: 0;
	padding: 14px 16px;
}

.heli-distance-estimate {
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	color: var(--st-gold);
	letter-spacing: 1px;
	padding: 8px 16px;
	background: rgba(201, 168, 76, 0.08);
	border: 1px solid var(--st-navy-mid);
	border-top: 1px solid rgba(201, 168, 76, 0.15);
	border-radius: 0 0 12px 12px;
}

.heli-coord-item {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
	min-width: 0;
}

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

.heli-coord-dot--pickup {
	background: #38A169;
}

.heli-coord-dot--dropoff {
	background: var(--st-gold);
}

.heli-coord-label {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--st-white-60);
	margin-bottom: 2px;
}

.heli-coord-val {
	font-size: 12px;
	color: var(--st-white);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.heli-coord-divider {
	color: var(--st-gold);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	flex-shrink: 0;
}

.heli-map-actions {
	display: flex;
	gap: 10px;
	margin-top: 12px;
	flex-wrap: wrap;
}

.heli-map-actions .btn-ghost-inline {
	width: auto;
	padding: 8px 16px;
	font-size: 11px;
}

/* ── FORM ROWS ────────────────────────────────────────────────────────────── */
.heli-pax-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 20px;
}

.heli-date-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 16px;
	align-items: end;
	margin-top: 16px;
}

.heli-return-toggle {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.heli-page .field__hint {
	font-size: 11px;
	color: var(--st-white-60);
	margin-top: 6px;
}

/* ── PASSPORT ACCORDION ───────────────────────────────────────────────────── */
.passport-accordion {
	border: 1px solid var(--st-navy-mid);
	border-radius: 8px;
	margin: 16px 0;
	overflow: hidden;
}

.passport-accordion__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
	color: var(--st-white);
	background: var(--st-navy);
	list-style: none;
	user-select: none;
}

.passport-accordion__toggle::-webkit-details-marker {
	display: none;
}

.passport-accordion__badge {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 1px;
	color: var(--st-gold);
	border: 1px solid rgba(201, 168, 76, 0.3);
	padding: 2px 8px;
	border-radius: 20px;
}

.passport-accordion__body {
	padding: 16px;
	border-top: 1px solid var(--st-navy-mid);
	background: rgba(10, 22, 40, 0.5);
}

.passport-accordion__body .field:last-child {
	margin-bottom: 0;
}

/* ── SIDEBAR ──────────────────────────────────────────────────────────────── */
.heli-info-card {
	background: var(--st-navy-light);
	border: 1px solid var(--st-navy-mid);
	border-radius: 12px;
	padding: 24px;
}

.heli-info-card + .heli-info-card {
	margin-top: 20px;
}

.heli-info-card--gold {
	border-color: rgba(201, 168, 76, 0.2);
}

.heli-steps {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 16px;
}

.heli-step {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.heli-step__num {
	font-family: var(--st-font-display);
	font-size: 28px;
	font-weight: 700;
	color: rgba(201, 168, 76, 0.25);
	line-height: 1;
	flex-shrink: 0;
	min-width: 36px;
}

.heli-step__body h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--st-white);
	margin-bottom: 4px;
}

.heli-step__body p {
	font-size: 12px;
	color: var(--st-white-60);
	line-height: 1.6;
}

.heli-includes {
	list-style: none;
	padding: 0;
	margin: 16px 0 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.heli-includes li {
	font-size: 13px;
	color: var(--st-white-60);
	display: flex;
	align-items: flex-start;
	gap: 10px;
	line-height: 1.5;
}

.heli-includes li::before {
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--st-gold);
	flex-shrink: 0;
	margin-top: 7px;
}

.heli-price-note {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid var(--st-navy-mid);
}

.heli-price-note:last-child {
	border-bottom: none;
}

.heli-price-note__label {
	font-size: 12px;
	color: var(--st-white-60);
}

.heli-price-note__value {
	font-size: 13px;
	font-weight: 700;
	color: var(--st-gold);
}

.heli-info-card__intro {
	color: var(--st-white-60);
	font-size: 13px;
	line-height: 1.7;
	margin-bottom: 16px;
}

/* ── SUMMARY + BUTTONS ────────────────────────────────────────────────────── */
.heli-page .booking-summary-card {
	background: var(--st-navy);
	border: 1px solid rgba(201, 168, 76, 0.2);
	border-radius: 10px;
	padding: 16px 20px;
	margin: 20px 0;
	font-size: 13px;
	color: var(--st-white-60);
	line-height: 1.8;
}

.heli-page .booking-summary-card strong {
	color: var(--st-gold);
}

.btn-get-quote {
	width: 100%;
	padding: 16px 24px;
	margin-top: 24px;
	border: none;
	border-radius: 8px;
	background: var(--st-gold);
	color: var(--st-navy);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}

.btn-get-quote:hover {
	background: #d4b85a;
	transform: translateY(-1px);
}

.btn-get-quote:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

.btn-ghost {
	width: 100%;
	padding: 13px;
	border: 1px solid var(--st-navy-mid);
	border-radius: 8px;
	background: transparent;
	color: var(--st-white-60);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	cursor: pointer;
	display: block;
	text-align: center;
	transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
	border-color: var(--st-gold);
	color: var(--st-gold);
}

.btn-ghost-inline {
	padding: 8px 16px;
	border: 1px solid var(--st-navy-mid);
	border-radius: 8px;
	background: transparent;
	color: var(--st-white-60);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s;
}

.btn-ghost-inline:hover {
	border-color: var(--st-gold);
	color: var(--st-gold);
}

.eyebrow-gold {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 3px;
	color: var(--st-gold);
	text-transform: uppercase;
	margin-bottom: 16px;
	display: block;
}

.heli-fade-up {
	opacity: 0;
	animation: heliFadeUp 0.6s both;
}

.heli-fade-up--1 { animation-delay: 0.1s; }
.heli-fade-up--2 { animation-delay: 0.25s; }
.heli-fade-up--3 { animation-delay: 0.4s; }
.heli-fade-up--4 { animation-delay: 0.55s; }
.heli-fade-up--5 { animation-delay: 0.7s; }

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

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

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

/* ── USE CASES ────────────────────────────────────────────────────────────── */
.heli-uses {
	background: var(--st-navy-light);
}

.heli-use-card {
	background: var(--st-navy);
	border: 1px solid var(--st-navy-mid);
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.25s, box-shadow 0.25s;
}

.heli-use-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.heli-use-card__img,
.heli-use-card .skytrade-img,
.heli-use-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}

.heli-use-card .skytrade-img-placeholder {
	height: 200px;
	border-radius: 0;
}

.heli-use-card__body {
	padding: 20px;
}

.heli-use-card__body h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--st-white);
	margin-bottom: 6px;
}

.heli-use-card__body p {
	font-size: 13px;
	color: var(--st-white-60);
	line-height: 1.6;
}

/* ── CTA BAND ─────────────────────────────────────────────────────────────── */
.heli-cta-band {
	padding: 64px 0;
	background: var(--st-navy);
	border-top: 1px solid var(--st-navy-mid);
}

.heli-cta-band__inner {
	text-align: center;
}

.heli-cta-band__title {
	font-family: var(--st-font-display);
	font-size: clamp(28px, 4vw, 48px);
	margin-bottom: 16px;
	color: var(--st-white);
}

.heli-cta-band__sub {
	max-width: 480px;
	margin: 0 auto 28px;
}

.heli-page .heli-booking-form-col .trust-bar {
	margin-top: 32px;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.heli-booking-grid {
		grid-template-columns: 1fr;
	}

	.heli-booking-info-col {
		order: -1;
	}
}

@media (max-width: 640px) {
	.heli-stat-divider {
		display: none;
	}

	.heli-stat {
		padding: 12px 20px;
	}

	.heli-pax-row {
		grid-template-columns: 1fr;
	}

	.heli-date-row {
		grid-template-columns: 1fr;
	}

	.heli-coords-row {
		flex-direction: column;
		align-items: stretch;
	}

	.heli-coord-divider {
		text-align: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.heli-hero__bg img,
	.heli-hero__bg .skytrade-img,
	.heli-fade-up,
	.heli-hero__scroll-hint span,
	.map-mode-bar__item.is-active .map-mode-bar__dot,
	.map-mode-bar__arrow,
	.heli-use-card {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.heli-hero__bg img,
	.heli-hero__bg .skytrade-img {
		transform: scale(1.02);
	}
}
