/* ============================================
   BOOK PAGE — Nordlys booking page
   Wrapping around Amelia widget
   ============================================ */

.book-page {
	min-height: 100vh;
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
	padding: 0 var(--gutter) clamp(2rem, 5vw, 3rem);
	max-width: 1400px;
	margin: 0 auto;
}

.trust-bar-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
	padding: 1.5rem;
	background: rgba(10, 19, 48, 0.4);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--navy-line);
	border-radius: 12px;
	position: relative;
	overflow: hidden;
}

.trust-bar-inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--aurora-gradient);
	opacity: 0.4;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.85rem;
	color: var(--text-soft);
	line-height: 1.3;
}

.trust-item svg {
	flex-shrink: 0;
	color: var(--aurora-1);
	filter: drop-shadow(0 0 4px rgba(0, 255, 163, 0.3));
}

.trust-item strong {
	color: var(--text);
	font-weight: 500;
	font-family: 'Inter Tight', sans-serif;
}

/* ============================================
   AMELIA WIDGET WRAPPER
   Gives the widget breathing room
   ============================================ */

.book-widget-section {
	padding: 0 var(--gutter) clamp(3rem, 8vw, 5rem);
	max-width: 1400px;
	margin: 0 auto;
}

.book-widget-wrapper {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}

/* Subtle aurora glow behind the widget */
.book-widget-wrapper::before {
	content: '';
	position: absolute;
	inset: -40px;
	background:
		radial-gradient(ellipse at top left, rgba(77, 208, 255, 0.05), transparent 50%),
		radial-gradient(ellipse at bottom right, rgba(181, 102, 255, 0.05), transparent 50%);
	pointer-events: none;
	z-index: -1;
}

/* Override Amelia's default max-width to fill our container */
.book-widget-wrapper #amelia-container {
	max-width: 100% !important;
	margin: 0 !important;
}

.book-widget-wrapper .am-fs__wrapper {
	max-width: 100% !important;
}

/* ============================================
   HELP SECTION
   ============================================ */

.book-help {
	padding: 0 var(--gutter) clamp(3rem, 6vw, 4rem);
	max-width: 1400px;
	margin: 0 auto;
}

.book-help-inner {
	padding: 2.5rem;
	border: 1px solid var(--navy-line);
	border-radius: 12px;
	background:
		radial-gradient(ellipse at top right, rgba(0, 255, 163, 0.06), transparent 60%),
		rgba(10, 19, 48, 0.3);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.book-help-text h3 {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(1.5rem, 4vw, 1.85rem);
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 0.5rem 0 0.75rem;
	color: var(--text);
}

.book-help-text p {
	color: var(--text-soft);
	max-width: 55ch;
	line-height: 1.5;
}

.book-help-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* ============================================
   BOTTOM CTA — Tours Today
   ============================================ */

.book-cta-today {
	padding: 0 var(--gutter) var(--section);
	max-width: 1400px;
	margin: 0 auto;
}

.book-cta-today-inner {
	padding: 2rem 2.5rem;
	border: 1px solid var(--navy-line);
	border-radius: 12px;
	background:
		radial-gradient(ellipse at top left, rgba(77, 208, 255, 0.08), transparent 60%),
		rgba(10, 19, 48, 0.3);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	position: relative;
	overflow: hidden;
}

.book-cta-today-inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 2px;
	background: var(--aurora-gradient);
}

.book-cta-today-inner h3 {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.5rem;
	letter-spacing: -0.01em;
	margin: 0.5rem 0;
	color: var(--text);
}

.book-cta-today-inner p {
	color: var(--text-soft);
	font-size: 0.95rem;
	max-width: 40ch;
}

/* ============================================
   TABLET
   ============================================ */

@media (min-width: 640px) {
	.trust-bar-inner {
		grid-template-columns: 1fr 1fr;
		gap: 1rem 2rem;
		padding: 1.75rem 2rem;
	}
}

/* ============================================
   DESKTOP
   ============================================ */

@media (min-width: 900px) {
	.trust-bar-inner {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.5rem;
	}

	.trust-item {
		font-size: 0.85rem;
	}

	.book-help-inner {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 3rem;
	}

	.book-help-actions {
		flex-shrink: 0;
	}

	.book-cta-today-inner {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 2.5rem 3rem;
	}

	.book-cta-today-inner > a {
		flex-shrink: 0;
	}
}

@media (min-width: 1100px) {
	.trust-item strong {
		display: inline;
	}
}
