/* ─── LANGUAGE VISIBILITY ─────────────────────────────────── */
.en-only {
	display: none;
}
[data-lang="en"] .en-only {
	display: revert;
}
[data-lang="en"] .fr-only {
	display: none;
}

/* ─── TOKENS ──────────────────────────────────────────────── */
:root {
	--dark: #1c1c1c;
	--dark-2: #242424;
	--dark-3: #2e2e2e;
	--dark-4: #151515;
	--gold: #ffc300;
	--gold-dark: #d7a400;
	--gold-dim: rgba(255, 195, 0, 0.15);
	--gold-border: rgba(255, 195, 0, 0.35);
	--text-muted: #9a9a9a;
	--text-light: #e0e0e0;
	--white: #ffffff;
	--radius: 14px;
	--radius-sm: 8px;
	--transition: 0.25s ease;
	--red: #ff4d4d;
	--red-deep: #c0392b;
	--red-glow: rgba(255, 77, 77, 0.12);
	--red-border: rgba(255, 77, 77, 0.4);
	--nav-h: 64px; /* navbar height */
	--nav-offset-top: 18px; /* gap from viewport top */
	--nav-offset-side: 16px; /* mobile: small gap */
	--nav-radius: 16px; /* pill corner radius */
	--nav-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── BASE ────────────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--dark);
	color: var(--text-light);
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

a {
	text-decoration: none;
}

/* Inline code chips — inherit surrounding text color so contrast always
   matches whatever passes around it, instead of Bootstrap's default pink */
code {
	color: inherit;
	background: rgba(255, 255, 255, 0.08);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 0.9em;
}
[data-theme="light"] code {
	background: rgba(0, 0, 0, 0.06);
}

/* Links inside legal-page prose need a non-color cue (underline) since
   gold-on-muted-grey doesn't hit the 3:1 in-text-link contrast ratio */
.legal-section a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* ── Outer header wrapper ──────────────────────────────────────
Position: fixed so it floats while scrolling.
Width is reduced by the side offsets to create the
"detached" look (not full-bleed).
z-index: 100 keeps it above hero overlays (z-index 3-4).         */
#siteHeader {
	position: fixed;
	top: var(--nav-offset-top);
	left: 50%;
	transform: translateX(-50%);
	/* mobile: almost full width */
	width: calc(100% - 32px);
	max-width: 1280px;
	z-index: 100;
	pointer-events: none;
}

/* wider gap on desktop */
@media (min-width: 992px) {
	#siteHeader {
		width: calc(100% - 240px);
	}
}

/* ── Inner <nav> — the visible pill ───────────────────────────
Starts fully transparent.
On scroll (.scrolled class added by JS) → frosted glass.         */
/* ── AT-TOP: completely hidden ──────────────────────────────── */
#siteNav {
	pointer-events: none;
	height: var(--nav-h);
	padding: 0 20px;

	display: flex;
	align-items: center;
	gap: 12px;

	border-radius: var(--nav-radius);
	background: transparent;
	border: 1px solid transparent;
	box-shadow: none;

	/* hidden state — translated up + invisible */
	opacity: 0;
	transform: translateY(-20px);

	transition:
		opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
		background 0.45s cubic-bezier(0.4, 0, 0.2, 1),
		border-color 0.45s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
		backdrop-filter 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── SCROLLED: slides down + frosted glass appears ───────────── */
#siteNav.scrolled {
	pointer-events: all; /* re-enable clicks once visible    */

	opacity: 1;
	transform: translateY(6px); /* the elegant detach drop          */

	background:
		radial-gradient(
			ellipse 70% 50% at 50% 100%,
			rgba(255, 195, 0, 0.05),
			transparent
		),
		linear-gradient(180deg, #111113 0%, #0d0d0f 60%, #080809 100%);
	backdrop-filter: blur(18px) saturate(160%);
	-webkit-backdrop-filter: blur(18px) saturate(160%);

	border-color: rgba(255, 255, 255, 0.08);
	border-width: 0.5px;

	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.55),
		0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

/* ═══════════════════════════════════════════════════════════════
LOGO
═══════════════════════════════════════════════════════════════ */
.nav-logo {
	display: flex;
	align-items: center;
	gap: 9px;
	text-decoration: none;
	flex-shrink: 0;
	color: var(--white);
	transition: opacity var(--transition);
}

.nav-logo:hover {
	opacity: 0.85;
}

/* Round gold icon badge */
.nav-logo-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--dark);
	display: grid;
	place-items: center;
	font-size: 0.88rem;
	flex-shrink: 0;
}

.nav-logo-text {
	font-family: "Poppins", sans-serif;
	font-size: 0.92rem;
	font-weight: 300;
	letter-spacing: 0.04em;
	color: var(--white);
	white-space: nowrap;
}

.nav-logo-text strong {
	font-weight: 700;
	color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
CENTER NAV LINKS (desktop only)
═══════════════════════════════════════════════════════════════ */
.nav-links {
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
	margin: 0 auto; /* pushes CTAs to the right              */
	padding: 0;
	flex-shrink: 1;
	min-width: 0;
}

.nav-link {
	display: inline-block;
	padding: 7px 11px;
	border-radius: 8px;
	font-size: 0.8rem;
	font-weight: 400;
	letter-spacing: 0.02em;
	color: rgba(224, 224, 224, 0.8); /* slightly muted by default   */
	text-decoration: none;
	white-space: nowrap;
	transition:
		color var(--transition),
		background var(--transition);
}

.nav-link:hover {
	color: var(--white);
	background: rgba(255, 255, 255, 0.07);
}

/* Active link — gold text + gradient underline, no background */
.nav-link.active {
	color: var(--gold);
	background: transparent;
	position: relative;
}

/* The .hero-line style used as an underline indicator */
.nav-link.active::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 11px; /* aligns with text padding */
	width: 56px;
	height: 3px;
	background: linear-gradient(90deg, var(--gold), transparent);
	border-radius: 2px;
	pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
RIGHT CTA BUTTONS
═══════════════════════════════════════════════════════════════ */
.nav-ctas {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	margin-left: 4px;
}

/* Base button — shared geometry */
.nav-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	height: 36px;
	padding: 0 16px;
	border-radius: var(--radius-sm);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-decoration: none;
	white-space: nowrap;
	transition:
		background var(--transition),
		color var(--transition),
		border-color var(--transition),
		transform var(--transition),
		box-shadow var(--transition);
}

/* Ghost "Call us" — matches hero's .btn-call */
.nav-btn--ghost {
	background: transparent;
	color: var(--text-light);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-btn--ghost:hover {
	border-color: var(--gold);
	color: var(--gold);
	background: var(--gold-dim);
}

/* Primary "Book now" — matches hero's .btn-main */
.nav-btn--primary {
	position: relative;
	overflow: hidden;
	background: var(--gold);
	color: var(--dark);
	border: 1px solid transparent;
}

/* Shine sweep on hover — same effect as .btn-main */
.nav-btn--primary::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(
		120deg,
		transparent,
		rgba(255, 255, 255, 0.28),
		transparent
	);
	transition: left 0.45s ease;
	pointer-events: none;
}

.nav-btn--primary:hover {
	color: var(--dark);
	transform: translateY(-1px);
	box-shadow: 0 8px 28px rgba(255, 195, 0, 0.35);
}

.nav-btn--primary:hover::after {
	left: 150%;
}

/* Small arrow circle inside primary btn */
.nav-btn-arrow {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--dark);
	color: var(--gold);
	display: grid;
	place-items: center;
	font-size: 0.62rem;
	flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
HAMBURGER — mobile only
═══════════════════════════════════════════════════════════════ */
.nav-burger {
	display: none; /* hidden on desktop                     */
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	cursor: pointer;
	padding: 0;
	margin-left: auto; /* push to the far right                 */
	flex-shrink: 0;
	transition: background var(--transition);
}

.nav-burger:hover {
	background: var(--gold-dim);
}

.burger-bar {
	display: block;
	width: 18px;
	height: 1.5px;
	background: var(--white);
	border-radius: 2px;
	transition:
		transform var(--transition),
		opacity var(--transition);
}

/* Animate bars into × when menu is open */
.nav-burger[aria-expanded="true"] .burger-bar:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] .burger-bar:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}
.nav-burger[aria-expanded="true"] .burger-bar:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════════
MOBILE MENU — drawer that slides down below the pill
═══════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
	/* Hide desktop links & CTAs */
	.nav-links,
	.nav-ctas {
		display: none;
	}

	/* Show hamburger */
	.nav-burger {
		display: flex;
	}

	/* Mobile nav links — full-width drawer */
	.nav-links.open {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 2px;

		/* Sit below the pill, same width */
		position: absolute;
		top: calc(var(--nav-h) + 8px);
		left: 0;
		right: 0;

		padding: 12px;
		border-radius: 14px;
		background: radial-gradient(70% 50% at 50% 100%, rgba(255, 195, 0, 0.05), transparent), linear-gradient(rgb(17, 17, 19) 0%, rgb(13, 13, 15) 60%, rgb(8, 8, 9) 100%);
		backdrop-filter: blur(20px);
		border: 1px solid rgba(255, 195, 0, 0.15);
		box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);

		animation: menuSlideDown 0.28s ease forwards;
	}

	@keyframes menuSlideDown {
		from {
			opacity: 0;
			transform: translateY(-10px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	/* CTAs sit inside the drawer — not absolute */
	.nav-ctas.open {
		display: flex;
		flex-direction: column;
		gap: 6px;
		position: absolute;
		        top: calc(var(--nav-h) + 8px);
        left: 0;
        right: 0;
        margin-top: calc(9 * 46px + -2px);
		padding: .8rem;
		background: radial-gradient(70% 50% at 50% 100%, rgba(255, 195, 0, 0.05), transparent), linear-gradient(rgb(17, 17, 19) 0%, rgb(13, 13, 15) 60%, rgb(8, 8, 9) 100%);
		backdrop-filter: blur(20px);
		border: 1px solid rgba(255, 195, 0, 0.15);
		border-top: none;
		border-radius: 14px;
		box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
	}

	/* Wider touch targets on mobile */
	.nav-link {
		padding: 12px 14px;
		font-size: 0.88rem;
		border-radius: 8px;
	}

	.nav-btn {
		height: 44px;
		justify-content: center;
		font-size: 0.88rem;
		width: 100%;
	}
}

/* ═══════════════════════════════════════════════════════════════
BODY OFFSET
Push page content down so the hero isn't hidden under the
detached navbar (height + top offset + small breathing room).
═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════ */
/*  HERO SECTION                                                */
/* ═══════════════════════════════════════════════════════════ */
.hero {
	position: relative;
	min-height: 100dvh;
	padding: 18px 0 94px;
	display: flex;
	align-items: center;
	overflow: visible;
	background:
		linear-gradient(
			90deg,
			rgba(28, 28, 28, 0.98) 0%,
			rgba(28, 28, 28, 0.92) 36%,
			rgba(28, 28, 28, 0.68) 62%,
			rgba(28, 28, 28, 0.38) 100%
		),
		url("../img/louvre.jpg") center / cover no-repeat;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(
		-45deg,
		transparent,
		transparent 3px,
		rgba(255, 195, 0, 0.025) 3px,
		rgba(255, 195, 0, 0.025) 4px
	);
	pointer-events: none;
}

.hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 28%;
	background: linear-gradient(180deg, transparent, var(--dark));
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 3;
}

.hero-badge,
.section-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--gold-dim);
	border: 1px solid var(--gold-border);
	color: var(--gold);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 100px;
	margin-bottom: 22px;
}

.hero-title {
	font-family: "Poppins", serif;
	font-size: clamp(2.25rem, 10vw, 3.15rem);
	font-weight: 700;
	line-height: 1.02;
	color: var(--white);
	letter-spacing: -0.04em;
	margin-bottom: 16px;
}

.hero-title span {
	display: inline;
}

.hero-title strong {
	color: var(--gold);
	font-weight: 700;
}

.hero-text {
	max-width: 520px;
	font-size: 0.9rem;
	line-height: 1.75;
	color: var(--text-muted);
	margin-bottom: 18px;
}

.hero-line {
	width: 56px;
	height: 3px;
	background: linear-gradient(90deg, var(--gold), transparent);
	border-radius: 2px;
	margin: 20px 0;
}

.btn-main,
.btn-call {
	min-height: 46px;
	border-radius: var(--radius-sm);
	font-size: 0.82rem;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none;
	white-space: nowrap;
	transition:
		transform var(--transition),
		box-shadow var(--transition),
		background var(--transition),
		color var(--transition);
}

/* ── HERO "Réserver" btn — matches navbar primary ── */
.btn-main {
	position: relative;
	overflow: hidden;
	background: var(--gold);
	color: var(--dark);
	border: 1px solid transparent;
	border-radius: var(--radius-sm);
	min-height: 46px;
	padding: 0 20px;
	font-size: 0.82rem;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none;
	white-space: nowrap;
	transition:
		color 0.25s ease,
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

/* remove old ::before shine — replaced by ::after sweep below */
.btn-main::before {
	display: none;
}

/* same shine sweep as navbar primary btn */
.btn-main::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(
		120deg,
		transparent,
		rgba(255, 255, 255, 0.28),
		transparent
	);
	transition: left 0.45s ease;
	pointer-events: none;
}

.btn-main:hover {
	color: var(--dark);
	transform: translateY(-1px);
	box-shadow: 0 8px 28px rgba(255, 195, 0, 0.35);
}

.btn-main:hover::after {
	left: 150%;
}

/* text span — keep it above the shine pseudo-element */
.btn-main > span {
	position: relative;
	z-index: 1;
}

/* arrow circle — only the LAST span (icon wrapper) */
.btn-main > span:last-child {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--dark);
	color: var(--gold);
	display: grid;
	place-items: center;
	font-size: 0.62rem;
	flex-shrink: 0;
}

.btn-call {
	background: var(--dark-3);
	color: var(--text-light);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-call:hover {
	border-color: var(--gold);
	color: var(--gold);
	background: var(--gold-dim);
}

.hero-info-card {
	position: relative;
	z-index: 4;
	width: 100%;
	padding: 18px;
	border-radius: 20px;
	background: rgba(36, 36, 36, 0.88);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(18px);
	overflow: hidden;
}

.hero-info-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--gold), transparent 70%);
}

.hero-card-top span {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
}

.hero-card-icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--dark);
	display: grid;
	place-items: center;
	flex-shrink: 0;
}

.hero-info-card h2 {
	font-family: "Poppins", serif;
	font-size: 1.38rem;
	line-height: 1.1;
	color: var(--white);
	margin-bottom: 10px;
}

.hero-info-card p {
	display: none;
	font-size: 0.84rem;
	line-height: 1.6;
	color: var(--text-muted);
	margin-bottom: 12px;
}

.mini-item {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 8px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	font-size: 0.76rem;
	font-weight: 400;
	line-height: 1.35;
	color: var(--text-light);
}

/* .mini-item:nth-child(3) {
	display: none;
} */

.mini-item i {
	width: 28px;
	height: 28px;
	border-radius: 10px;
	background: var(--gold-dim);
	color: var(--gold);
	border: 1px solid var(--gold-border);
	display: grid;
	place-items: center;
	flex-shrink: 0;
	font-size: 0.72rem;
}

.car-stage {
	position: absolute;
	left: 50%;
	bottom: -62px;
	z-index: 2;
	width: 92%;
	transform: translateX(-50%);
	pointer-events: none;
}

.car-stage::before {
	content: "";
	position: absolute;
	left: 18%;
	right: 18%;
	bottom: 2px;
	height: 22px;
	border-radius: 50%;
	background: radial-gradient(ellipse, rgba(0, 0, 0, 0.55), transparent 70%);
	filter: blur(2px);
}

.car-stage img {
	position: relative;
	z-index: 2;
	width: 100%;
	height: auto;
	display: block;
	filter: contrast(1.08) saturate(1.04)
		drop-shadow(0 18px 24px rgba(0, 0, 0, 0.38));
}

.car-animate {
	visibility: hidden;
	animation: carSlideUp 1s ease-out 0.5s forwards;
}

@keyframes carSlideUp {
	0% {
		visibility: hidden;
		transform: translateX(-50%) translateY(70px);
	}
	1% {
		visibility: visible;
		transform: translateX(-50%) translateY(70px);
	}
	100% {
		visibility: visible;
		transform: translateX(-50%) translateY(0);
	}
}

/* ═══════════════════════════════════════════════════════════════
SERVICES SECTION
═══════════════════════════════════════════════════════════════ */

.services-section {
	position: relative;
	padding: 100px 0 110px;
	overflow: hidden;

	/* ── background answer:
Pure grey reads cold and generic next to a dark luxury page.
This zinc-warm near-black (#18181b) is ~3 steps lighter than
the hero (#1c1c1c) — enough contrast to signal a new section
without breaking the dark premium mood.
A subtle radial gold bloom at top-center ties it to the brand. */
	background:
		radial-gradient(
			ellipse 70% 38% at 50% -4%,
			rgba(255, 195, 0, 0.05),
			transparent
		),
		/* lighter — more visible grey */
		linear-gradient(180deg, #242428 0%, #2a2a2e 50%, #242428 100%);
}

/* Diagonal line texture — same pattern as hero/reservation */
.services-texture {
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(
		-45deg,
		transparent,
		transparent 3px,
		rgba(255, 195, 0, 0.018) 3px,
		rgba(255, 195, 0, 0.018) 4px
	);
	pointer-events: none;
}

/* ── Header ────────────────────────────────────────────────── */
.services-inner {
	position: relative;
	z-index: 2;
}

.services-header {
	max-width: 560px;
	margin: 0 auto 64px;
	text-align: center;
}

.services-header .gold-line {
	margin: 20px auto; /* centre the line under the title */
}

.services-header .section-lead {
	margin: 0 auto;
	max-width: 480px;
}

/* ── Grid — mobile-first ───────────────────────────────────── */
.services-grid {
	display: grid;
	gap: 20px;

	/* mobile: single column */
	grid-template-columns: 1fr;
}

/* 2 columns from 640px */
@media (min-width: 640px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* 4 columns from 1100px */
@media (min-width: 1100px) {
	.services-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* ── Service card ──────────────────────────────────────────── */
.svc-card {
	position: relative;
	border-radius: 20px;
	padding: 28px 24px 24px;
	background: rgba(255, 255, 255, 0.033);
	border: 1px solid rgba(255, 255, 255, 0.07);
	display: flex;
	flex-direction: column;
	gap: 14px;
	overflow: hidden;

	/* smooth lift on hover */
	transition:
		transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		border-color 0.35s ease,
		box-shadow 0.35s ease,
		background 0.35s ease;
}

/* subtle top accent line */
.svc-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, rgba(255, 195, 0, 0.5), transparent 65%);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.svc-card:hover {
	transform: translateY(-6px);
	border-color: rgba(255, 195, 0, 0.22);
	background: rgba(255, 255, 255, 0.055);
	box-shadow:
		0 20px 50px rgba(0, 0, 0, 0.45),
		0 0 0 1px rgba(255, 195, 0, 0.08);
}

.svc-card:hover::before {
	opacity: 1;
}

/* ── Featured card override ────────────────────────────────── */
.svc-card--featured {
	background: rgba(255, 195, 0, 0.06);
	border-color: rgba(255, 195, 0, 0.28);
}

.svc-card--featured::before {
	opacity: 1;
} /* always visible */

.svc-card--featured:hover {
	border-color: rgba(255, 195, 0, 0.5);
	background: rgba(255, 195, 0, 0.1);
	box-shadow:
		0 24px 60px rgba(0, 0, 0, 0.5),
		0 0 40px rgba(255, 195, 0, 0.08);
}

/* "Populaire" badge */
.svc-featured-badge {
	position: absolute;
	top: 18px;
	right: 18px;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--dark);
	background: var(--gold);
	padding: 4px 10px;
	border-radius: 100px;
}

/* ── Card top row (icon + number) ──────────────────────────── */
.svc-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.svc-icon {
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: var(--gold-dim);
	border: 1px solid var(--gold-border);
	color: var(--gold);
	display: grid;
	place-items: center;
	font-size: 1.15rem;
	flex-shrink: 0;
	transition:
		background 0.3s ease,
		transform 0.3s ease;
}

.svc-card:hover .svc-icon {
	background: rgba(255, 195, 0, 0.22);
	transform: scale(1.08) rotate(-3deg);
}

/* Gold-filled icon for featured card */
.svc-icon--gold {
	background: var(--gold);
	color: var(--dark);
	border-color: var(--gold);
}

.svc-card--featured:hover .svc-icon--gold {
	transform: scale(1.08) rotate(-3deg);
}

/* Large faded number */
.svc-number {
	font-family: "Poppins", serif;
	font-size: 2.4rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.05);
	line-height: 1;
	user-select: none;
	transition: color 0.35s ease;
}

.svc-card:hover .svc-number {
	color: rgba(255, 195, 0, 0.1);
}

/* ── Text ──────────────────────────────────────────────────── */
.svc-title {
	font-family: "Poppins", serif;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--white);
	line-height: 1.25;
	margin: 0;
}

.svc-desc {
	font-size: 0.82rem;
	line-height: 1.7;
	color: var(--text-muted);
	margin: 0;
	flex: 1; /* push footer to the bottom          */
}

/* ── Feature list ──────────────────────────────────────────── */
.svc-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.svc-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	color: var(--text-light);
}

.svc-list li .bi {
	color: var(--gold);
	font-size: 0.85rem;
	flex-shrink: 0;
}

/* ── Card footer link ──────────────────────────────────────── */
.svc-footer {
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	margin-top: auto;
}

.svc-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text-muted);
	text-decoration: none;
	letter-spacing: 0.03em;
	transition:
		color 0.25s ease,
		gap 0.25s ease;
}

.svc-link:hover {
	color: var(--white);
	gap: 10px; /* arrow slides right on hover        */
}

/* Gold variant for featured card */
.svc-link--gold {
	color: var(--gold);
}

.svc-link--gold:hover {
	color: var(--gold-dark);
	gap: 10px;
}

/* ═══════════════════════════════════════════════════════════════
SERVICE CARDS — creative redesign
═══════════════════════════════════════════════════════════════ */

/* ── Animated ambient background per card ───────────────────── */
.svc-card-bg {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
	background: radial-gradient(
		circle at 80% 20%,
		rgba(255, 195, 0, 0.07),
		transparent 65%
	);
}

.svc-card:hover .svc-card-bg {
	opacity: 1;
}

/* ── Wide card — airport spans more visual weight ────────────── */
.svc-card--wide {
	position: relative;
}

/* ═══════════════════════════════════════════════════════════════
DECORATIVE ELEMENTS PER CARD
═══════════════════════════════════════════════════════════════ */

.svc-deco {
	position: absolute;
	pointer-events: none;
	z-index: 0;
}

/* ── Runway dashes (airport card) ────────────────────────────── */
.svc-deco--runway {
	bottom: 18px;
	right: 18px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	opacity: 0.12;
	transition: opacity 0.4s ease;
}

.svc-card:hover .svc-deco--runway {
	opacity: 0.28;
}

.svc-deco--runway span {
	display: block;
	height: 2px;
	border-radius: 2px;
	background: var(--gold);
}

.svc-deco--runway span:nth-child(1) {
	width: 36px;
}
.svc-deco--runway span:nth-child(2) {
	width: 24px;
}
.svc-deco--runway span:nth-child(3) {
	width: 14px;
}

/* ── Dot grid (baby & pancarte cards) ───────────────────────── */
.svc-deco--dots {
	bottom: 16px;
	right: 16px;
	width: 52px;
	height: 52px;
	opacity: 0.1;
	transition: opacity 0.4s ease;
	background-image: radial-gradient(
		circle,
		var(--gold) 1.2px,
		transparent 1.2px
	);
	background-size: 10px 10px;
}

.svc-card:hover .svc-deco--dots {
	opacity: 0.22;
}

/* ── Decorative clock (mise à disposition card) ──────────────── */
.svc-deco--clock {
	bottom: 16px;
	right: 16px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 195, 0, 0.15);
	opacity: 0.5;
	transition: opacity 0.4s ease;
}

.svc-card--featured:hover .svc-deco--clock {
	opacity: 0.9;
}

/* clock hands */
.deco-clock-hand {
	position: absolute;
	bottom: 50%;
	left: 50%;
	transform-origin: bottom center;
	background: rgba(255, 195, 0, 0.6);
	border-radius: 2px;
}

.deco-clock-hand--h {
	width: 1.5px;
	height: 12px;
	margin-left: -0.75px;
	transform: rotate(120deg);
	animation: clock-hour 43200s linear infinite;
}

.deco-clock-hand--m {
	width: 1px;
	height: 16px;
	margin-left: -0.5px;
	transform: rotate(210deg);
	animation: clock-minute 3600s linear infinite;
}

@keyframes clock-hour {
	to {
		transform: rotate(480deg);
	}
}
@keyframes clock-minute {
	to {
		transform: rotate(570deg);
	}
}

/* ── Make sure card content sits above deco ──────────────────── */
.svc-card-top,
.svc-title,
.svc-desc,
.svc-list,
.svc-footer,
.svc-featured-badge {
	position: relative;
	z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
HOW IT WORKS
═══════════════════════════════════════════════════════════════ */

.hiw-section {
	position: relative;
	padding: 100px 0 110px;
	overflow: hidden;

	/* same dark base as hero — creates rhythm: grey → dark → grey → dark */
	background:
		radial-gradient(
			ellipse 60% 40% at 20% 50%,
			rgba(255, 195, 0, 0.04),
			transparent
		),
		radial-gradient(
			ellipse 50% 40% at 80% 50%,
			rgba(255, 195, 0, 0.03),
			transparent
		),
		var(--dark);
}

/* ── Ambient glow blobs ──────────────────────────────────────── */
.hiw-blob {
	position: absolute;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	filter: blur(90px);
	pointer-events: none;
	opacity: 0.045;
}

.hiw-blob--left {
	background: var(--gold);
	top: 10%;
	left: -120px;
}

.hiw-blob--right {
	background: var(--gold);
	bottom: 10%;
	right: -120px;
}

/* ── Header ──────────────────────────────────────────────────── */
.hiw-inner {
	position: relative;
	z-index: 2;
}

.hiw-header {
	text-align: center;
	margin-bottom: 70px;
}

/* ── Steps wrapper — vertical on mobile ─────────────────────── */
.hiw-steps {
	position: relative;
	display: flex;
	flex-direction: column; /* mobile: stack vertically            */
	gap: 0;
}

/* Desktop connector lines — hidden on mobile */
.hiw-connectors {
	display: none;
}

/* ── Single step ─────────────────────────────────────────────── */
.hiw-step {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0;
	padding-bottom: 48px; /* space before next step on mobile    */
}

.hiw-step:last-child {
	padding-bottom: 0;
}

/* top row: icon column + ambient number */
.hiw-step-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 16px;
}

/* icon + vertical connector line stacked */
.hiw-icon-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}

/* ── Icon circle ─────────────────────────────────────────────── */
.hiw-icon {
	position: relative;
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: rgba(255, 195, 0, 0.1);
	border: 1px solid var(--gold-border);
	color: var(--gold);
	display: grid;
	place-items: center;
	font-size: 1.3rem;
	flex-shrink: 0;
	transition:
		background 0.35s ease,
		transform 0.35s ease;
	z-index: 2;
}

.hiw-step:hover .hiw-icon {
	background: rgba(255, 195, 0, 0.2);
	transform: scale(1.06) rotate(-4deg);
}

/* Gold filled icon for final step */
.hiw-icon--gold {
	background: var(--gold);
	color: var(--dark);
	border-color: var(--gold);
	border-radius: 50%; /* circle for the phone step          */
}

.hiw-step--final:hover .hiw-icon--gold {
	transform: scale(1.06);
}

/* ── Pulse rings on final step icon ─────────────────────────── */
.hiw-pulse {
	position: absolute;
	inset: -1px;
	border-radius: 50%;
	border: 2px solid var(--gold);
	animation: hiw-pulse-ring 2s ease-out infinite;
	pointer-events: none;
}

.hiw-pulse--2 {
	animation-delay: 0.7s;
}

@keyframes hiw-pulse-ring {
	0% {
		transform: scale(1);
		opacity: 0.7;
	}
	100% {
		transform: scale(2.2);
		opacity: 0;
	}
}

/* ── Vertical connector line (mobile only) ───────────────────── */
.hiw-vline {
	width: 1px;
	flex: 1;
	min-height: 48px;

	/* animated dashed gold line */
	background: repeating-linear-gradient(
		180deg,
		var(--gold) 0px,
		var(--gold) 6px,
		transparent 6px,
		transparent 14px
	);
	opacity: 0.3;
	margin-top: 6px;
}

/* ── Ambient step number ─────────────────────────────────────── */
.hiw-ambient-num {
	font-family: "Poppins", serif;
	font-size: 4rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.04);
	line-height: 1;
	user-select: none;
	transition: color 0.35s ease;
}

.hiw-step:hover .hiw-ambient-num {
	color: rgba(255, 195, 0, 0.08);
}

/* ── Step body ───────────────────────────────────────────────── */
.hiw-step-body {
	padding-left: 70px; /* align with icon width + gap        */
	margin-top: -52px; /* pull up alongside icon             */
}

.hiw-step-title {
	font-family: "Poppins", serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--white);
	margin: 0 0 10px;
	line-height: 1.25;
}

.hiw-step-desc {
	font-size: 0.85rem;
	line-height: 1.75;
	color: var(--text-muted);
	margin: 0 0 14px;
	max-width: 340px;
}

/* ── Tags ────────────────────────────────────────────────────── */
.hiw-tags {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.hiw-tags li {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 0.72rem;
	font-weight: 500;
	color: var(--gold);
	background: var(--gold-dim);
	border: 1px solid var(--gold-border);
	padding: 4px 10px;
	border-radius: 100px;
	letter-spacing: 0.02em;
}

.hiw-tags li .bi {
	font-size: 0.75rem;
}

/* ── 15-min guarantee pill ───────────────────────────────────── */
.hiw-guarantee {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	/* margin-top: 16px; */
	padding: 10px 18px;
	border-radius: 100px;
	background: rgba(255, 195, 0, 0.08);
	border: 1px solid rgba(255, 195, 0, 0.3);
	font-size: 0.82rem;
	color: var(--text-light);
}

.hiw-guarantee strong {
	color: var(--gold);
}

.hiw-guarantee-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
	flex-shrink: 0;
	box-shadow: 0 0 0 0 rgba(255, 195, 0, 0.5);
	animation: hiw-dot-pulse 1.8s ease infinite;
}

@keyframes hiw-dot-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 195, 0, 0.5);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(255, 195, 0, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(255, 195, 0, 0);
	}
}

/* ── Final step card highlight ───────────────────────────────── */
/*.hiw-step--final .hiw-step-body {
    padding: 20px 20px 20px 24px;
    border-radius: 16px;
    background: rgba(255, 195, 0, 0.04);
    border: 1px solid rgba(255, 195, 0, 0.15);
    margin-top: -52px;
    margin-left: 70px;
    padding-left: 20px; 
}*/

/* ── Bottom CTA ──────────────────────────────────────────────── */
.hiw-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	margin-top: 64px;
	text-align: center;
}

.hiw-cta-note {
	font-size: 0.78rem;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 0;
}

.hiw-cta-note .bi {
	color: var(--gold);
	font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════════════════
DESKTOP — horizontal flow (≥ 900px)
═══════════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
	/* 4 columns side by side */
	.hiw-steps {
		flex-direction: row;
		align-items: flex-start;
		gap: 0;
	}

	/* each step takes equal width */
	.hiw-step {
		flex: 1;
		padding-bottom: 0;
		padding: 0 16px;
	}

	.hiw-step:first-child {
		padding-left: 0;
	}
	.hiw-step:last-child {
		padding-right: 0;
	}

	/* hide mobile vertical line */
	.hiw-vline {
		display: none;
	}

	/* reset body alignment for horizontal layout */
	.hiw-step-body {
		padding-left: 0;
		margin-top: 20px;
	}

	/* reset final step card — no left margin on desktop */
	/* .hiw-step--final .hiw-step-body {
        margin-left: 0;
        padding: 20px;
    } */

	/* icon sits at top, number floats top-right of card */
	.hiw-step-top {
		flex-direction: column-reverse;
		align-items: flex-start;
		gap: 8px;
		margin-bottom: 0;
	}

	.hiw-ambient-num {
		font-size: 3rem;
		align-self: flex-end;
	}

	/* ── Horizontal connector lines between steps ─────────────── */
	.hiw-connectors {
		display: flex;
		position: absolute;
		top: 28px; /* vertically centred on the icons    */
		left: calc(25% - 28px);
		right: calc(0% + 28px);
		justify-content: space-between;
		pointer-events: none;
		z-index: 1;
	}

	.hiw-connector {
		flex: 1;
		height: 1px;

		/* animated dashed gold line — horizontal */
		background: repeating-linear-gradient(
			90deg,
			rgba(255, 195, 0, 0.4) 0px,
			rgba(255, 195, 0, 0.4) 6px,
			transparent 6px,
			transparent 16px
		);
		margin: 0 56px; /* gap between icon edge and line     */
	}

	.hiw-step-desc {
		max-width: 100%;
	}
}

/* ── Tablet 2-col fallback (640px – 899px) ───────────────────── */
@media (min-width: 640px) and (max-width: 899px) {
	.hiw-steps {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 32px;
	}

	.hiw-step {
		padding-bottom: 0;
	}

	/* hide vertical lines in 2-col grid */
	.hiw-vline {
		display: none;
	}

	.hiw-step-body {
		padding-left: 0;
		margin-top: 16px;
	}

	/* .hiw-step--final .hiw-step-body {
        margin-left: 0;
        padding: 16px;
    } */

	.hiw-step-top {
		flex-direction: row-reverse;
		align-items: center;
	}
}

/* ═══════════════════════════════════════════════════════════════
AVIS CLIENTS — Testimonials Slider
═══════════════════════════════════════════════════════════════ */

.avis-section {
	position: relative;
	padding: 100px 0 110px;
	overflow: hidden;
	background:
		radial-gradient(
			ellipse 60% 40% at 50% 0%,
			rgba(255, 195, 0, 0.05),
			transparent
		),
		linear-gradient(180deg, #1e1e20 0%, #232326 50%, #1e1e20 100%);
}

/* ambient blobs */
.avis-blob {
	position: absolute;
	width: 340px;
	height: 340px;
	border-radius: 50%;
	filter: blur(80px);
	pointer-events: none;
	opacity: 0.04;
	background: var(--gold);
}
.avis-blob--left {
	top: 0;
	left: -100px;
}
.avis-blob--right {
	bottom: 0;
	right: -100px;
}

/* ── Header ──────────────────────────────────────────────────── */
.avis-inner {
	position: relative;
	z-index: 2;
}

.avis-header {
	text-align: center;
	margin-bottom: 56px;
}

/* aggregate stars + score */
.avis-aggregate {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
	padding: 10px 20px;
	border-radius: 100px;
	background: var(--gold-dim);
	border: 1px solid var(--gold-border);
}

.avis-stars {
	display: flex;
	gap: 3px;
}
.avis-stars .bi {
	color: var(--gold);
	font-size: 0.85rem;
}

.avis-score {
	font-family: "Poppins", serif;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--white);
}

.avis-count {
	font-size: 0.78rem;
	color: var(--text-muted);
}

/* ── Slider wrapper — clips the track ───────────────────────── */
.avis-slider-wrap {
	position: relative;
	/* side padding creates space for nav buttons on desktop */
	padding: 0 0 8px;
}

/* ── Track — scrollable row of cards ────────────────────────── */
.avis-track {
	display: flex;
	gap: 20px;
	/* smooth JS-driven transform transition */
	transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
	/* prevent wrapping — cards stay in one row */
	flex-wrap: nowrap;
}

/* ── Single card ─────────────────────────────────────────────── */
.avis-card {
	flex: 0 0 100%; /* mobile: full width                 */
	border-radius: 20px;
	padding: 28px 24px 22px;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-direction: column;
	gap: 18px;
	position: relative;
	overflow: hidden;
	transition:
		border-color 0.35s ease,
		box-shadow 0.35s ease,
		transform 0.35s ease;
}

/* top gold accent line */
.avis-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, rgba(255, 195, 0, 0.6), transparent 70%);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.avis-card:hover {
	border-color: rgba(255, 195, 0, 0.22);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
	transform: translateY(-4px);
}

.avis-card:hover::before {
	opacity: 1;
}

/* ── Card top: avatar + meta ────────────────────────────────── */
.avis-card-top {
	display: flex;
	align-items: center;
	gap: 16px;
}

.avis-avatar-wrap {
	position: relative;
	flex-shrink: 0;
}

.avis-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--gold-border);
	display: block;
}

/* verified checkmark badge */
.avis-verified {
	position: absolute;
	bottom: -2px;
	right: -2px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--dark-2);
	display: grid;
	place-items: center;
	font-size: 0.7rem;
	color: var(--gold);
}

.avis-meta {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.avis-name {
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--white);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.avis-role {
	font-size: 0.73rem;
	color: var(--text-muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.avis-card-stars {
	display: flex;
	gap: 2px;
	margin-top: 2px;
}

.avis-card-stars .bi {
	color: var(--gold);
	font-size: 0.72rem;
}

/* ── Quote ───────────────────────────────────────────────────── */
.avis-quote {
	position: relative;
	margin: 0;
	padding: 0;
	font-size: 0.85rem;
	line-height: 1.75;
	color: var(--text-muted);
	font-style: normal;
	flex: 1;
}

.avis-quote-icon {
	display: block;
	font-size: 2rem;
	color: rgba(255, 195, 0, 0.18);
	line-height: 1;
	margin-bottom: 6px;
}

/* ── Card footer ─────────────────────────────────────────────── */
.avis-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	gap: 8px;
	flex-wrap: wrap;
}

.avis-trip {
	font-size: 0.73rem;
	color: var(--gold);
	display: flex;
	align-items: center;
	gap: 5px;
}

.avis-trip .bi {
	font-size: 0.7rem;
}

.avis-date {
	font-size: 0.7rem;
	color: var(--text-muted);
}

/* ── Nav buttons ─────────────────────────────────────────────── */
.avis-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(28, 28, 28, 0.9);
	backdrop-filter: blur(8px);
	color: var(--white);
	font-size: 1rem;
	display: grid;
	place-items: center;
	cursor: pointer;
	z-index: 10;
	transition:
		background 0.25s ease,
		border-color 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.avis-nav:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--dark);
	box-shadow: 0 8px 24px rgba(255, 195, 0, 0.3);
}

.avis-nav:active {
	transform: translateY(-50%) scale(0.94);
}

.avis-nav--prev {
	left: -20px;
}
.avis-nav--next {
	right: -20px;
}

/* disabled state */
.avis-nav:disabled {
	opacity: 0.3;
	cursor: default;
	pointer-events: none;
}

/* ── Dots ────────────────────────────────────────────────────── */
.avis-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 36px;
}

.avis-dot {
	width: 6px;
	height: 6px;
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.2);
	cursor: pointer;
	transition:
		width 0.35s ease,
		background 0.35s ease;
	border: none;
	padding: 0;
}

.avis-dot.active {
	width: 24px; /* elongates to a pill when active    */
	background: var(--gold);
}

/* ── Responsive: 3 cards visible on desktop ─────────────────── */
@media (min-width: 900px) {
	.avis-card {
		/* 3 cards visible: (100% - 2 gaps) / 3 */
		flex: 0 0 calc((100% - 40px) / 3);
	}

	.avis-nav--prev {
		left: -24px;
	}
	.avis-nav--next {
		right: -24px;
	}
}

/* 2 cards on tablet */
@media (min-width: 580px) and (max-width: 899px) {
	.avis-card {
		flex: 0 0 calc((100% - 20px) / 2);
	}
}

/* ═══════════════════════════════════════════════════════════════
FAQ SECTION
═══════════════════════════════════════════════════════════════ */

.faq-section {
	position: relative;
	padding: 100px 0 110px;
	overflow: hidden;
	background:
		radial-gradient(
			ellipse 55% 35% at 50% 0%,
			rgba(255, 195, 0, 0.05),
			transparent
		),
		var(--dark);
}

/* ambient blobs */
.faq-blob {
	position: absolute;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	filter: blur(80px);
	pointer-events: none;
	opacity: 0.038;
	background: var(--gold);
}
.faq-blob--left {
	top: 10%;
	left: -100px;
}
.faq-blob--right {
	bottom: 10%;
	right: -100px;
}

/* ── Header ──────────────────────────────────────────────────── */
.faq-inner {
	position: relative;
	z-index: 2;
}

.faq-header {
	text-align: center;
	margin-bottom: 64px;
}

/* ── Layout: stacked mobile → side-by-side desktop ──────────── */
.faq-layout {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

@media (min-width: 992px) {
	.faq-layout {
		flex-direction: row;
		align-items: flex-start;
		gap: 48px;
	}

	.faq-list {
		flex: 1;
		min-width: 0;
	}
	.faq-contact-card {
		width: 300px;
		flex-shrink: 0;
		/* sticky so card floats alongside the accordion */
		position: sticky;
		top: calc(var(--nav-h) + var(--nav-offset-top) + 24px);
	}
}

/* ═══════════════════════════════════════════════════════════════
ACCORDION
═══════════════════════════════════════════════════════════════ */

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* ── Single item ─────────────────────────────────────────────── */
.faq-item {
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.033);
	border: 1px solid rgba(255, 255, 255, 0.07);
	overflow: hidden;
	transition:
		border-color 0.35s ease,
		box-shadow 0.35s ease,
		background 0.35s ease;
}

.faq-item--open,
.faq-item:has(.faq-trigger[aria-expanded="true"]) {
	border-color: rgba(255, 195, 0, 0.25);
	background: rgba(255, 195, 0, 0.04);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ── Trigger button ──────────────────────────────────────────── */
.faq-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 22px;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	color: var(--white);
	font-family: "Poppins", sans-serif;
	transition: background 0.25s ease;
}

.faq-trigger:hover {
	background: rgba(255, 255, 255, 0.03);
}

/* small icon badge */
.faq-trigger-icon {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: var(--gold-dim);
	border: 1px solid var(--gold-border);
	color: var(--gold);
	display: grid;
	place-items: center;
	font-size: 0.82rem;
	flex-shrink: 0;
	transition:
		background 0.25s ease,
		transform 0.25s ease;
}

.faq-trigger[aria-expanded="true"] .faq-trigger-icon {
	background: var(--gold);
	color: var(--dark);
	transform: scale(1.05);
}

.faq-trigger-text {
	flex: 1;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.4;
	color: var(--white);
	letter-spacing: 0.01em;
}

/* chevron rotates when open */
.faq-chevron {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: grid;
	place-items: center;
	flex-shrink: 0;
	color: var(--text-muted);
	font-size: 0.75rem;
	transition:
		transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		border-color 0.25s ease,
		color 0.25s ease,
		background 0.25s ease;
}

.faq-trigger[aria-expanded="true"] .faq-chevron {
	transform: rotate(180deg);
	border-color: var(--gold-border);
	color: var(--gold);
	background: var(--gold-dim);
}

/* ── Collapsible body — smooth height via grid trick ────────── */
.faq-body {
	display: grid;
	grid-template-rows: 0fr; /* collapsed */
	transition: grid-template-rows 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item--open .faq-body,
.faq-item:has(.faq-trigger[aria-expanded="true"]) .faq-body {
	grid-template-rows: 1fr; /* expanded */
}

/* inner div must have overflow hidden for the grid trick */
.faq-body-inner {
	overflow: hidden;
	padding: 0 22px 0 70px; /* aligns text with question     */
}

/* add bottom padding only when visible — avoids flash on close */
.faq-item--open .faq-body-inner,
.faq-item:has(.faq-trigger[aria-expanded="true"]) .faq-body-inner {
	padding-bottom: 22px;
}

.faq-body-inner p {
	font-size: 0.85rem;
	line-height: 1.78;
	color: var(--text-muted);
	margin: 0 0 10px;
}

.faq-body-inner p:last-child {
	margin-bottom: 0;
}

/* inner check list */
.faq-list-inner {
	list-style: none;
	padding: 10px 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.faq-list-inner li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.82rem;
	color: var(--text-light);
}

.faq-list-inner li .bi {
	color: var(--gold);
	font-size: 0.85rem;
	flex-shrink: 0;
}

/* highlight pill */
.faq-highlight {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	padding: 8px 14px;
	border-radius: 100px;
	background: var(--gold-dim);
	border: 1px solid var(--gold-border);
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--gold);
}

.faq-highlight .bi {
	font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════════════════
CONTACT SIDE CARD
═══════════════════════════════════════════════════════════════ */

.faq-contact-card {
	border-radius: 20px;
	padding: 28px 24px;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: relative;
	overflow: hidden;
}

/* top gold accent line */
.faq-contact-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--gold), transparent 70%);
}

.faq-contact-top {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.faq-contact-icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--gold);
	color: var(--dark);
	display: grid;
	place-items: center;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.faq-contact-top strong {
	display: block;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 4px;
	line-height: 1.3;
}

.faq-contact-top span {
	font-size: 0.78rem;
	color: var(--text-muted);
	line-height: 1.5;
}

.faq-contact-divider {
	height: 1px;
	background: linear-gradient(90deg, rgba(255, 195, 0, 0.2), transparent);
}

/* CTA buttons inside card */
.faq-contact-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	height: 44px;
	border-radius: var(--radius-sm);
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	transition:
		background 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.faq-contact-btn--primary {
	background: var(--gold);
	color: var(--dark);
	border: 1px solid transparent;
}

.faq-contact-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255, 195, 0, 0.3);
	color: var(--dark);
}

.faq-contact-btn--whatsapp {
	background: rgba(37, 211, 102, 0.12);
	color: #25d366;
	border: 1px solid rgba(37, 211, 102, 0.3);
}

.faq-contact-btn--whatsapp:hover {
	background: rgba(37, 211, 102, 0.22);
	border-color: rgba(37, 211, 102, 0.5);
	color: #25d366;
	transform: translateY(-2px);
}

.faq-contact-btn--ghost {
	background: transparent;
	color: var(--text-light);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-contact-btn--ghost:hover {
	border-color: var(--gold);
	color: var(--gold);
	background: var(--gold-dim);
}

/* trust micro list */
.faq-trust-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.faq-trust-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.78rem;
	color: var(--text-muted);
}

.faq-trust-list li .bi {
	color: var(--gold);
	font-size: 0.82rem;
	flex-shrink: 0;
}

/* ── Mobile: body text alignment fix ────────────────────────── */
@media (max-width: 575px) {
	.faq-body-inner {
		padding-left: 22px; /* remove icon-width offset on small screens */
	}

	.faq-trigger {
		padding: 16px 16px;
	}
	.faq-trigger-text {
		font-size: 0.84rem;
	}
}

/* ═══════════════════════════════════════════════════════════════
ABOUT US — Editorial luxury split
═══════════════════════════════════════════════════════════════ */

.about-section {
	position: relative;
	padding: 0 0 120px;
	overflow: hidden;
	background:
		radial-gradient(
			ellipse 80% 50% at 100% 60%,
			rgba(255, 195, 0, 0.04),
			transparent
		),
		radial-gradient(
			ellipse 60% 40% at 0% 40%,
			rgba(255, 195, 0, 0.03),
			transparent
		),
		linear-gradient(180deg, #1e1e20 0%, #17171a 60%, #111113 100%);
}

/* diagonal texture */
.about-texture {
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(
		-45deg,
		transparent,
		transparent 3px,
		rgba(255, 195, 0, 0.016) 3px,
		rgba(255, 195, 0, 0.016) 4px
	);
	pointer-events: none;
}

/* giant ambient year — editorial anchor */
.about-year {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: "Poppins", serif;
	font-size: clamp(14rem, 28vw, 26rem);
	font-weight: 700;
	color: transparent;
	-webkit-text-stroke: 1px rgba(255, 195, 0, 0.04);
	letter-spacing: -0.06em;
	line-height: 1;
	user-select: none;
	pointer-events: none;
	white-space: nowrap;
}

/* ambient blobs */
.about-blob {
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	filter: blur(100px);
	pointer-events: none;
	opacity: 0.05;
	background: var(--gold);
}
.about-blob--tl {
	top: -80px;
	left: -80px;
}
.about-blob--br {
	bottom: -80px;
	right: -80px;
}

/* ── Stats ticker ────────────────────────────────────────────── */
.about-ticker-wrap {
	width: 100%;
	overflow: hidden;
	border-top: 1px solid rgba(255, 195, 0, 0.12);
	border-bottom: 1px solid rgba(255, 195, 0, 0.12);
	background: rgba(255, 195, 0, 0.03);
	padding: 14px 0;
	margin-bottom: 80px;
	position: relative;
	z-index: 2;
}

/* fade edges */
.about-ticker-wrap::before,
.about-ticker-wrap::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 80px;
	z-index: 3;
	pointer-events: none;
}
.about-ticker-wrap::before {
	left: 0;
	background: linear-gradient(90deg, #1e1e20, transparent);
}
.about-ticker-wrap::after {
	right: 0;
	background: linear-gradient(-90deg, #1e1e20, transparent);
}

/* scrolling track */
.about-ticker {
	display: flex;
	align-items: center;
	gap: 32px;
	width: max-content;
	animation: ticker-scroll 28s linear infinite;
}

.about-ticker:hover {
	animation-play-state: paused;
}

@keyframes ticker-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

.ticker-item {
	font-size: 0.82rem;
	font-weight: 400;
	color: var(--text-muted);
	white-space: nowrap;
	letter-spacing: 0.04em;
}

.ticker-item em {
	font-style: normal;
	font-weight: 700;
	font-family: "Poppins", serif;
	font-size: 1rem;
	color: var(--gold);
	margin-right: 4px;
}

.ticker-sep {
	color: rgba(255, 195, 0, 0.35);
	font-size: 0.6rem;
	flex-shrink: 0;
}

/* ── Main grid ───────────────────────────────────────────────── */
.about-inner {
	position: relative;
	z-index: 2;
}

.about-grid {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

@media (min-width: 992px) {
	.about-grid {
		flex-direction: row;
		align-items: center;
		gap: 72px;
	}

	.about-mosaic {
		flex: 0 0 44%;
	}
	.about-content {
		flex: 1;
	}
}

/* ═══════════════════════════════════════════════════════════════
PHOTO MOSAIC
═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
ABOUT MOSAIC — single creative image, left side
═══════════════════════════════════════════════════════════════ */

.about-mosaic {
	position: relative;
	/* extra right padding makes room for the vertical gold rule */
	padding-right: 28px;
}

/* ── Main frame ──────────────────────────────────────────────── */
.mosaic-frame {
	position: relative;
	border-radius: 24px;
	overflow: hidden;

	/* tall portrait ratio — editorial feel */
	aspect-ratio: 3 / 4;

	/* outer gold glow */
	box-shadow:
		0 0 0 1px rgba(255, 195, 0, 0.12),
		0 32px 80px rgba(0, 0, 0, 0.6),
		0 0 60px rgba(255, 195, 0, 0.04);
}

/* the photo */
.mosaic-cover-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
	transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.mosaic-frame:hover .mosaic-cover-img {
	transform: scale(1.04);
}

/* dark gradient — bottom heavy so badges pop */
.mosaic-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.08) 0%,
		transparent 35%,
		rgba(0, 0, 0, 0.45) 70%,
		rgba(0, 0, 0, 0.82) 100%
	);
	pointer-events: none;
}

/* ── Decorative corner brackets ──────────────────────────────── */
.frame-corner {
	position: absolute;
	width: 22px;
	height: 22px;
	z-index: 3;
	pointer-events: none;
}

/* each corner is two thin gold lines via border */
.frame-corner--tl {
	top: 14px;
	left: 14px;
	border-top: 2px solid var(--gold);
	border-left: 2px solid var(--gold);
	border-radius: 3px 0 0 0;
}
.frame-corner--tr {
	top: 14px;
	right: 14px;
	border-top: 2px solid var(--gold);
	border-right: 2px solid var(--gold);
	border-radius: 0 3px 0 0;
}
.frame-corner--bl {
	bottom: 14px;
	left: 14px;
	border-bottom: 2px solid var(--gold);
	border-left: 2px solid var(--gold);
	border-radius: 0 0 0 3px;
}
.frame-corner--br {
	bottom: 14px;
	right: 14px;
	border-bottom: 2px solid var(--gold);
	border-right: 2px solid var(--gold);
	border-radius: 0 0 3px 0;
}

/* ── VTC badge — bottom left ─────────────────────────────────── */
.mosaic-badge {
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 8px 16px;
	border-radius: 100px;
	background: rgba(14, 14, 14, 0.88);
	backdrop-filter: blur(12px);
	border: 1px solid var(--gold-border);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--gold);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.mosaic-badge .bi {
	font-size: 0.9rem;
}

/* ── Experience strip — bottom right ────────────────────────── */
.mosaic-exp {
	position: absolute;
	bottom: 20px;
	right: 20px;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 12px;
	background: rgba(14, 14, 14, 0.88);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.mosaic-exp-num {
	font-family: "Poppins", serif;
	font-size: 1.9rem;
	font-weight: 700;
	color: var(--gold);
	line-height: 1;
}

.mosaic-exp strong {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--white);
	line-height: 1.1;
}

.mosaic-exp span {
	display: block;
	font-size: 0.65rem;
	color: var(--text-muted);
	letter-spacing: 0.04em;
}

/* ── Vertical gold rule — right side of frame ────────────────── */
.mosaic-vline {
	position: absolute;
	top: 5%;
	right: 10px;
	bottom: 5%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	pointer-events: none;
}

.mosaic-vline-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold);
	flex-shrink: 0;
}

.mosaic-vline-track {
	flex: 1;
	width: 1px;
	background: repeating-linear-gradient(
		180deg,
		rgba(255, 195, 0, 0.5) 0px,
		rgba(255, 195, 0, 0.5) 5px,
		transparent 5px,
		transparent 12px
	);
}

/* ── Floating stat card — position tweak for single image ─────── */
.mosaic-stat-card {
	position: absolute;
	top: 32px; /* moved to top-right for variety      */
	right: -18px;
	bottom: auto;
	z-index: 4;
}

/* ── Mobile: remove right padding, reposition card ───────────── */
@media (max-width: 575px) {
	.about-mosaic {
		padding-right: 0;
	}
	.mosaic-vline {
		display: none;
	}

	.mosaic-stat-card {
		top: auto;
		bottom: -18px;
		right: 12px;
	}

	/* shorter ratio on mobile so image doesn't dominate */
	.mosaic-frame {
		aspect-ratio: 4 / 3;
	}
}

@media (min-width: 576px) and (max-width: 991px) {
	.mosaic-frame {
		aspect-ratio: 4 / 3;
		max-width: 500px;
		margin: 0 auto;
	}
	.mosaic-vline {
		display: none;
	}
	.mosaic-stat-card {
		top: 20px;
		right: 0;
	}
}

/* ═══════════════════════════════════════════════════════════════
ABOUT CONTENT — right side
═══════════════════════════════════════════════════════════════ */

.about-content {
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* editorial headline */
.about-headline {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 16px 0 0;
}

.about-headline-sub {
	font-family: "Poppins", sans-serif;
	font-size: clamp(0.85rem, 2vw, 1rem);
	font-weight: 300;
	color: var(--gold);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	display: block;
	margin-bottom: 6px;
}

.about-headline-main {
	font-family: "Poppins", serif;
	font-size: clamp(2.6rem, 6vw, 4rem);
	font-weight: 700;
	color: var(--white);
	line-height: 1.04;
	letter-spacing: -0.03em;
	display: block;
}

/* decorative rule with diamond */
.about-rule {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 28px 0 28px;
}

.about-rule-line {
	height: 1px;
	width: 56px;
	background: var(--gold);
}

.about-rule-line--fade {
	width: 100%;
	background: linear-gradient(90deg, rgba(255, 195, 0, 0.4), transparent);
}

.about-rule-diamond {
	width: 8px;
	height: 8px;
	background: var(--gold);
	transform: rotate(45deg);
	flex-shrink: 0;
}

/* narrative text */
.about-narrative {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 36px;
}

.about-narrative p {
	font-size: 0.88rem;
	line-height: 1.82;
	color: var(--text-muted);
	margin: 0;
}

.about-narrative-lead {
	font-size: 1rem !important;
	font-weight: 400;
	color: var(--text-light) !important;
	line-height: 1.7 !important;
}

/* ── Value pillars ───────────────────────────────────────────── */
.about-pillars {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 40px;
}

.about-pillar {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 16px 18px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition:
		background 0.3s ease,
		border-color 0.3s ease,
		transform 0.3s ease;
	cursor: default;
}

.about-pillar:hover {
	background: rgba(255, 195, 0, 0.05);
	border-color: rgba(255, 195, 0, 0.2);
	transform: translateX(6px);
}

.about-pillar-icon {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--gold-dim);
	border: 1px solid var(--gold-border);
	color: var(--gold);
	display: grid;
	place-items: center;
	font-size: 1rem;
	flex-shrink: 0;
	transition:
		background 0.3s ease,
		transform 0.3s ease;
}

.about-pillar:hover .about-pillar-icon {
	background: var(--gold);
	color: var(--dark);
	transform: scale(1.08) rotate(-5deg);
}

.about-pillar strong {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 3px;
}

.about-pillar span {
	font-size: 0.78rem;
	color: var(--text-muted);
	line-height: 1.5;
}

/* ── CTA row ─────────────────────────────────────────────────── */
.about-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.about-cta-call {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	transition: opacity 0.25s ease;
}

.about-cta-call:hover {
	opacity: 0.8;
}

.about-cta-call-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--gold-dim);
	border: 1px solid var(--gold-border);
	color: var(--gold);
	display: grid;
	place-items: center;
	font-size: 1rem;
	flex-shrink: 0;
	animation: about-phone-pulse 2.5s ease infinite;
}

@keyframes about-phone-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(255, 195, 0, 0.4);
	}
	50% {
		box-shadow: 0 0 0 10px rgba(255, 195, 0, 0);
	}
}

.about-cta-call span {
	display: block;
	font-size: 0.72rem;
	color: var(--text-muted);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 2px;
}

.about-cta-call strong {
	display: block;
	font-size: 0.9rem;
	color: var(--white);
	font-weight: 600;
}

/* ── Mobile adjustments ──────────────────────────────────────── */
@media (max-width: 575px) {
	.about-section {
		padding-bottom: 80px;
	}

	.about-ticker-wrap {
		margin-bottom: 56px;
	}

	/* stat card repositioned for mobile */
	.mosaic-stat-card {
		right: 8px;
		bottom: -16px;
		min-width: 110px;
		padding: 12px 14px;
	}

	.mosaic-stat-num {
		font-size: 1.6rem;
	}

	.about-headline-main {
		font-size: clamp(2.2rem, 10vw, 3rem);
	}

	.about-cta {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (min-width: 576px) and (max-width: 991px) {
	.about-mosaic {
		max-width: 560px;
		margin: 0 auto;
	}
}

/* ═══════════════════════════════════════════════════════════ */
/*  BOOKING SECTION                                             */
/* ═══════════════════════════════════════════════════════════ */
#reservation {
	position: relative;
	padding: 90px 0 100px;
	overflow: hidden;
	background: var(--dark);
}

#reservation::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(
		-45deg,
		transparent,
		transparent 3px,
		rgba(255, 195, 0, 0.025) 3px,
		rgba(255, 195, 0, 0.025) 4px
	);
	pointer-events: none;
}

.section-title {
	font-family: "Poppins", serif;
	font-size: clamp(2rem, 5vw, 3.2rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--white);
	margin-bottom: 18px;
}

.section-title span {
	color: var(--gold);
	position: relative;
}

.section-lead {
	font-size: clamp(0.9rem, 2vw, 1.05rem);
	color: var(--text-muted);
	max-width: 500px;
	line-height: 1.75;
}

.gold-line {
	width: 56px;
	height: 3px;
	background: linear-gradient(90deg, var(--gold), transparent);
	border-radius: 2px;
	margin: 24px 0;
}

.booking-card {
	background: var(--dark-2);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 20px;
	padding: 40px 36px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.booking-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--gold), transparent 70%);
	border-radius: 20px 20px 0 0;
}

.form-section-label {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.step-num {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--dark);
	font-size: 0.8rem;
	font-weight: 700;
	display: grid;
	place-items: center;
	flex-shrink: 0;
}

.step-text strong {
	display: block;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--white);
	letter-spacing: 0.02em;
}

.step-text small {
	font-size: 0.78rem;
	color: var(--text-muted);
}

.form-label {
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: 7px;
}

.form-control,
.form-select {
	background: var(--dark-3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--white);
	border-radius: var(--radius-sm);
	padding: 12px 16px;
	font-size: 0.9rem;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	transition:
		border-color var(--transition),
		box-shadow var(--transition);
}

.form-control::placeholder {
	color: #555;
}

.form-control:focus,
.form-select:focus {
	background: var(--dark-3);
	color: var(--white);
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(255, 195, 0, 0.12);
	outline: none;
}

.form-select option {
	background: var(--dark-3);
	color: var(--white);
}

.input-icon-wrap {
	position: relative;
}

.input-icon-wrap .bi {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--gold);
	font-size: 1rem;
	pointer-events: none;
	z-index: 1;
}

.input-icon-wrap .form-control,
.input-icon-wrap .form-select {
	padding-left: 42px;
}

textarea.form-control {
	min-height: 110px;
	resize: vertical;
}

.route-visual {
	background: var(--dark);
	border: 1px solid var(--gold-border);
	border-radius: var(--radius);
	padding: 20px 22px;
	display: none;
	animation: fadeSlideUp 0.35s ease forwards;
}

.route-visual.visible {
	display: block;
}

@keyframes fadeSlideUp {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.route-stat {
	display: flex;
	align-items: center;
	gap: 10px;
}

.route-stat .icon-wrap {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: var(--gold-dim);
	border: 1px solid var(--gold-border);
	display: grid;
	place-items: center;
	color: var(--gold);
	font-size: 1.1rem;
	flex-shrink: 0;
}

.route-stat .label {
	font-size: 0.72rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.route-stat .value {
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--white);
}

.route-divider {
	width: 1px;
	background: rgba(255, 255, 255, 0.08);
	align-self: stretch;
}

.counter-group {
	display: flex;
	align-items: center;
	gap: 0;
	background: var(--dark-3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-sm);
	overflow: hidden;
}

.counter-group .counter-display {
	flex: 1;
	text-align: center;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--white);
	padding: 10px 4px;
	background: transparent;
	border: none;
	user-select: none;
}

.counter-btn {
	width: 44px;
	height: 44px;
	background: transparent;
	border: none;
	color: var(--gold);
	font-size: 1.2rem;
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: background var(--transition);
}

.counter-btn:hover {
	background: var(--gold-dim);
}

.counter-btn:active {
	background: rgba(255, 195, 0, 0.25);
}

.baggage-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: var(--radius-sm);
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: var(--dark-3);
	color: var(--text-muted);
	font-size: 0.85rem;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	cursor: pointer;
	transition: all var(--transition);
	white-space: nowrap;
}

.baggage-btn.active {
	background: var(--gold-dim);
	border-color: var(--gold);
	color: var(--gold);
}

.baggage-btn .bi {
	font-size: 1rem;
}

.btn-reserve {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 16px 32px;
	background: var(--gold);
	color: var(--dark);
	border: none;
	border-radius: var(--radius-sm);
	font-family: "Poppins", sans-serif;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition:
		transform var(--transition),
		box-shadow var(--transition);
}

.btn-reserve::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.25) 0%,
		transparent 60%
	);
}

.btn-reserve:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(255, 195, 0, 0.35);
}

.btn-reserve:active {
	transform: translateY(0);
	box-shadow: none;
}

.btn-reserve::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(
		120deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.5s ease;
}

.btn-reserve:hover::after {
	left: 150%;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	color: var(--text-muted);
}

.trust-item .bi {
	color: var(--gold);
	font-size: 0.9rem;
}

.form-sep {
	height: 1px;
	background: linear-gradient(90deg, var(--gold-border), transparent);
	margin: 32px 0;
}

.form-control.is-invalid,
.form-select.is-invalid {
	border-color: var(--red);
	background-image: none;
	box-shadow: 0 0 0 3px var(--red-glow);
	animation: shake 0.35s ease;
}

@keyframes shake {
	0%,
	100% {
		transform: translateX(0);
	}
	20% {
		transform: translateX(-6px);
	}
	40% {
		transform: translateX(6px);
	}
	60% {
		transform: translateX(-4px);
	}
	80% {
		transform: translateX(4px);
	}
}

.error-msg {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: 7px;
	padding: 8px 13px;
	background: linear-gradient(
		135deg,
		rgba(192, 57, 43, 0.18),
		rgba(255, 77, 77, 0.08)
	);
	border: 1px solid var(--red-border);
	border-left: 3px solid var(--red);
	border-radius: 0 6px 6px 0;
	font-size: 0.78rem;
	color: #ff8080;
	letter-spacing: 0.02em;
	animation: fadeSlideUp 0.25s ease forwards;
}

.error-msg .bi {
	color: var(--red);
	font-size: 0.9rem;
	flex-shrink: 0;
}

.field-wrap.has-error .form-label {
	color: #ff8080;
	transition: color 0.2s ease;
}

.route-spinner {
	width: 22px;
	height: 22px;
	border: 2px solid rgba(255, 195, 0, 0.2);
	border-top-color: var(--gold);
	border-radius: 50%;
	animation: spin 0.7s linear infinite;
	flex-shrink: 0;
}

.booking-rapel {
	display: none;
	align-items: center;
	gap: 16px;
	padding: 20px 24px;
	border-radius: var(--radius-sm);
	background: linear-gradient(135deg, #0a1628 0%, #0d2137 60%, #0a1e30 100%);
	border: 1px solid rgba(56, 189, 248, 0.25);
	border-left: 4px solid #38bdf8;
	box-shadow: 0 8px 32px rgba(14, 165, 233, 0.12);
	animation: fadeSlideUp 0.4s ease forwards;
	margin-bottom: 24px;
}

.booking-rapel.visible {
	display: flex;
}

.rapel-icon {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0ea5e9, #0284c7);
	display: grid;
	place-items: center;
	flex-shrink: 0;
	box-shadow: 0 4px 16px rgba(14, 165, 233, 0.35);
	animation: phonering 1.2s ease infinite;
}

@keyframes phonering {
	0%,
	100% {
		transform: rotate(0deg);
	}
	20% {
		transform: rotate(-15deg);
	}
	40% {
		transform: rotate(15deg);
	}
	60% {
		transform: rotate(-10deg);
	}
	80% {
		transform: rotate(10deg);
	}
}

.rapel-icon .bi {
	color: var(--white);
	font-size: 1.2rem;
}

.rapel-body .rapel-title {
	font-size: 0.95rem;
	font-weight: 500;
	color: #e0f2fe;
	margin-bottom: 3px;
}

.rapel-body .rapel-sub {
	font-size: 0.78rem;
	color: #7dd3fc;
	line-height: 1.5;
}

.rapel-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #38bdf8;
	flex-shrink: 0;
	margin-left: auto;
	box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.6);
	animation: pulse-dot 1.5s ease infinite;
}

@keyframes pulse-dot {
	0% {
		box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.6);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(56, 189, 248, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
	}
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* ═══════════════════════════════════════════════════════════════
FOOTER
═══════════════════════════════════════════════════════════════ */

.site-footer {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(
			ellipse 70% 50% at 50% 100%,
			rgba(255, 195, 0, 0.05),
			transparent
		),
		linear-gradient(180deg, #111113 0%, #0d0d0f 60%, #080809 100%);
	padding-bottom: 0;
}

/* top edge — gold gradient line separating from last section */
.footer-top-edge {
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 195, 0, 0.35) 30%,
		rgba(255, 195, 0, 0.6) 50%,
		rgba(255, 195, 0, 0.35) 70%,
		transparent
	);
	margin-bottom: 0;
}

/* ambient blobs */
.footer-blob {
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	filter: blur(110px);
	pointer-events: none;
	opacity: 0.04;
	background: var(--gold);
}
.footer-blob--left {
	bottom: 0;
	left: -120px;
}
.footer-blob--right {
	bottom: 20%;
	right: -120px;
}

/* ── Inner container ─────────────────────────────────────────── */
.footer-inner {
	position: relative;
	z-index: 2;
	padding-top: 72px;
}

/* ── Main grid — mobile: stacked, desktop: 4 cols ────────────── */
.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px 40px;
	padding-bottom: 64px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 640px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.footer-grid {
		grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
		gap: 0 48px;
	}
}

/* ─────────────────────────────────────────────────────────────
BRAND COL
───────────────────────────────────────────────────────────── */

.footer-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	margin-bottom: 18px;
}

.footer-logo-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--dark);
	display: grid;
	place-items: center;
	font-size: 0.95rem;
	flex-shrink: 0;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.footer-logo:hover .footer-logo-icon {
	transform: rotate(-8deg) scale(1.08);
	box-shadow: 0 6px 20px rgba(255, 195, 0, 0.35);
}

.footer-logo-text {
	font-family: "Poppins", sans-serif;
	font-size: 1rem;
	font-weight: 300;
	color: var(--white);
	letter-spacing: 0.04em;
}

.footer-logo-text strong {
	font-weight: 700;
	color: var(--gold);
}

.footer-tagline {
	font-size: 0.82rem;
	line-height: 1.75;
	color: var(--text-muted);
	max-width: 280px;
	margin-bottom: 20px;
}

/* rating pill */
.footer-rating {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 14px;
	border-radius: 100px;
	background: var(--gold-dim);
	border: 1px solid var(--gold-border);
	margin-bottom: 22px;
}

.footer-rating-stars {
	display: flex;
	gap: 2px;
}

.footer-rating-stars .bi {
	color: var(--gold);
	font-size: 0.7rem;
}

.footer-rating span {
	font-size: 0.75rem;
	color: var(--text-muted);
}

.footer-rating strong {
	color: var(--white);
}

/* social icons */
.footer-socials {
	display: flex;
	gap: 8px;
}

.footer-social {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--text-muted);
	display: grid;
	place-items: center;
	font-size: 0.9rem;
	text-decoration: none;
	transition:
		background 0.25s ease,
		border-color 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.footer-social:hover {
	background: var(--gold-dim);
	border-color: var(--gold-border);
	color: var(--gold);
	transform: translateY(-3px);
}

.footer-social--wa:hover {
	background: rgba(37, 211, 102, 0.12);
	border-color: rgba(37, 211, 102, 0.35);
	color: #25d366;
}

/* ─────────────────────────────────────────────────────────────
LINK COLUMNS
───────────────────────────────────────────────────────────── */

.footer-col-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 22px;
}

.footer-col-title-line {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--gold);
	border-radius: 2px;
	flex-shrink: 0;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.footer-links a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 0;
	font-size: 0.83rem;
	color: var(--text-muted);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition:
		color 0.25s ease,
		gap 0.25s ease,
		border-color 0.25s ease;
}

.footer-links a .bi {
	font-size: 0.62rem;
	color: rgba(255, 195, 0, 0.4);
	transition:
		color 0.25s ease,
		transform 0.25s ease;
	flex-shrink: 0;
}

.footer-links a:hover {
	color: var(--white);
	gap: 12px;
}

.footer-links a:hover .bi {
	color: var(--gold);
	transform: translateX(3px);
}

/* ─────────────────────────────────────────────────────────────
CONTACT COL
───────────────────────────────────────────────────────────── */

.footer-contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.footer-contact-icon {
	width: 32px;
	height: 32px;
	border-radius: 9px;
	background: var(--gold-dim);
	border: 1px solid var(--gold-border);
	color: var(--gold);
	display: grid;
	place-items: center;
	font-size: 0.8rem;
	flex-shrink: 0;
	margin-top: 1px;
	transition:
		background 0.25s ease,
		transform 0.25s ease;
}

.footer-contact-list li:hover .footer-contact-icon {
	background: var(--gold);
	color: var(--dark);
	transform: scale(1.08) rotate(-4deg);
}

/* pulsing clock icon */
.footer-contact-icon--pulse {
	animation: footer-icon-pulse 2.2s ease infinite;
}

@keyframes footer-icon-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(255, 195, 0, 0.4);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(255, 195, 0, 0);
	}
}

.footer-contact-list span {
	display: block;
	font-size: 0.68rem;
	color: var(--text-muted);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 3px;
}

.footer-contact-list a {
	display: block;
	font-size: 0.84rem;
	font-weight: 500;
	color: var(--white);
	text-decoration: none;
	transition: color 0.25s ease;
}

.footer-contact-list a:hover {
	color: var(--gold);
}

.footer-contact-list strong {
	display: block;
	font-size: 0.84rem;
	font-weight: 500;
	color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════
CTA BANNER
═══════════════════════════════════════════════════════════════ */

.footer-cta-banner {
	margin: 48px 0;
	border-radius: 20px;
	padding: 2px; /* border gradient trick            */
	background: linear-gradient(
		135deg,
		rgba(255, 195, 0, 0.4),
		rgba(255, 195, 0, 0.08) 50%,
		rgba(255, 195, 0, 0.25)
	);
}

.footer-cta-banner-inner {
	border-radius: 18px;
	padding: 28px 32px;
	background: linear-gradient(
		135deg,
		rgba(255, 195, 0, 0.07),
		rgba(255, 195, 0, 0.02)
	);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.footer-cta-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.footer-cta-text strong {
	font-family: "Poppins", serif;
	font-size: clamp(1rem, 2.5vw, 1.25rem);
	font-weight: 600;
	color: var(--white);
}

.footer-cta-text span {
	font-size: 0.82rem;
	color: var(--text-muted);
}

.footer-cta-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.footer-cta-call {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	height: 42px;
	padding: 0 18px;
	border-radius: var(--radius-sm);
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--text-light);
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: transparent;
	transition:
		border-color 0.25s ease,
		color 0.25s ease,
		background 0.25s ease;
}

.footer-cta-call .bi {
	color: var(--gold);
}

.footer-cta-call:hover {
	border-color: var(--gold);
	color: var(--gold);
	background: var(--gold-dim);
}

/* ═══════════════════════════════════════════════════════════════
BOTTOM BAR
═══════════════════════════════════════════════════════════════ */

.footer-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 24px 0 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	text-align: center;
}

@media (min-width: 992px) {
	.footer-bottom {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		text-align: left;
	}
}

.footer-bottom-left span {
	font-size: 0.75rem;
	color: var(--text-muted);
}

/* trust badges row */
.footer-bottom-badges {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.footer-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 0.68rem;
	font-weight: 500;
	color: var(--text-muted);
	padding: 4px 10px;
	border-radius: 100px;
	border: 1px solid rgba(255, 255, 255, 0.07);
	background: rgba(255, 255, 255, 0.025);
	letter-spacing: 0.04em;
}

.footer-badge .bi {
	color: var(--gold);
	font-size: 0.7rem;
}

.footer-bottom-right {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.footer-bottom-right a {
	font-size: 0.75rem;
	color: var(--text-muted);
	text-decoration: none;
	transition: color 0.25s ease;
}

.footer-bottom-right a:hover {
	color: var(--gold);
}

.footer-bottom-right span {
	font-size: 0.7rem;
}

/* ─────────────────────────────────────────────────────────────
LEGAL FOOTER — standalone bar used on legal pages & 404
───────────────────────────────────────────────────────────── */
.legal-footer {
	padding: 24px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-footer-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	text-align: center;
}

@media (min-width: 768px) {
	.legal-footer-inner {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

.legal-footer-copy {
	font-size: 0.75rem;
	color: var(--text-muted);
}

.legal-footer-links {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.legal-footer-links a {
	display: inline-flex;
	align-items: center;
	font-size: 0.78rem;
	color: var(--text-muted);
	text-decoration: none;
	transition: color 0.25s ease;
}

.legal-footer-links a:hover {
	color: var(--gold);
}

.legal-footer-links a.active {
	color: var(--gold);
}

.legal-footer-links .sep {
	color: var(--text-muted);
	opacity: 0.4;
	font-size: 0.75rem;
}

/* ── Mobile fine-tuning ──────────────────────────────────────── */
@media (max-width: 575px) {
	.footer-inner {
		padding-top: 52px;
	}
	.footer-grid {
		gap: 36px;
		padding-bottom: 48px;
	}
	.footer-cta-banner-inner {
		padding: 22px 18px;
	}
	.footer-cta-actions {
		width: 100%;
	}
	.footer-cta-call,
	.footer-cta-banner .btn-main {
		width: 100%;
		justify-content: center;
	}
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */

/* ── Mobile base: car hidden by default ──────────────────── */
.car-stage {
	display: none;
}

@media (min-width: 576px) {
	.hero {
		min-height: 100svh;
		padding: 24px 0 92px;
	}

	.hero-title {
		font-size: clamp(3rem, 7vw, 4.25rem);
	}

	.hero-info-card {
		max-width: 330px;
		padding: 20px;
	}

	.hero-info-card p {
		display: block;
	}

	.mini-item:nth-child(3) {
		display: flex;
	}

	/* car visible from sm upward */
	.car-stage {
		display: block;
		width: min(550px, 54vw);
		bottom: -100px;
	}

	.next-preview {
		padding: 104px 0 44px;
	}
}

@media (min-width: 992px) {
	.hero {
		min-height: 100svh;
		padding: 28px 0 96px;
	}

	.hero-title {
		font-size: clamp(3.7rem, 5.2vw, 5.15rem);
	}

	.hero-text {
		font-size: 0.96rem;
	}

	.hero-info-card {
		max-width: 340px;
		padding: 22px;
	}

	.car-stage {
		width: min(550px, 48vw);
		bottom: -112px;
	}

	.next-preview {
		padding-top: 122px;
	}

	.booking-card {
		padding: 52px 52px;
	}
}

@media (max-width: 576px) {
	#reservation {
		padding: 60px 0 70px;
	}

	.booking-card {
		padding: 28px 18px;
	}
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE-FIRST COMPREHENSIVE FIXES
   Poppins font applied globally, pixel-perfect mobile layout
   ═══════════════════════════════════════════════════════════════ */

/* ── Global Poppins override for any missed elements ────────── */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-title,
.about-headline-main,
.hiw-step-title,
.svc-title,
.avis-name,
.faq-trigger-text,
.footer-cta-text strong {
	font-family: "Poppins", sans-serif;
}

button,
input,
select,
textarea,
.form-control,
.form-select,
.btn-main,
.btn-call,
.btn-reserve,
.nav-btn,
.svc-link,
.faq-contact-btn,
.baggage-btn,
.counter-btn {
	font-family: "Poppins", sans-serif;
}

/* ── Hero mobile ─────────────────────────────────────────────── */
@media (max-width: 575px) {
	.hero {
		min-height: 100svh;
		padding: 80px 0 60px;
		align-items: flex-start;
		padding-top: 100px;
	}

	.hero-badge {
		font-size: 0.65rem;
		padding: 5px 12px;
	}

	.hero-title {
		font-size: clamp(2rem, 9vw, 2.8rem);
		letter-spacing: -0.03em;
	}

	.hero-text {
		font-size: 0.82rem;
		line-height: 1.7;
	}

	/* info card full width on mobile */
	.hero-info-card {
		width: 100%;
		max-width: 100%;
	}

	/* hide car entirely on mobile — already done via display:none above,
     this ensures no space is reserved */
	.car-stage {
		display: none !important;
	}

	/* section below hero needs no car-offset padding on mobile */
	.services-section {
		padding-top: 60px;
	}
}

/* ── Services mobile ─────────────────────────────────────────── */
@media (max-width: 575px) {
	.services-section {
		padding: 60px 0 70px;
	}
	.services-header {
		margin-bottom: 40px;
	}
	.svc-card {
		padding: 22px 18px 18px;
	}
	.svc-title {
		font-size: 0.95rem;
	}
	.svc-desc {
		font-size: 0.8rem;
	}
	.svc-list li {
		font-size: 0.75rem;
	}
	.svc-number {
		font-size: 1.8rem;
	}
}

/* ── How it works mobile ─────────────────────────────────────── */
@media (max-width: 575px) {
	.hiw-section {
		padding: 60px 0 70px;
	}
	.hiw-header {
		margin-bottom: 44px;
	}
	.hiw-step-title {
		font-size: 0.95rem;
	}
	.hiw-step-desc {
		font-size: 0.8rem;
	}
	.hiw-ambient-num {
		font-size: 2.8rem;
	}
	.hiw-icon {
		width: 48px;
		height: 48px;
		font-size: 1.1rem;
	}
	.hiw-step-body {
		padding-left: 62px;
		margin-top: -46px;
	}
	.hiw-step--final .hiw-step-body {
		margin-left: 62px;
		padding: 16px;
	}
	.hiw-guarantee {
		padding: 8px 14px;
		font-size: 0.78rem;
	}
	.hiw-cta {
		margin-top: 44px;
	}
}

/* ── Avis / Reviews mobile ───────────────────────────────────── */
@media (max-width: 575px) {
	.avis-section {
		padding: 60px 0 70px;
	}
	.avis-header {
		margin-bottom: 40px;
	}
	.avis-card {
		padding: 22px 18px 18px;
	}
	.avis-quote {
		font-size: 0.8rem;
	}
	.avis-name {
		font-size: 0.85rem;
	}
	.avis-nav--prev {
		left: -8px;
	}
	.avis-nav--next {
		right: -8px;
	}
	.avis-nav {
		width: 36px;
		height: 36px;
		font-size: 0.85rem;
	}
}

/* ── FAQ mobile ──────────────────────────────────────────────── */
@media (max-width: 575px) {
	.faq-section {
		padding: 60px 0 70px;
	}
	.faq-header {
		margin-bottom: 40px;
	}
	.faq-trigger {
		padding: 14px 14px;
		gap: 10px;
	}
	.faq-trigger-text {
		font-size: 0.82rem;
	}
	.faq-trigger-icon {
		width: 30px;
		height: 30px;
		font-size: 0.75rem;
	}
	.faq-body-inner {
		padding: 0 14px 18px 14px;
	}
	.faq-contact-card {
		padding: 22px 18px;
	}
}

/* ── About mobile ────────────────────────────────────────────── */
@media (max-width: 575px) {
	.about-section {
		padding-bottom: 70px;
	}
	.about-ticker-wrap {
		margin-bottom: 48px;
	}
	.about-headline-main {
		font-size: clamp(2rem, 10vw, 2.8rem);
	}
	.about-narrative-lead {
		font-size: 0.9rem !important;
	}
	.about-narrative p {
		font-size: 0.8rem;
	}
	.about-pillar {
		padding: 14px 14px;
		gap: 12px;
	}
	.about-pillar strong {
		font-size: 0.85rem;
	}
	.about-pillar span {
		font-size: 0.74rem;
	}
	.about-pillar-icon {
		width: 34px;
		height: 34px;
		font-size: 0.9rem;
	}
	.mosaic-frame {
		aspect-ratio: 3/2;
	}
	.mosaic-stat-card {
		right: 8px;
		top: 16px;
		min-width: 110px;
		padding: 12px 14px;
	}
	.mosaic-stat-num {
		font-size: 1.6rem;
	}
}

/* ── Booking form mobile ─────────────────────────────────────── */
@media (max-width: 575px) {
	.booking-card {
		padding: 24px 16px;
	}
	.step-text strong {
		font-size: 0.88rem;
	}
	.form-label {
		font-size: 0.72rem;
	}
	.form-control,
	.form-select {
		font-size: 0.85rem;
		padding: 10px 14px;
	}
	.input-icon-wrap .form-control,
	.input-icon-wrap .form-select {
		padding-left: 38px;
	}
	.baggage-btn {
		font-size: 0.78rem;
		padding: 8px 12px;
	}
	.btn-reserve {
		font-size: 0.9rem;
		padding: 14px 24px;
	}
}

/* ── Footer mobile ───────────────────────────────────────────── */
@media (max-width: 575px) {
	.footer-inner {
		padding-top: 48px;
	}
	.footer-grid {
		gap: 32px;
		padding-bottom: 40px;
	}
	.footer-cta-banner-inner {
		padding: 20px 16px;
		flex-direction: column;
	}
	.footer-cta-text strong {
		font-size: 1rem;
	}
	.footer-cta-actions {
		width: 100%;
		flex-direction: column;
	}
	.footer-cta-call,
	.footer-cta-banner .btn-main {
		width: 100%;
		justify-content: center;
	}
	.footer-bottom {
		gap: 14px;
		padding: 20px 0 28px;
	}
	.footer-bottom-badges {
		gap: 8px;
	}
	.footer-badge {
		font-size: 0.62rem;
		padding: 3px 8px;
	}
}

/* ── Section badge & titles — mobile ────────────────────────── */
@media (max-width: 575px) {
	.section-badge {
		font-size: 0.65rem;
		padding: 5px 12px;
	}
	.section-title {
		font-size: clamp(1.8rem, 8vw, 2.4rem);
	}
	.section-lead {
		font-size: 0.82rem;
	}
	.gold-line {
		margin: 16px auto;
	}
}

/* ── Trust items mobile ──────────────────────────────────────── */
@media (max-width: 575px) {
	.trust-item {
		font-size: 0.74rem;
	}
}

/* ── WhatsApp button — move up slightly on mobile so
   it doesn't overlap content ──────────────────────────────── */
@media (max-width: 575px) {
	.whatsapp {
		right: 12px;
		bottom: 20px;
		width: 48px;
		height: 48px;
		font-size: 1.2rem;
	}
}

/* ── Tablet (576–991px) tweaks ───────────────────────────────── */
@media (min-width: 576px) and (max-width: 991px) {
	.hero {
		padding-top: 90px;
	}
	.hero-title {
		font-size: clamp(2.4rem, 6vw, 3.4rem);
	}

	/* services 2-col on tablet */
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* about mosaic centre on tablet */
	.about-mosaic {
		max-width: 520px;
		margin: 0 auto;
	}

	/* faq layout stacked on tablet */
	.faq-contact-card {
		max-width: 100%;
	}
}

/* ═══════════════════════════════════════════════════════════
   intl-tel-input — dark theme integration
   ═══════════════════════════════════════════════════════════ */

/* Phone wrap: no icon, reset left padding so iti controls it */
.phone-wrap .form-control {
	padding-left: 16px;
}

/* Make iti container fill the column */
.phone-wrap .iti {
	width: 100%;
	display: block;
}

/* Flag button background matches form */
.iti__selected-flag {
	background: var(--dark-3);
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-sm) 0 0 var(--radius-sm);
	outline: none;
}

.iti__selected-flag:hover {
	background: rgba(255, 195, 0, 0.08);
}

/* Dial-code text next to flag */
.iti__selected-dial-code {
	color: var(--white);
	font-family: "Poppins", sans-serif;
	font-size: 0.88rem;
	font-weight: 400;
}

/* Dropdown panel */
.iti__country-list {
	background: var(--dark-3);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-sm);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
	color: var(--white);
	z-index: 9999;
}

/* Country row hover / highlight */
.iti__country:hover,
.iti__country.iti__highlight {
	background: rgba(255, 195, 0, 0.1);
}

/* Country name & dial code in list */
.iti__country-name {
	color: var(--dark-4);
	font-family: "Poppins", sans-serif;
	font-size: 0.85rem;
}

.iti__dial-code {
	color: var(--dark-4) !important;
	font-size: 0.8rem;
}

/* Preferred-countries divider */
.iti__divider {
	border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* Search input inside dropdown */
.iti__search-input {
	background: var(--dark);
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-sm);
	font-family: "Poppins", sans-serif;
	font-size: 0.85rem;
	padding: 8px 12px;
}

.iti__search-input::placeholder {
	color: #555;
}

.iti__search-input:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(255, 195, 0, 0.12);
}

/* Focus ring on the actual phone input */
#phoneInput:focus {
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(255, 195, 0, 0.12);
}

/* Invalid state — keep existing red border logic for phone too */
#phoneInput.is-invalid {
	border-color: var(--red, #ff4444);
}

/*  
	Langue btn
*/
.lang-toggle {
				position: fixed;
				bottom: 68px;
				right: 22px;
				z-index: 600;
				display: flex;
				align-items: center;
				gap: 2px;
				background: rgba(28, 28, 28, 0.92);
				border: 1px solid rgba(255, 195, 0, 0.25);
				border-radius: 999px;
				padding: 5px 6px 5px 10px;
				box-shadow:
					0 8px 32px rgba(0, 0, 0, 0.5),
					0 0 0 1px rgba(255, 195, 0, 0.08);
				backdrop-filter: blur(14px);
				-webkit-backdrop-filter: blur(14px);
				transition:
					box-shadow 0.25s ease,
					border-color 0.25s ease;
			}
			.lang-toggle:hover {
				border-color: rgba(255, 195, 0, 0.45);
				box-shadow:
					0 12px 40px rgba(0, 0, 0, 0.55),
					0 0 0 1px rgba(255, 195, 0, 0.15);
			}
			.lang-toggle-globe {
				font-size: 0.8rem;
				margin-right: 4px;
				opacity: 0.7;
				flex-shrink: 0;
			}
			.lang-toggle-divider {
				width: 1px;
				height: 16px;
				background: rgba(255, 195, 0, 0.2);
				flex-shrink: 0;
			}
			.lang-btn {
				display: flex;
				align-items: center;
				justify-content: center;
				width: 34px;
				height: 30px;
				border-radius: 999px;
				border: none;
				background: transparent;
				color: #7a7a7a;
				font-size: 0.68rem;
				font-weight: 700;
				letter-spacing: 0.08em;
				cursor: pointer;
				transition: all 0.22s ease;
				font-family: "Poppins", sans-serif;
				flex-shrink: 0;
			}
			.lang-btn:hover:not(.lang-btn--active) {
				color: #e0e0e0;
				background: rgba(255, 255, 255, 0.06);
			}
			.lang-btn--active {
				background: var(--gold, #ffc300) !important;
				color: #1c1c1c !important;
				box-shadow: 0 2px 10px rgba(255, 195, 0, 0.35);
			}
			@media (max-width: 480px) {
				.lang-toggle {
					bottom: 40px;
					right: 14px;
				}
			}
/* ======================================================
   LOGO IMAGES (nav + footer)
   ====================================================== */
.nav-logo-img {
	height: 36px;
	width: auto;
	display: block;
	object-fit: contain;
}
.footer-logo-img {
	height: 42px;
	width: auto;
	display: block;
	object-fit: contain;
}
.nav-logo-img--dark,
.footer-logo-img--dark {
	display: none;
}
[data-theme="light"] .nav-logo-img--light,
[data-theme="light"] .footer-logo-img--light {
	display: none;
}
[data-theme="light"] .nav-logo-img--dark,
[data-theme="light"] .footer-logo-img--dark {
	display: block;
}

/* ======================================================
   THEME TOGGLE BUTTON
   ====================================================== */
.theme-toggle {
	position: fixed;
	bottom: 80px;
	right: 22px;
	z-index: 600;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(255, 195, 0, 0.25);
	background: rgba(28, 28, 28, 0.92);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	cursor: pointer;
	display: grid;
	place-items: center;
	font-size: 0.95rem;
	color: #e0e0e0;
	transition:
		background 0.25s ease,
		border-color 0.25s ease,
		color 0.25s ease,
		box-shadow 0.25s ease;
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(255, 195, 0, 0.08);
}
.theme-toggle:hover {
	border-color: rgba(255, 195, 0, 0.5);
	color: #ffc300;
	box-shadow:
		0 12px 40px rgba(0, 0, 0, 0.55),
		0 0 0 1px rgba(255, 195, 0, 0.15);
}
.theme-toggle .ti-sun {
	display: none;
}
.theme-toggle .ti-moon {
	display: block;
}
[data-theme="light"] .theme-toggle .ti-sun {
	display: block;
}
[data-theme="light"] .theme-toggle .ti-moon {
	display: none;
}
[data-theme="light"] .theme-toggle {
	background: rgba(252, 249, 243, 0.92);
	border-color: rgba(0, 0, 0, 0.14);
	color: #555;
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.1),
		0 0 0 1px rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .theme-toggle:hover {
	border-color: rgba(255, 195, 0, 0.5);
	color: #c89000;
}
@media (max-width: 480px) {
	.theme-toggle {
		bottom: 70px;
		right: 14px;
		width: 38px;
		height: 38px;
		font-size: 0.85rem;
	}
}

/* ======================================================
   LIGHT THEME OVERRIDES  (html[data-theme="light"])
   ====================================================== */
[data-theme="light"] {
	--dark: #f8f5ef;
	--dark-2: #ede9df;
	--dark-3: #e3ddd1;
	--dark-4: #faf8f4;
	--text-light: #1a1a1a;
	--text-muted: #6b6464;
	--white: #111111;
	--gold-dim: rgba(255, 195, 0, 0.14);
	--gold-border: rgba(255, 195, 0, 0.45);
}
[data-theme="light"] #siteNav.scrolled {
	background: rgba(252, 249, 243, 0.94);
	border-color: rgba(0, 0, 0, 0.09);
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.08),
		0 1px 0 rgba(0, 0, 0, 0.04) inset;
}
[data-theme="light"] .nav-link {
	color: rgba(26, 26, 26, 0.72);
}
[data-theme="light"] .nav-link:hover {
	color: #1a1a1a;
	background: rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .nav-link.active {
	color: #d7a400;
}
[data-theme="light"] .nav-logo-text {
	color: #1a1a1a;
}
[data-theme="light"] .nav-btn--ghost {
	color: #1a1a1a;
	border-color: rgba(0, 0, 0, 0.18);
}
[data-theme="light"] .nav-btn--ghost:hover {
	color: #d7a400;
	background: rgba(255, 195, 0, 0.08);
	border-color: rgba(255, 195, 0, 0.45);
}
[data-theme="light"] #navLinks.open,
[data-theme="light"] .nav-ctas.open {
	background: rgba(252, 249, 243, 0.97);
	border-color: rgba(255, 195, 0, 0.2);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .hero {
	background:
		linear-gradient(
			90deg,
			rgba(248, 245, 239, 0.97) 0%,
			rgba(248, 245, 239, 0.93) 36%,
			rgba(248, 245, 239, 0.74) 62%,
			rgba(248, 245, 239, 0.44) 100%
		),
		url("../img/louvre.jpg") center / cover no-repeat;
}
[data-theme="light"] .hero::after {
	background: linear-gradient(180deg, transparent, var(--dark));
}
[data-theme="light"] .hero-title {
	color: #111111;
}
[data-theme="light"] .mini-item {
	border-top-color: rgba(0, 0, 0, 0.08);
	color: #1a1a1a;
}
[data-theme="light"] .hero-info-card {
	background: rgba(255, 255, 255, 0.88);
	border-color: rgba(255, 195, 0, 0.28);
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.12),
		0 0 0 1px rgba(255, 195, 0, 0.1);
}
[data-theme="light"] .hero-info-card h2 {
	color: #111111;
}
[data-theme="light"] .services-section {
	background:
		radial-gradient(
			ellipse 70% 38% at 50% -4%,
			rgba(255, 195, 0, 0.07),
			transparent
		),
		linear-gradient(
			180deg,
			var(--dark-2) 0%,
			var(--dark-3) 50%,
			var(--dark-2) 100%
		);
}
[data-theme="light"] .svc-card {
	background: rgba(255, 255, 255, 0.7);
	border-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .svc-card:hover {
	background: rgba(255, 255, 255, 0.92);
	border-color: rgba(255, 195, 0, 0.3);
	box-shadow:
		0 12px 40px rgba(0, 0, 0, 0.1),
		0 0 0 1px rgba(255, 195, 0, 0.1);
}
[data-theme="light"] .svc-number {
	color: rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .svc-card:hover .svc-number {
	color: rgba(255, 195, 0, 0.2);
}
[data-theme="light"] .svc-footer {
	border-top-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .svc-link:hover {
	color: #111111;
}
[data-theme="light"] .hiw-section {
	background:
		radial-gradient(
			ellipse 60% 40% at 20% 50%,
			rgba(255, 195, 0, 0.05),
			transparent
		),
		radial-gradient(
			ellipse 50% 40% at 80% 50%,
			rgba(255, 195, 0, 0.04),
			transparent
		),
		var(--dark);
}
[data-theme="light"] .hiw-ambient-num {
	color: rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .hiw-step:hover .hiw-ambient-num {
	color: rgba(255, 195, 0, 0.14);
}
[data-theme="light"] .avis-section {
	background:
		radial-gradient(
			ellipse 80% 40% at 50% -10%,
			rgba(255, 195, 0, 0.06),
			transparent
		),
		var(--dark-2);
}
[data-theme="light"] .avis-card {
	background: rgba(255, 255, 255, 0.78);
	border-color: rgba(0, 0, 0, 0.08);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .avis-card:hover {
	border-color: rgba(255, 195, 0, 0.3);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .avis-verified {
	background: var(--dark-2);
}
[data-theme="light"] .avis-dot {
	background: rgba(0, 0, 0, 0.15);
}
[data-theme="light"] .avis-nav {
	background: rgba(255, 255, 255, 0.9);
	border-color: rgba(0, 0, 0, 0.1);
	color: #1a1a1a;
}
[data-theme="light"] .avis-nav:hover {
	background: #ffc300;
	border-color: #ffc300;
	color: #1a1a1a;
}
[data-theme="light"] .faq-section {
	background:
		radial-gradient(
			ellipse 55% 35% at 50% 0%,
			rgba(255, 195, 0, 0.06),
			transparent
		),
		var(--dark);
}
[data-theme="light"] .faq-item {
	background: rgba(255, 255, 255, 0.65);
	border-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .faq-item--open,
[data-theme="light"] .faq-item:has(.faq-trigger[aria-expanded="true"]) {
	background: rgba(255, 255, 255, 0.92);
	border-color: rgba(255, 195, 0, 0.28);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .faq-trigger:hover {
	background: rgba(0, 0, 0, 0.03);
}
[data-theme="light"] .faq-chevron {
	border-color: rgba(0, 0, 0, 0.12);
}
[data-theme="light"] .faq-contact-card {
	background: rgba(255, 255, 255, 0.8);
	border-color: rgba(0, 0, 0, 0.08);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .about-section {
	background: var(--dark-2);
}
[data-theme="light"] .about-ticker-wrap {
	background: rgba(255, 255, 255, 0.5);
}
[data-theme="light"] .about-year {
	color: rgba(0, 0, 0, 0.04);
}
[data-theme="light"] #reservation {
	background: var(--dark);
}
[data-theme="light"] .booking-card {
	background: rgba(255, 255, 255, 0.9);
	border-color: rgba(0, 0, 0, 0.07);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .form-section-label {
	border-bottom-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .form-control,
[data-theme="light"] .form-select {
	background: var(--dark-4);
	border-color: rgba(0, 0, 0, 0.12);
	color: #1a1a1a;
}
[data-theme="light"] .form-control:focus,
[data-theme="light"] .form-select:focus {
	background: #fff;
	color: #1a1a1a;
	box-shadow: 0 0 0 3px rgba(255, 195, 0, 0.14);
}
[data-theme="light"] .form-control::placeholder {
	color: #aaa;
}
[data-theme="light"] .form-select option {
	background: #fff;
	color: #1a1a1a;
}
[data-theme="light"] .counter-group {
	background: var(--dark-4);
	border-color: rgba(0, 0, 0, 0.12);
}
[data-theme="light"] .route-visual {
	background: rgba(255, 255, 255, 0.7);
	border-color: rgba(255, 195, 0, 0.45);
}
[data-theme="light"] .route-divider {
	background: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .baggage-btn {
	background: var(--dark-4);
	border-color: rgba(0, 0, 0, 0.12);
	color: #1a1a1a;
}
[data-theme="light"] .baggage-btn.active {
	background: rgba(255, 195, 0, 0.14);
	border-color: #ffc300;
	color: #d7a400;
}
[data-theme="light"] .baggage-btn:not(.active):hover {
	background: rgba(255, 195, 0, 0.08);
	border-color: rgba(255, 195, 0, 0.3);
	color: #d7a400;
}
[data-theme="light"] .iti__country-list {
	background: #fff;
	color: #1a1a1a;
	border-color: rgba(0, 0, 0, 0.12);
}
[data-theme="light"] .iti__country.iti__highlight {
	background: rgba(255, 195, 0, 0.14);
}
[data-theme="light"] .site-footer {
	background:
		radial-gradient(
			ellipse 70% 50% at 50% 100%,
			rgba(255, 195, 0, 0.06),
			transparent
		),
		linear-gradient(180deg, var(--dark-2) 0%, var(--dark-3) 60%, #d4cebf 100%);
}
[data-theme="light"] .footer-grid {
	border-bottom-color: rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .footer-social {
	background: rgba(0, 0, 0, 0.05);
	border-color: rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .footer-cta-banner-inner {
	background: linear-gradient(
		135deg,
		rgba(255, 195, 0, 0.12),
		rgba(255, 195, 0, 0.04)
	);
}
[data-theme="light"] .footer-cta-call {
	color: #1a1a1a;
	border-color: rgba(0, 0, 0, 0.15);
}
[data-theme="light"] .footer-cta-call:hover {
	color: #d7a400;
	border-color: rgba(255, 195, 0, 0.45);
}
[data-theme="light"] .footer-bottom {
	border-top-color: rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .footer-badge {
	border-color: rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0.4);
}
[data-theme="light"] .footer-bottom-right span {
	color: rgba(0, 0, 0, 0.2);
}
[data-theme="light"] .legal-footer {
	border-top-color: rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .lang-toggle {
	background: rgba(252, 249, 243, 0.92);
	border-color: rgba(0, 0, 0, 0.12);
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.1),
		0 0 0 1px rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .lang-toggle-globe {
	color: #555;
}
[data-theme="light"] .lang-toggle-divider {
	background: rgba(0, 0, 0, 0.12);
}
[data-theme="light"] .lang-btn {
	color: #888;
}
[data-theme="light"] .lang-btn:hover:not(.lang-btn--active) {
	color: #1a1a1a;
	background: rgba(0, 0, 0, 0.05);
}
