/* ============================================================
   LOCAZEN — styles.css
   Tenant screening platform for Lanaudière & Rive-Nord
   Glassmorphism + Dark/Light + Noise Texture
   Local fonts only — No Google Fonts
   ============================================================ */

/* ─── FONT FACES ─── */
@font-face {
	font-family: "Satoshi";
	src: url("../public/fonts/Satoshi-Variable.woff2") format("woff2");
	font-weight: 300 900;
	font-display: swap;
}
@font-face {
	font-family: "Satoshi";
	src: url("../public/fonts/Satoshi-Italic.woff2") format("woff2");
	font-style: italic;
	font-weight: 300 900;
	font-display: swap;
}
@font-face {
	font-family: "Gilroy";
	src: url("../public/fonts/Gilroy-Medium.woff2") format("woff2");
	font-weight: 500;
	font-display: swap;
}
@font-face {
	font-family: "Gilroy";
	src: url("../public/fonts/Gilroy-Thin.woff2") format("woff2");
	font-weight: 300;
	font-display: swap;
}
@font-face {
	font-family: "Momcake";
	src: url("../public/fonts/MomcakePro-Regular.woff2") format("woff2");
	font-weight: 300 700;
	font-display: swap;
}

/* ─── RESET ─── */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* ─── CSS VARIABLES — LIGHT MODE ─── */
:root {
	--bg-primary: #f2f6fa;
	--bg-secondary: #e8eef5;
	--bg-card: rgba(255, 255, 255, 0.6);
	--bg-card-solid: #ffffff;
	--text-primary: #1a2a3a;
	--text-secondary: #4a5f73;
	--text-muted: #7a8fa0;

	/* Logo-matched accents */
	--accent: #28b5b5;
	--accent-dark: #1e9a9a;
	--accent-light: #5dd5d0;
	--accent-glow: rgba(40, 181, 181, 0.25);
	--navy: #1a3754;
	--navy-deep: #0f2540;
	--navy-light: #2a5070;

	--border: rgba(26, 55, 84, 0.08);
	--border-hover: rgba(40, 181, 181, 0.4);
	--glass-bg: rgba(255, 255, 255, 0.7);
	--glass-border: rgba(255, 255, 255, 0.55);
	--shadow-soft: 0 4px 24px rgba(26, 55, 84, 0.06);
	--shadow-medium: 0 8px 40px rgba(26, 55, 84, 0.1);
	--shadow-glow: 0 8px 32px rgba(40, 181, 181, 0.15);
	--gradient-brand: linear-gradient(135deg, #1a3754 0%, #28b5b5 100%);
	--gradient-accent: linear-gradient(135deg, #28b5b5 0%, #5dd5d0 100%);
	--noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

	--success: #34d399;
	--caution: #fbbf24;
	--danger: #f87171;
}

/* ─── DARK MODE ─── */
body.dark-mode {
	--bg-primary: #0a1520;
	--bg-secondary: #0f1f30;
	--bg-card: rgba(15, 31, 48, 0.6);
	--bg-card-solid: #132638;
	--text-primary: #e8f0f8;
	--text-secondary: #a0b8cc;
	--text-muted: #6882a0;
	--accent: #3dd8d8;
	--accent-dark: #28b5b5;
	--accent-light: #7aeaea;
	--accent-glow: rgba(61, 216, 216, 0.2);
	--navy: #c0d8ee;
	--border: rgba(255, 255, 255, 0.06);
	--border-hover: rgba(61, 216, 216, 0.35);
	--glass-bg: rgba(15, 31, 48, 0.75);
	--glass-border: rgba(255, 255, 255, 0.08);
	--shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.3);
	--shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.4);
	--shadow-glow: 0 8px 32px rgba(61, 216, 216, 0.12);
}

/* ─── BASE ─── */
html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: "Satoshi", -apple-system, BlinkMacSystemFont, sans-serif;
	line-height: 1.7;
	background: var(--bg-primary);
	color: var(--text-primary);
	transition:
		background 0.5s ease,
		color 0.5s ease;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Momcake", "Gilroy", sans-serif;
	font-weight: 700;
	letter-spacing: -0.01em;
}

/* ─── NOISE OVERLAY ─── */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	background-image: var(--noise);
	opacity: 0.025;
	pointer-events: none;
	z-index: 1000;
}

/* ─── ANIMATED BG GRADIENT ─── */
.bg-gradient {
	position: fixed;
	inset: 0;
	z-index: -1;
	overflow: hidden;
}
.bg-gradient::before {
	content: "";
	position: absolute;
	width: 150%;
	height: 150%;
	top: -25%;
	left: -25%;
	background:
		radial-gradient(
			ellipse 80% 50% at 20% 30%,
			var(--accent-glow) 0%,
			transparent 50%
		),
		radial-gradient(
			ellipse 60% 40% at 80% 70%,
			rgba(26, 55, 84, 0.1) 0%,
			transparent 50%
		);
	animation: gradientShift 20s ease-in-out infinite;
}
@keyframes gradientShift {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	33% {
		transform: translate(2%, 1%) rotate(1deg);
	}
	66% {
		transform: translate(-1%, 2%) rotate(-1deg);
	}
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.7;
		transform: scale(1.15);
	}
}

/* ─── HEADER / NAV ─── */
header {
	position: sticky;
	top: 0;
	z-index: 100;
	padding: 0 2rem;
}
nav {
	max-width: 1400px;
	margin: 0.75rem auto;
	padding: 0.7rem 1rem 0.7rem 1.25rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 100px;
	box-shadow: var(--shadow-soft);
	transition: all 0.4s ease;
}
nav:hover {
	box-shadow: var(--shadow-medium);
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	text-decoration: none;
	cursor: pointer;
}
.logo-text {
	font-family: "Momcake", "Gilroy", sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--text-primary);
	letter-spacing: -0.01em;
}
.logo-zen {
	color: var(--accent);
}

.logo-region {
	font-size: 0.7rem;
	font-weight: 500;
	color: var(--text-muted);
	letter-spacing: 0.04em;
	white-space: nowrap;
	border-left: 1px solid var(--border);
	padding-left: 0.6rem;
	line-height: 1.2;
}

.nav-links {
	display: flex;
	gap: 0.25rem;
	list-style: none;
	align-items: center;
}
.nav-links a {
	text-decoration: none;
	color: var(--text-secondary);
	cursor: pointer;
	padding: 0.55rem 1rem;
	border-radius: 50px;
	font-size: 0.88rem;
	font-weight: 500;
	transition: all 0.3s ease;
}
.nav-links a:hover {
	color: var(--text-primary);
	background: var(--border);
}
.nav-links a.active {
	color: var(--accent);
}

.theme-toggle {
	background: var(--bg-card-solid);
	border: 1px solid var(--border);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	color: var(--text-secondary);
	font-family: inherit;
	font-size: 0.85rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}
.theme-toggle:hover {
	background: var(--accent);
	color: white;
	border-color: var(--accent);
}
/* Jon's signature: press IN */
.theme-toggle:active {
	transform: scale(0.95);
	box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* ─── MOBILE NAV ─── */
.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: var(--text-primary);
	cursor: pointer;
	padding: 0.5rem;
	font-size: 1.4rem;
}

/* ─── LISTING CARDS ─── */
.card-image {
	height: 220px;
	background: var(--bg-secondary);
	position: relative;
	overflow: hidden;
}
.card-image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		to bottom,
		transparent 50%,
		rgba(0, 0, 0, 0.25) 100%
	);
	z-index: 1;
	pointer-events: none;
}
.card-image-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		linear-gradient(45deg, var(--glass-border) 25%, transparent 25%),
		linear-gradient(-45deg, var(--glass-border) 25%, transparent 25%),
		linear-gradient(45deg, transparent 75%, var(--glass-border) 75%),
		linear-gradient(-45deg, transparent 75%, var(--glass-border) 75%);
	background-size: 20px 20px;
	background-position:
		0 0,
		0 10px,
		10px -10px,
		-10px 0px;
	opacity: 0.5;
}
.card-badge-row {
	position: absolute;
	top: 1rem;
	left: 1rem;
	right: 1rem;
	display: flex;
	justify-content: space-between;
}
.card .price {
	font-family: "Momcake", "Gilroy", sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--accent);
	margin: 0.5rem 0;
	display: flex;
	align-items: baseline;
	gap: 0.25rem;
}
.card .price span {
	font-family: "Satoshi", sans-serif;
	font-size: 0.9rem;
	font-weight: 400;
	color: var(--text-muted);
}
.card .details {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.5;
}
.card-meta {
	display: flex;
	gap: 1rem;
	font-size: 0.85rem;
	color: var(--text-muted);
}
.card-meta-item {
	display: flex;
	align-items: center;
	gap: 0.35rem;
}
.badge-available {
	background: none;
	color: #e84393;
	border: none;
	font-weight: 700;
}
.badge-leased {
	background: none;
	color: var(--text-muted);
	border: none;
	font-weight: 700;
}

/* Leased card — dimmed photo with overlay */
.card-image-leased {
	filter: grayscale(0.6) brightness(0.7);
}
.card-leased-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.3);
	z-index: 2;
}
.card-leased-overlay span {
	font-family: "Momcake", "Gilroy", sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.85;
}
.badge-featured {
	background: linear-gradient(135deg, var(--accent), #1e9a9a);
	color: white;
}

/* ─── CARD SPECS LINE ─── */
.card-specs {
	display: flex;
	gap: 0.75rem;
	margin: 0.25rem 0 0.5rem;
	font-size: 0.82rem;
	color: var(--text-muted);
	font-weight: 500;
}
.card-specs span {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}
.card-specs span + span::before {
	content: "·";
	margin-right: 0.25rem;
	color: var(--border-hover);
}

/* ─── PHOTO COUNT BADGE ─── */
.card-photo-count {
	position: absolute;
	bottom: 0.75rem;
	right: 0.75rem;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(8px);
	color: white;
	padding: 0.3rem 0.65rem;
	border-radius: 8px;
	font-size: 0.72rem;
	font-weight: 600;
	z-index: 2;
	letter-spacing: 0.02em;
}

/* ─── GALLERY GRID (Bento Style) ─── */
.gallery-grid {
	display: grid;
	gap: 6px;
	border-radius: 24px;
	overflow: hidden;
	height: 420px;
}
.gallery-grid-1 {
	grid-template-columns: 1fr;
}
.gallery-grid-2 {
	grid-template-columns: 1.2fr 0.8fr;
}
.gallery-grid-3 {
	grid-template-columns: 1.2fr 0.8fr;
	grid-template-rows: 1fr 1fr;
}
.gallery-grid-3 .gallery-grid-hero {
	grid-row: 1 / -1;
}
.gallery-grid-4 {
	grid-template-columns: 1.2fr 0.8fr;
	grid-template-rows: 1fr 1fr 1fr;
}
.gallery-grid-4 .gallery-grid-hero {
	grid-row: 1 / -1;
}
.gallery-grid-5 {
	grid-template-columns: 1.2fr 0.4fr 0.4fr;
	grid-template-rows: 1fr 1fr;
}
.gallery-grid-5 .gallery-grid-hero {
	grid-row: 1 / -1;
}
.gallery-grid-item {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.gallery-grid-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition:
		transform 0.4s ease,
		filter 0.4s ease;
}
.gallery-grid-item:hover img {
	transform: scale(1.04);
	filter: brightness(1.08);
}
.gallery-grid-more {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(2px);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-family: "Momcake", "Gilroy", sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	transition: background 0.3s ease;
}
.gallery-grid-item:hover .gallery-grid-more {
	background: rgba(0, 0, 0, 0.3);
}

/* ─── LIGHTBOX ─── */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: rgba(0, 0, 0, 0.92);
	backdrop-filter: blur(12px);
	display: none;
	align-items: center;
	justify-content: center;
}
.lightbox.active {
	display: flex;
}
.lightbox img {
	max-width: 90vw;
	max-height: 85vh;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	animation: fadeInUp 0.3s ease;
}
.lightbox-close {
	position: absolute;
	top: 1.25rem;
	right: 1.5rem;
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	border-radius: 50%;
	font-size: 1.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	z-index: 3;
}
.lightbox-close:hover {
	background: rgba(255, 255, 255, 0.2);
}
.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: white;
	border-radius: 50%;
	font-size: 1.8rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	z-index: 3;
	line-height: 1;
}
.lightbox-nav:hover {
	background: rgba(40, 181, 181, 0.5);
	border-color: rgba(40, 181, 181, 0.4);
}
.lightbox-nav:active {
	transform: translateY(-50%) scale(0.92);
}
.lightbox-prev {
	left: 1.5rem;
}
.lightbox-next {
	right: 1.5rem;
}
.lightbox-counter {
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: white;
	padding: 0.4rem 1.1rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.05em;
}

/* ─── SPECS GRID (Detail View) ─── */
.specs-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin: 1.5rem 0 2rem;
	padding: 1.25rem;
	background: var(--bg-secondary);
	border-radius: 16px;
}
.spec-item {
	text-align: center;
}
.spec-value {
	font-family: "Momcake", "Gilroy", sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 0.2rem;
}
.spec-label {
	font-size: 0.72rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 600;
}

/* ─── DETAIL VIEW ─── */
.detail-header {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}
.detail-title {
	flex: 1;
}
.detail-title h1 {
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}
.detail-title .price {
	font-family: "Momcake", "Gilroy", sans-serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--accent);
}

/* ─── FILTERS ─── */
.filters {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 1.25rem;
}
.filter-input {
	flex: 1;
	min-width: 160px;
	background: var(--bg-primary);
	border: 1px solid var(--glass-border);
	padding: 0.8rem 1rem;
	border-radius: 12px;
	color: var(--text-primary);
	font-family: inherit;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}
.filter-input::placeholder {
	color: var(--text-muted);
}
.filter-input:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(40, 181, 181, 0.15);
}

/* ─── PORTAIL CARDS ─── */
.portail-card {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.portail-icon {
	font-size: 2.2rem;
	line-height: 1;
}
.portail-card h3 {
	font-family: "Momcake", "Gilroy", sans-serif;
	font-size: 1.3rem;
	color: var(--text-primary);
}
.portail-desc {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.5;
}
.portail-card .feature-list {
	list-style: none;
	padding: 0;
	margin: 0.5rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	flex-grow: 1;
}
.portail-card .feature-list li {
	position: relative;
	padding-left: 1.5rem;
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.4;
}
.portail-card .feature-list li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: 700;
}
.portail-card .btn {
	margin-top: auto;
	align-self: flex-start;
}

/* ─── MAIN ─── */
main {
	max-width: 1400px;
	margin: 0 auto;
	padding: 2rem;
}
section {
	display: none;
	animation: fadeInUp 0.6s ease forwards;
}
section.active {
	display: block;
}

/* ─── HERO ─── */
.hero {
	padding: 5rem 3rem;
	margin-bottom: 3rem;
	position: relative;
	overflow: hidden;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 32px;
	box-shadow: var(--shadow-soft);
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 30% 20%, var(--accent-glow) 0%, transparent 40%),
		radial-gradient(
			circle at 70% 80%,
			rgba(26, 55, 84, 0.08) 0%,
			transparent 40%
		);
	z-index: 0;
}
.hero-content {
	position: relative;
	z-index: 1;
}
.hero-label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--bg-card-solid);
	border: 1px solid var(--border);
	padding: 0.45rem 1rem;
	border-radius: 50px;
	font-size: 0.82rem;
	color: var(--text-muted);
	margin-bottom: 1.75rem;
	animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-label-dot {
	width: 8px;
	height: 8px;
	background: var(--accent);
	border-radius: 50%;
	animation: pulse 2s ease-in-out infinite;
}
/* Split hero layout */
.hero-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	position: relative;
	z-index: 1;
}
/* Light mode: text left, logo right */
.hero-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	order: 1;
}
.hero-logo-img {
	max-width: 380px;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
	animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-content {
	text-align: left;
}
/* Dark mode: logo left, text right */
body.dark-mode .hero-logo {
	order: -1;
}
/* Light mode: show original, hide teal */
.hero-logo-light {
	display: block;
}
.hero-logo-dark {
	display: none;
}
/* Dark mode: show teal, hide original */
body.dark-mode .hero-logo-light {
	display: none;
}
body.dark-mode .hero-logo-dark {
	display: block;
	filter: drop-shadow(0 20px 50px rgba(40, 181, 181, 0.15)) brightness(1.1);
}

.hero h1 {
	font-size: clamp(2.4rem, 5.5vw, 4.2rem);
	margin-bottom: 1.25rem;
	color: var(--text-primary);
	line-height: 1.08;
	animation: fadeInUp 0.6s ease 0.2s both;
}
.hero h1 .accent-text {
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.hero p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 560px;
	margin: 0 0 2.25rem;
	animation: fadeInUp 0.6s ease 0.3s both;
}
.hero-buttons {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	animation: fadeInUp 0.6s ease 0.4s both;
}

/* ─── BUTTONS ─── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.85rem 1.75rem;
	border-radius: 50px;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	border: none;
	font-family: "Satoshi", sans-serif;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.btn-primary {
	background: var(--gradient-accent);
	color: white;
	box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-primary::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s ease;
}
.btn-primary:hover::before {
	left: 100%;
}
/* Press IN — not lift up */
.btn-primary:active {
	transform: scale(0.96);
	box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.3);
}
.btn-secondary {
	background: var(--bg-card-solid);
	color: var(--text-primary);
	border: 1px solid var(--border);
}
.btn-secondary:hover {
	border-color: var(--accent);
	color: var(--accent);
}
.btn-secondary:active {
	transform: scale(0.96);
	box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.15);
}
.btn-navy {
	background: var(--gradient-brand);
	color: white;
}
.btn-navy:active {
	transform: scale(0.96);
	box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.35);
}

/* ─── STATS ROW ─── */
.stats-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1.25rem;
	margin-bottom: 3.5rem;
}
.stat-card {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 1.75rem;
	text-align: center;
	transition: all 0.4s ease;
	animation: fadeInUp 0.6s ease both;
}
.stat-card:nth-child(1) {
	animation-delay: 0.1s;
}
.stat-card:nth-child(2) {
	animation-delay: 0.15s;
}
.stat-card:nth-child(3) {
	animation-delay: 0.2s;
}
.stat-card:nth-child(4) {
	animation-delay: 0.25s;
}
.stat-card:hover {
	transform: translateY(-4px);
	border-color: var(--border-hover);
	box-shadow: var(--shadow-glow);
}
.stat-number {
	font-family: "Momcake", sans-serif;
	font-size: 2.75rem;
	font-weight: 700;
	color: var(--accent);
	line-height: 1;
	margin-bottom: 0.4rem;
}
.stat-label {
	font-size: 0.82rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 500;
}

/* ─── SECTION HEADERS ─── */
.section-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 2rem;
	flex-wrap: wrap;
	gap: 1rem;
}
.section-header h2 {
	font-size: 2rem;
	color: var(--text-primary);
}
.section-header p {
	color: var(--text-muted);
	font-size: 0.95rem;
	margin-top: 0.3rem;
}

/* ─── GLASS PANELS ─── */
.glass-panel {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	padding: 2.25rem;
	transition: all 0.4s ease;
}
.glass-panel:hover {
	border-color: var(--border-hover);
	box-shadow: var(--shadow-soft);
}
.glass-panel h2,
.glass-panel h3 {
	color: var(--text-primary);
	margin-bottom: 1rem;
}
.glass-panel p {
	color: var(--text-secondary);
	margin-bottom: 0.75rem;
}

/* ─── CARDS GRID ─── */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}
.card {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	padding: 0;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	animation: fadeInUp 0.6s ease both;
}
.card:nth-child(1) {
	animation-delay: 0.1s;
}
.card:nth-child(2) {
	animation-delay: 0.15s;
}
.card:nth-child(3) {
	animation-delay: 0.2s;
}
.card:nth-child(4) {
	animation-delay: 0.25s;
}
.card:nth-child(5) {
	animation-delay: 0.3s;
}
.card:nth-child(6) {
	animation-delay: 0.35s;
}

.card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-accent);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.card:hover {
	transform: translateY(-6px) scale(1.01);
	border-color: var(--border-hover);
	box-shadow: var(--shadow-glow);
}
.card:hover::before {
	opacity: 1;
}
.card:active {
	transform: translateY(-2px) scale(0.99);
}

.card-icon-area {
	height: 120px;
	background: var(--bg-secondary);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.card-icon-area::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 30% 40%, var(--accent-glow) 0%, transparent 50%),
		radial-gradient(
			circle at 70% 60%,
			rgba(26, 55, 84, 0.06) 0%,
			transparent 50%
		);
}
.card-icon-area .card-emoji {
	font-size: 3rem;
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}
.card-content {
	padding: 1.5rem;
}
.card h3 {
	font-size: 1.25rem;
	color: var(--text-primary);
	margin-bottom: 0.4rem;
}
.card .card-desc {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.6;
}
.card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--border);
}
.card-footer .card-link {
	color: var(--accent);
	font-weight: 600;
	font-size: 0.85rem;
}

/* ─── BADGES ─── */
.badge {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.8rem;
	border-radius: 50px;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.badge-teal {
	background: rgba(40, 181, 181, 0.12);
	color: var(--accent);
	border: 1px solid rgba(40, 181, 181, 0.25);
}
.badge-navy {
	background: rgba(26, 55, 84, 0.1);
	color: var(--navy);
	border: 1px solid rgba(26, 55, 84, 0.2);
}
body.dark-mode .badge-navy {
	background: rgba(192, 216, 238, 0.1);
	color: var(--navy);
}
.badge-green {
	background: rgba(52, 211, 153, 0.12);
	color: #059669;
	border: 1px solid rgba(52, 211, 153, 0.25);
}
body.dark-mode .badge-green {
	color: #34d399;
}
.badge-gold {
	background: rgba(251, 191, 36, 0.12);
	color: #b45309;
	border: 1px solid rgba(251, 191, 36, 0.25);
}
body.dark-mode .badge-gold {
	color: #fbbf24;
}
.badge-red {
	background: rgba(248, 113, 113, 0.12);
	color: #dc2626;
	border: 1px solid rgba(248, 113, 113, 0.25);
}
body.dark-mode .badge-red {
	color: #f87171;
}

/* ─── TWO COLUMN ─── */
.two-column {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

/* ─── REGION GRID ─── */
.region-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.25rem;
	margin-bottom: 2.5rem;
}
.region-card {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 1.75rem;
	text-align: center;
	transition: all 0.4s ease;
}
.region-card:hover {
	transform: translateY(-4px);
	border-color: var(--border-hover);
	box-shadow: var(--shadow-glow);
}
.region-card .region-icon {
	font-size: 2rem;
	margin-bottom: 0.75rem;
	display: block;
}
.region-card h3 {
	font-size: 1.1rem;
	color: var(--text-primary);
	margin-bottom: 0.3rem;
}
.region-card p {
	font-size: 0.82rem;
	color: var(--text-muted);
	line-height: 1.5;
}

/* ─── STEPS / PROCESS ─── */
.steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	position: relative;
}
.step-card {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 2rem 1.5rem;
	text-align: center;
	position: relative;
	transition: all 0.4s ease;
}
.step-card:hover {
	transform: translateY(-4px);
	border-color: var(--border-hover);
	box-shadow: var(--shadow-glow);
}
.step-num {
	width: 52px;
	height: 52px;
	margin: 0 auto 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient-brand);
	color: white;
	border-radius: 14px;
	font-family: "Momcake", sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	box-shadow: 0 4px 12px rgba(26, 55, 84, 0.2);
}
.step-card h3 {
	font-size: 1.05rem;
	margin-bottom: 0.4rem;
}
.step-card p {
	font-size: 0.85rem;
	color: var(--text-muted);
	line-height: 1.55;
}

/* ─── TRACKER PREVIEW ─── */
.tracker {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	overflow: hidden;
	margin-bottom: 2rem;
}
.tracker-bar {
	background: var(--bg-secondary);
	padding: 0.65rem 1.25rem;
	display: flex;
	align-items: center;
	gap: 6px;
	border-bottom: 1px solid var(--border);
}
.tracker-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--border);
}
.tracker-dot:first-child {
	background: var(--accent);
}
.tracker-title {
	flex: 1;
	text-align: center;
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.tracker-body {
	padding: 1.5rem;
}
.tracker-greeting {
	font-size: 0.88rem;
	color: var(--text-secondary);
	margin-bottom: 1.25rem;
}
.tracker-greeting strong {
	color: var(--text-primary);
}
.tracker-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}
.tracker-stat {
	background: var(--bg-secondary);
	border-radius: 10px;
	padding: 0.8rem;
	text-align: center;
}
.tracker-stat-num {
	font-family: "Momcake", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--accent);
}
.tracker-stat-label {
	font-size: 0.6rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-weight: 600;
}
.tracker-row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.7rem 0;
	border-bottom: 1px solid var(--border);
}
.tracker-row:last-child {
	border-bottom: none;
}
.tracker-avatar {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.7rem;
	color: white;
	flex-shrink: 0;
}
.tracker-info {
	flex: 1;
	min-width: 0;
}
.tracker-name {
	font-weight: 600;
	font-size: 0.82rem;
}
.tracker-detail {
	font-size: 0.7rem;
	color: var(--text-muted);
}

/* ─── PROGRESS BAR ─── */
.progress-wrap {
	margin: 1.5rem 0;
}
.progress-steps {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-bottom: 0.5rem;
}
.progress-steps::before {
	content: "";
	position: absolute;
	top: 14px;
	left: 5%;
	right: 5%;
	height: 3px;
	background: var(--border);
	border-radius: 2px;
}
.progress-steps::after {
	content: "";
	position: absolute;
	top: 14px;
	left: 5%;
	width: 65%;
	height: 3px;
	background: var(--gradient-accent);
	border-radius: 2px;
}
.progress-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 1;
}
.progress-dot {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--bg-card-solid);
	border: 3px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.65rem;
	font-weight: 700;
	margin-bottom: 0.4rem;
	transition: all 0.3s;
}
.progress-dot.done {
	background: var(--accent);
	border-color: var(--accent);
	color: white;
}
.progress-dot.active {
	border-color: var(--accent);
	color: var(--accent);
	box-shadow: 0 0 0 4px var(--accent-glow);
}
.progress-label {
	font-size: 0.6rem;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-align: center;
	max-width: 70px;
}

/* ─── PRICING ─── */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}
.price-card {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	padding: 2.25rem;
	position: relative;
	transition: all 0.4s ease;
}
.price-card:hover {
	transform: translateY(-4px);
}
.price-card.featured {
	background: var(--gradient-brand);
	color: white;
	border-color: transparent;
	box-shadow: var(--shadow-glow);
}
.price-card.featured .price-desc,
.price-card.featured .price-list li {
	color: rgba(255, 255, 255, 0.65);
}
.price-card.featured .price-amt span {
	color: rgba(255, 255, 255, 0.5);
}
.price-card.featured .price-list li::before {
	color: var(--accent-light);
}
.price-card.featured .price-list li {
	border-color: rgba(255, 255, 255, 0.1);
}
.price-card.featured .price-btn {
	background: white;
	color: #1a3754;
}
.popular-tag {
	position: absolute;
	top: -1px;
	right: 1.5rem;
	background: var(--accent);
	color: white;
	padding: 0.3rem 0.8rem;
	border-radius: 0 0 8px 8px;
	font-size: 0.6rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.price-name {
	font-family: "Momcake", sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.3rem;
}
.price-desc {
	font-size: 0.82rem;
	color: var(--text-muted);
	margin-bottom: 1.5rem;
}
.price-amt {
	font-family: "Momcake", sans-serif;
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 0.2rem;
}
.price-amt span {
	font-family: "Satoshi", sans-serif;
	font-size: 0.85rem;
	font-weight: 400;
	color: var(--text-muted);
}
.price-list {
	list-style: none;
	margin: 1.5rem 0;
}
.price-list li {
	padding: 0.6rem 0;
	border-bottom: 1px solid var(--border);
	font-size: 0.85rem;
	color: var(--text-secondary);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.price-list li::before {
	content: "✓";
	color: var(--accent);
	font-weight: 700;
}
.price-btn {
	display: block;
	width: 100%;
	padding: 0.85rem;
	border-radius: 50px;
	background: var(--gradient-brand);
	color: white;
	border: none;
	font-family: "Satoshi", sans-serif;
	font-size: 0.88rem;
	font-weight: 600;
	cursor: pointer;
	text-align: center;
	transition: all 0.3s ease;
}
.price-btn:active {
	transform: scale(0.96);
	box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* ─── FEATURE LIST ─── */
.feature-list {
	list-style: none;
}
.feature-list li {
	padding: 0.65rem 0;
	padding-left: 1.75rem;
	position: relative;
	color: var(--text-secondary);
	border-bottom: 1px solid var(--border);
	font-size: 0.92rem;
}
.feature-list li:last-child {
	border-bottom: none;
}
.feature-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	background: var(--gradient-accent);
	border-radius: 50%;
	opacity: 0.2;
}
.feature-list li::after {
	content: "✓";
	position: absolute;
	left: 4px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--accent);
	font-weight: 700;
	font-size: 0.7rem;
}

/* ─── FORM ELEMENTS ─── */
.form-group {
	margin-bottom: 1.5rem;
}
label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--text-primary);
	font-size: 0.9rem;
}
input,
textarea,
select {
	width: 100%;
	padding: 0.9rem 1.15rem;
	background: var(--bg-card-solid);
	border: 1px solid var(--border);
	border-radius: 12px;
	color: var(--text-primary);
	font-family: "Satoshi", sans-serif;
	font-size: 0.95rem;
	transition: all 0.3s ease;
}
input::placeholder,
textarea::placeholder {
	color: var(--text-muted);
}
input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px var(--accent-glow);
}
textarea {
	resize: vertical;
	min-height: 110px;
}

/* ─── CONTACT ─── */
.contact-info {
	margin: 1.25rem 0;
}
.contact-item {
	display: flex;
	gap: 1rem;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--border);
	font-size: 0.92rem;
}
.contact-item:last-child {
	border-bottom: none;
}
.contact-item strong {
	color: var(--text-primary);
	min-width: 80px;
}
.contact-item span {
	color: var(--text-secondary);
}

/* ─── MAP ─── */
#map,
.listings-map {
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	border: none;
	box-shadow:
		var(--shadow-medium),
		0 0 60px -15px var(--accent-glow);
}
#map {
	height: 480px;
	margin: 1.5rem 0;
}
.listings-map {
	height: 360px;
	margin-bottom: 2rem;
}

/* Tile-pane — theme-adaptive via CSS filter */
#map .leaflet-tile-pane,
.listings-map .leaflet-tile-pane {
	transition: filter 0.6s ease;
}
body.dark-mode #map .leaflet-tile-pane,
body.dark-mode .listings-map .leaflet-tile-pane {
	filter: invert(1) hue-rotate(180deg) brightness(0.82) contrast(1.05)
		saturate(1.4);
}

/* Kill attribution */
.leaflet-control-attribution {
	display: none !important;
}

/* ─── STATUS OVERLAY BAR ─── */
.lz-map-overlay {
	position: absolute;
	top: 14px;
	left: 14px;
	right: 14px;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 18px;
	background: var(--glass-bg);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-radius: 14px;
	border: 1px solid var(--glass-border);
	box-shadow: var(--shadow-soft);
	pointer-events: none;
}
.lz-map-status {
	display: flex;
	align-items: center;
	gap: 9px;
}
.lz-status-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 8px var(--accent-glow);
	animation: statusBlink 2.5s ease-in-out infinite;
}
@keyframes statusBlink {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.4;
	}
}
.lz-status-text {
	font-family: "Satoshi", sans-serif;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--text-primary);
	letter-spacing: 0.01em;
}
.lz-map-region {
	font-family: "Satoshi", sans-serif;
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--accent);
	opacity: 0.8;
	letter-spacing: 0.02em;
}

/* ─── CUSTOM MARKER — LOGO PIN + PULSE ─── */
.lz-marker {
	background: none !important;
	border: none !important;
}
.lz-marker-leased .lz-marker-pin {
	filter: grayscale(0.7) brightness(0.6)
		drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) !important;
	opacity: 0.5;
}
.lz-marker-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.lz-marker-pulse {
	position: absolute;
	top: 12px;
	left: 50%;
	transform: translateX(-50%);
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(40, 181, 181, 0.3);
	animation: markerPulse 2.5s ease-out infinite;
}
@keyframes markerPulse {
	0% {
		transform: translateX(-50%) scale(0.7);
		opacity: 0.8;
	}
	100% {
		transform: translateX(-50%) scale(3);
		opacity: 0;
	}
}
.lz-marker-pin {
	width: 44px;
	height: 52px;
	object-fit: contain;
	filter: drop-shadow(0 0 14px rgba(40, 181, 181, 0.4))
		drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
	position: relative;
	z-index: 2;
	transition:
		transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
		filter 0.25s ease;
}
.lz-marker:hover .lz-marker-pin {
	transform: scale(1.2) translateY(-4px);
	filter: drop-shadow(0 0 22px rgba(40, 181, 181, 0.65))
		drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

/* ─── MAP POPUP ─── */
.lz-popup-wrapper .leaflet-popup-content-wrapper {
	border-radius: 16px;
	padding: 0;
	overflow: hidden;
	background: var(--bg-card-solid);
	border: 1px solid var(--border-hover);
	box-shadow:
		0 16px 48px rgba(0, 0, 0, 0.18),
		0 0 0 1px var(--border);
}
.lz-popup-wrapper .leaflet-popup-content {
	margin: 0;
	width: 270px !important;
}
.lz-popup-wrapper .leaflet-popup-tip-container {
	display: none;
}

/* Popup reveal animation */
.lz-popup-wrapper.leaflet-popup {
	animation: popupIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes popupIn {
	from {
		opacity: 0;
		transform: scale(0.92) translateY(6px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.lz-popup {
	display: flex;
	flex-direction: column;
}
.lz-popup-img-wrap {
	position: relative;
	overflow: hidden;
}
.lz-popup-img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	display: block;
}
.lz-popup-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 3px 10px;
	border-radius: 20px;
	font-family: "Satoshi", sans-serif;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.lz-popup-badge.available {
	background: rgba(40, 181, 181, 0.88);
	color: #fff;
	box-shadow: 0 2px 8px rgba(40, 181, 181, 0.35);
}
.lz-popup-badge.unavailable {
	background: rgba(200, 60, 60, 0.82);
	color: #fff;
}
.lz-popup-body {
	padding: 14px 16px 16px;
}
.lz-popup-title {
	font-family: "Momcake", "Gilroy", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 2px;
}
.lz-popup-price {
	font-family: "Momcake", "Gilroy", sans-serif;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 3px;
}
.lz-popup-price small {
	font-size: 0.7rem;
	font-weight: 500;
	color: var(--text-muted);
}
.lz-popup-specs {
	font-family: "Satoshi", sans-serif;
	font-size: 0.76rem;
	color: var(--text-muted);
	margin-bottom: 12px;
}

/* Popup action buttons */
.lz-popup-actions {
	display: flex;
	gap: 8px;
}
.lz-popup-btn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 8px 0;
	border-radius: 10px;
	font-family: "Satoshi", sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: all 0.2s ease;
}
.lz-btn-route {
	background: var(--accent-glow);
	color: var(--accent);
	border: 1px solid var(--border-hover);
}
.lz-btn-route:hover {
	background: rgba(40, 181, 181, 0.2);
	border-color: var(--accent);
}
.lz-btn-voir {
	background: var(--accent);
	color: #fff;
}
.lz-btn-voir:hover {
	filter: brightness(1.12);
	box-shadow: 0 2px 12px var(--accent-glow);
}

/* ─── MAP ZOOM CONTROLS ─── */
.leaflet-control-zoom {
	border: none !important;
	box-shadow: var(--shadow-soft) !important;
	border-radius: 12px !important;
	overflow: hidden;
}
.leaflet-control-zoom a {
	background: var(--bg-card-solid) !important;
	color: var(--text-secondary) !important;
	border: none !important;
	border-bottom: 1px solid var(--border) !important;
	width: 36px !important;
	height: 36px !important;
	line-height: 36px !important;
	font-size: 1.1rem !important;
	transition: all 0.2s ease !important;
}
.leaflet-control-zoom a:hover {
	background: var(--accent) !important;
	color: #fff !important;
}

/* ─── VISIT-TIME BAR ─── */
.lz-visit-bar {
	position: absolute;
	bottom: 16px;
	left: 16px;
	z-index: 1000;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	background: var(--glass-bg);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-radius: 12px;
	border: 1px solid var(--glass-border);
	box-shadow: var(--shadow-soft);
	font-family: "Satoshi", sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--text-primary);
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	transition:
		opacity 0.35s ease,
		transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.lz-visit-bar.visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.lz-visit-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}
.lz-visit-dot.open {
	background: var(--success);
	box-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
	animation: statusBlink 2.5s ease-in-out infinite;
}
.lz-visit-dot.closed {
	background: var(--danger);
	box-shadow: 0 0 8px rgba(248, 113, 113, 0.4);
}
.lz-visit-label {
	text-transform: uppercase;
	font-size: 0.72rem;
	letter-spacing: 0.06em;
}

/* ─── TOAST NOTIFICATIONS ─── */
.lz-toast-container {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 10000;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.lz-toast {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	background: var(--bg-card-solid);
	border: 1px solid var(--border-hover);
	border-radius: 14px;
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.15),
		0 0 0 1px var(--border);
	font-family: "Satoshi", sans-serif;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--text-primary);
	opacity: 0;
	transform: translateY(12px) scale(0.96);
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	max-width: 420px;
}
.lz-toast.visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}
.lz-toast svg {
	flex-shrink: 0;
	color: var(--accent);
}

/* ─── FOOTER ─── */
footer {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border-top: 1px solid var(--glass-border);
	padding: 2.5rem 2rem;
	margin-top: 4rem;
}
.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}
.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.footer-logo img {
	height: 28px;
	border-radius: 4px;
}
.footer-text {
	color: var(--text-muted);
	font-size: 0.82rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
	.nav-links {
		display: none;
	}
	.mobile-menu-btn {
		display: block;
	}
	.logo-region {
		display: none;
	}
	header.menu-open {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 9999;
		background: var(--bg-primary);
		padding: 0;
		overflow-y: auto;
	}
	header.menu-open nav {
		flex-wrap: wrap;
		border-radius: 0;
		border: none;
		background: transparent;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		box-shadow: none;
		padding: 1rem 1.5rem;
		margin: 0;
		max-width: 100%;
	}
	.nav-links.open {
		display: flex;
		flex-direction: column;
		width: 100%;
		gap: 0.25rem;
		padding: 1.5rem 0 0;
		margin: 0;
		list-style: none;
		order: 3;
	}
	.nav-links.open li {
		width: 100%;
	}
	.nav-links.open a {
		display: block;
		padding: 1rem 1.5rem;
		border-radius: 12px;
		font-size: 1.15rem;
		text-align: center;
		color: var(--text-primary);
		transition: background 0.2s ease;
	}
	.nav-links.open a:hover,
	.nav-links.open a.active {
		background: var(--glass-bg);
	}
	.nav-links.open .theme-toggle {
		width: 100%;
		justify-content: center;
		padding: 1rem 1.5rem;
		border-radius: 12px;
		font-size: 1.15rem;
	}
	.mobile-menu-btn {
		z-index: 10000;
		position: relative;
	}
	nav {
		position: relative;
		padding: 0.6rem 1rem;
		z-index: 999;
	}
	.gallery-grid {
		height: 280px;
	}
	.gallery-grid-5,
	.gallery-grid-4 {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr;
	}
	.gallery-grid-5 .gallery-grid-hero,
	.gallery-grid-4 .gallery-grid-hero {
		grid-row: auto;
	}
	.gallery-grid-5 .gallery-grid-item:nth-child(n + 4),
	.gallery-grid-4 .gallery-grid-item:nth-child(n + 4) {
		display: none;
	}
	.gallery-grid-3 {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr;
	}
	.gallery-grid-3 .gallery-grid-hero {
		grid-column: 1 / -1;
		grid-row: auto;
	}
	.lightbox-nav {
		width: 40px;
		height: 40px;
		font-size: 1.4rem;
	}
	.lightbox-prev {
		left: 0.75rem;
	}
	.lightbox-next {
		right: 0.75rem;
	}
	.specs-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.hero {
		padding: 3.5rem 1.5rem;
		border-radius: 20px;
	}
	.hero-split {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.hero-content {
		text-align: center;
	}
	.hero p {
		margin: 0 auto 2rem;
	}
	.hero-buttons {
		justify-content: center;
	}
	.hero-logo {
		order: -1;
	}
	.hero-logo-img {
		max-width: 240px;
	}
	.two-column {
		grid-template-columns: 1fr;
	}
	.cards-grid {
		grid-template-columns: 1fr;
	}
	.filters {
		flex-direction: column;
	}
	.filter-input {
		min-width: 100%;
	}
	.pricing-grid {
		grid-template-columns: 1fr;
	}
	.region-grid {
		grid-template-columns: 1fr 1fr;
	}
	main {
		padding: 1.25rem;
	}
	.tracker-stats {
		grid-template-columns: 1fr;
	}
	.progress-label {
		font-size: 0.5rem;
		max-width: 50px;
	}
}
@media (max-width: 600px) {
	.region-grid {
		grid-template-columns: 1fr;
	}
	.steps-grid {
		grid-template-columns: 1fr 1fr;
	}
	.footer-content {
		flex-direction: column;
		text-align: center;
	}
}
