@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&display=swap');
* { box-sizing: border-box; }
/* Dark theme */
:root {
	--bg: #0a101b;
	--panel: #0d1626;
	--card: #0f1a2b;
	--border: #1d2b45;
	--muted: #9fb6d9;
	--text: #eaf2ff;
	--brand: #60a5fa; /* blue lighter */
	--brand-2: #93c5fd; /* blue lighter */
	--danger: #ef4444;
	--radius: 14px;
}
html, body { margin: 0; padding: 0; width: 100%; overflow-x: hidden; background: radial-gradient(1100px 700px at 12% -10%, rgba(30,64,175,.22), transparent 60%), radial-gradient(1000px 600px at 90% -20%, rgba(37,99,235,.18), transparent 60%), linear-gradient(180deg, rgba(2,6,23,.6), rgba(2,6,23,.0) 40%), var(--bg); color: white !important; font-family: 'Quicksand', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji"; }
.container { max-width: 1200px; margin: 0 auto; padding: 16px; }

.navbar { 
	position: sticky; 
	top: 0; 
	z-index: 20; 
	backdrop-filter: saturate(200%) blur(20px) brightness(1.1); 
	background: rgba(8,12,18, .75); 
	border-bottom: 1px solid rgba(37,99,235, .15); 
	box-shadow: 0 8px 32px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.08);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar.hidden {
	transform: translateY(-100%);
	opacity: 0;
	pointer-events: none;
}

/* Transparent navbar for home page */
.navbar-transparent {
	background: transparent !important;
	border-bottom: none !important;
	box-shadow: none !important;
	backdrop-filter: none !important;
}

/* Override any inherited background */
.navbar-transparent .navbar-inner {
	background: transparent !important;
}

/* Make navbar text more visible over video */
.navbar-transparent .nav a {
	color: #ffffff !important;
	text-shadow: 0 2px 8px rgba(0,0,0,0.8) !important;
}

.navbar-transparent .nav a:hover {
	color: white !important;
	text-shadow: 0 2px 12px rgba(0,0,0,0.9) !important;
}

.navbar-transparent .brand {
	color: white !important;
	text-shadow: 0 2px 8px rgba(0,0,0,0.8) !important;
}
.navbar-inner {
	display: flex;
	align-items: center;
	justify-content: flex-end; /* ensure nav sits to the right */
	padding: 16px 24px;
	gap: 32px;
	flex-wrap: wrap;
	width: 100%;
}
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--text);
	font-weight: 900;
	letter-spacing: .5px;
	white-space: nowrap;
	font-size: 18px;
	text-shadow: 0 2px 8px rgba(0,0,0,.3);
	margin-right: auto; /* push nav to the right */
}
.brand img.brand-logo { 
	height: 48px; 
	width: auto; 
	background: transparent; 
	padding: 0; 
	border-radius: 8px; 
	box-shadow: 0 4px 16px rgba(0,0,0,.2); 
	display: block;
	transition: transform 0.3s ease;
}
.brand:hover img.brand-logo { transform: scale(1.05); }
.nav { 
	flex: 1 1 auto; 
	display: flex; 
	gap: 8px; 
	align-items: center; 
	flex-wrap: wrap; 
	min-width: 280px; 
	justify-content: flex-end;
}
/* Remove hamburger entirely */
.hamburger { display: none !important; }
.nav a { 
	color: rgba(255,255,255, .92); 
	text-decoration: none; 
	font-weight: 600; 
	padding: 10px 16px; 
	border-radius: 12px; 
	border: none; 
	background: transparent;
	transition: all 0.3s ease;
	font-size: 15px;
	position: relative;
	overflow: hidden;
}
.nav a::after { content: ''; position: absolute; left: 8px; right: 8px; bottom: 8px; height: 2px; background: var(--brand); opacity: 0; transform: scaleX(.4); transform-origin: center; transition: opacity .25s ease, transform .25s ease; }
.nav a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
	transition: left 0.5s ease;
}
.nav a:hover::before { left: 100%; }

.nav a:hover { 
	color: var(--text); 
	background: transparent; 
	transform: translateY(-1px);
	box-shadow: none;
}
.nav a:hover::after { opacity: 1; transform: scaleX(1); }
/* Subtle focus style for navbar links (remove blue outline) */
.nav a:focus, .nav a:focus-visible {
	outline: none;
	box-shadow: 0 0 0 2px rgba(255,255,255,.22);
}
.nav a.contact-pill { 
    background: transparent; 
    border-radius: 12px; 
    padding: 10px 16px; 
    border: none; 
    font-weight: 600;
    box-shadow: none;
    text-shadow: none;
}
.nav a.contact-pill:hover {
    background: transparent;
    transform: translateY(-1px);
    box-shadow: none;
}

/* Navbar content alignment handled above */

.hero-wrap { position: relative; margin-top: 0; padding-top: 0; margin-left: 0; margin-right: 0; }
/* Full-bleed video background */
.hero-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; overflow: hidden; z-index: 0; }
.hero-bg .hero-video { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100vh; 
	object-fit: cover; 
	filter: saturate(1.05) contrast(1.05);
	/* Hide all video controls */
	pointer-events: none;
}
.hero-bg .hero-video::-webkit-media-controls { display: none !important; }
.hero-bg .hero-video::-webkit-media-controls-panel { display: none !important; }
.hero-bg .hero-video::-webkit-media-controls-play-button { display: none !important; }
.hero-bg .hero-video::-webkit-media-controls-timeline { display: none !important; }
.hero-bg .hero-video::-webkit-media-controls-current-time-display { display: none !important; }
.hero-bg .hero-video::-webkit-media-controls-time-remaining-display { display: none !important; }
.hero-bg .hero-video::-webkit-media-controls-mute-button { display: none !important; }
.hero-bg .hero-video::-webkit-media-controls-volume-slider { display: none !important; }
.hero-bg .hero-video::-webkit-media-controls-fullscreen-button { display: none !important; }
.bg-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,6,23,.55), rgba(2,6,23,.35) 40%, rgba(2,6,23,.55)), radial-gradient(800px 500px at 20% 10%, rgba(59,130,246,.22), transparent 60%); mix-blend-mode: multiply; }

/* Centered hero content over background */
.hero { display: grid; grid-template-columns: 1fr; align-items: center; justify-items: center; padding: 36px 16px; min-height: calc(100vh - 74px); position: relative; z-index: 1; }
.hero-centered .hero-text { max-width: 900px; text-align: center; padding: 16px; }
.hero-centered h1 { font-size: clamp(34px, 5vw, 56px); }
.hero-centered p { font-size: clamp(16px, 2.2vw, 20px); color: #dce6ff; opacity: .95; }
.hero h1 { font-size: 36px; line-height: 1.1; margin: 0 0 12px; }
.hero p { color: white !important; margin: 0 0 16px; }
.cta { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #091427; border: 0; padding: 12px 20px; border-radius: 999px; font-weight: 800; text-decoration: none; box-shadow: 0 10px 30px rgba(59,130,246,.28); transition: transform .18s ease, filter .18s ease; }
.cta:hover { filter: brightness(1.05); transform: scale(1.06); }
.hero-img { width: 100%; height: clamp(300px, 40vh, 460px); object-fit: cover; border-radius: 16px; border: 1px solid var(--border); box-shadow: 0 20px 60px rgba(0,0,0,.35); }

.hero-img-bg {
	width: 100%;
	height: clamp(300px, 40vh, 460px);
	border-radius: 16px;
	border: 1px solid var(--border);
	box-shadow: 0 20px 60px rgba(0,0,0,.35);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

/* Extended hero section for longer background */
.hero-extended {
	padding: 20px 16px;
	position: relative;
	z-index: 1;
}
.hero-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
	max-width: 1000px;
	margin: 0 auto;
}
.feature-item {
	text-align: center;
	padding: 24px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 20px;
	backdrop-filter: blur(15px);
	box-shadow: 0 4px 20px rgba(0,0,0,.1);
	transition: all 0.3s ease;
}
.feature-item h3 {
	font-size: 20px;
	margin: 0 0 12px;
	color: white;
	text-shadow: 0 2px 10px rgba(0,0,0,.6);
	font-weight: 600;
}
.feature-item p {
	color: rgba(255,255,255,0.9);
	opacity: 1;
	margin: 0;
	text-shadow: 0 2px 8px rgba(0,0,0,.5);
	font-size: 16px;
	line-height: 1.5;
}
.feature-item:hover {
	background: rgba(255,255,255,.08);
	border-color: rgba(255,255,255,.3);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0,0,0,.1);
}

.panel { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: 14px; padding: 12px; backdrop-filter: blur(15px); }
.filters { display: flex; gap: 10px; align-items: center; }
.filters input, .filters select { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); color: white; padding: 10px 12px; border-radius: 10px; backdrop-filter: blur(10px); }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(420px, 1fr)); gap: 16px; margin-top: 16px; }
.card { position: relative; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; backdrop-filter: blur(15px); }
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.35); border-color: rgba(255,255,255,.3); }
.card .thumb { width: 100%; height: 190px; object-fit: cover; display: block; }
/* Collage for cards with multiple images */
.thumb-collage { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: 4px; height: 210px; overflow: hidden; border-bottom: 1px solid var(--border); }
.thumb-collage img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 8px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.05); }

/* Coming soon overlay */
.card.coming-soon { position: relative; overflow: hidden; }
.card.coming-soon .overlay-badge { position: absolute; top: 10px; left: 10px; background: linear-gradient(135deg,#f59e0b,#f97316); color: #150a04 !important; padding: 6px 10px; border-radius: 999px; font-weight: 800; font-size: 12px; z-index: 2; border: 1px solid rgba(255,255,255,.2); }
.card.coming-soon .thumb { filter: grayscale(0.1); }
.card .body { padding: 14px; display: grid; gap: 6px; background: rgba(0,0,0,.1); backdrop-filter: blur(5px); }
.card .title { font-weight: 800; font-size: 18px; color: white; }
.card .sub { color: rgba(255,255,255,.8); font-size: 14px; }
.badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.badge { font-size: 12px; color: var(--muted); border: 1px solid var(--border); padding: 3px 8px; border-radius: 999px; }
/* Red Airbnb badge (compact, no layout change) */
.badge.airbnb { background: linear-gradient(135deg, #ff5a5f, #ff385c); color: #0b1320; border-color: transparent; font-weight: 700; }

/* Card accent border */
.card { border-color: rgba(255,255,255,.2); }
.card:hover { border-color: rgba(255,255,255,.4); }

/* Home: vertical cards */
.card.v { display:block; }
.card.v .thumb, .card.v .placeholder { height: 210px; border-bottom: 1px solid var(--border); }

/* Horizontal card style stays available as .horiz for Rent */
.card.horiz { display: grid; grid-template-columns: 220px 1fr; align-items: center; }
.card.horiz .thumb, .card.horiz .placeholder { height: 160px; border-bottom: 0; border-right: 1px solid var(--border); border-radius: 0; }
@media (max-width: 760px) { .card.horiz { grid-template-columns: 1fr; } .card.horiz .thumb, .card.horiz .placeholder { height: 210px; border-right: 0; border-bottom: 1px solid var(--border); } }

/* Responsive hero height tuning retained via min-height */

.footer { margin-top: 36px; padding: 18px 16px; border-top: 1px solid var(--border); color: var(--muted); text-align: center; }

/* Van page */
.back { color: var(--muted); text-decoration: none; }
.back:hover { color: var(--text); }
.hero-van { 
		width: 100% !important; 
		height: 500px !important;
		min-height: 400px !important;
		max-height: 600px !important;
	object-fit: cover; 
	border-radius: 14px; 
	border: 1px solid rgba(255,255,255,.35); 
	box-shadow: 0 20px 60px rgba(0,0,0,.35);
	display: block;
	background: rgba(255,255,255,.05);
	flex-shrink: 0 !important;
	box-sizing: border-box !important;
}
/* Match description panel height to photo (desktop) */
.split > div:last-child .panel { height: 500px; overflow: auto; }
.meta { color: white !important; margin: 8px 0 16px; }
.price { font-weight: 800; font-size: 20px; }
.split { 
	display: grid; 
	grid-template-columns: 1fr; 
	gap: 24px; 
	align-items: start;
	min-height: 0; /* Prevent flex growing */
}

/* Fixed containers for photo and calendar sections */
.split > div:first-child {
	/* Photo section - completely locked structure */
	display: flex;
	flex-direction: column;
	flex-shrink: 0 !important;
	min-width: 0;
	max-width: 100%;
}

.split > div:last-child {
	/* Calendar section - completely locked structure */
	display: flex;
	flex-direction: column;
	flex-shrink: 0 !important;
	min-height: fit-content;
	min-width: 0;
	max-width: 100%;
}

@media (min-width: 900px) { 
	   .split { 
		   grid-template-columns: 2fr 1fr; /* Make photo section 2x wider than calendar */
		   align-items: start;
	   }
	   .split > div:first-child {
		   max-width: 100%; /* Allow photo section to grow */
	   }
	   .split > div:last-child {
	   max-width: 100%; /* Allow description card to be wider */
	   }
}

/* Van page photo and calendar side by side */
@media (max-width: 768px) {
	.hero-van { 
		height: 300px !important;
		min-height: 300px !important;
		max-height: 300px !important;
		flex-shrink: 0 !important;
	}
	/* Match description panel to photo on mobile */
	.split > div:last-child .panel { height: 300px !important; }
	.thumbs-img {
		height: 60px;
	}
	#gallery.slider-mode .thumbs-img {
		width: 90px;
	}
	#gallery {
		grid-template-columns: repeat(3, 1fr);
	}
	.gallery-container {
		height: 68px !important;
		min-height: 68px !important;
		max-height: 68px !important;
		flex-shrink: 0 !important;
	}
	#calendar-wrap {
		min-height: 350px !important;
		flex-shrink: 0 !important;
	}
	.gallery-nav {
		width: 28px;
		height: 28px;
		font-size: 12px;
	}
	.gallery-nav.prev {
		left: -14px;
	}
	.gallery-nav.next {
		right: -14px;
	}
}

/* Gallery - Smart Layout */
#gallery { 
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px; 
	margin-top: 8px; 
	position: relative;
}

/* When gallery needs to be a slider (more than 5 photos) */
#gallery.slider-mode { 
	display: flex;
	grid-template-columns: none;
	overflow-x: auto; 
	overflow-y: hidden;
	scrollbar-width: thin;
	scrollbar-color: rgba(255,255,255,.3) transparent;
	padding-bottom: 4px;
	scroll-behavior: smooth;
}
#gallery.slider-mode::-webkit-scrollbar { height: 6px; }
#gallery.slider-mode::-webkit-scrollbar-track { background: transparent; }
#gallery.slider-mode::-webkit-scrollbar-thumb { background: rgba(255,255,255,.3); border-radius: 3px; }
#gallery.slider-mode::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.5); }

/* Gallery thumbnails */
.thumbs-img {
	height: 80px;
	width: 100%;
	object-fit: cover;
	border-radius: 8px;
	border: 2px solid rgba(255,255,255,.35);
	cursor: pointer;
	transition: all 0.3s ease;
	background: rgba(255,255,255,.05);
	display: block;
}

/* In slider mode, thumbnails have fixed width */
#gallery.slider-mode .thumbs-img {
	width: 120px;
	flex-shrink: 0;
}

.thumbs-img:hover {
	border-color: rgba(255,255,255,.4);
	transform: scale(1.05);
}
.thumbs-img.active {
	border-color: var(--brand);
	box-shadow: 0 0 0 2px rgba(59,130,246,.3);
}

/* Gallery navigation buttons - only show in slider mode */
.gallery-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0,0,0,.7);
	border: 1px solid rgba(255,255,255,.2);
	color: white;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 2;
	font-size: 14px;
}

#gallery.slider-mode ~ .gallery-nav {
	display: flex;
}

.gallery-nav:hover {
	background: rgba(0,0,0,.9);
	border-color: rgba(255,255,255,.4);
}
.gallery-nav.prev {
	left: -16px;
}
.gallery-nav.next {
	right: -16px;
}

/* Gallery container - absolutely fixed to prevent layout shifts */
.gallery-container {
	position: relative;
	margin-top: 8px;
	height: 88px !important;
	min-height: 88px !important;
	max-height: 88px !important;
	overflow: visible;
	flex-shrink: 0 !important;
}
/* Booking row layout below photos */
.book-row { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; align-items: start; margin-top: 16px; }
@media (max-width: 900px) {
	.book-row { grid-template-columns: 1fr; }
}

/* Calendar */
#calendar-wrap { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: 14px; padding: 12px; backdrop-filter: blur(15px); }
.nav { display: flex; justify-content: flex-start; align-items: center; gap: 12px; }
#calendar-wrap .nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; }
#calendar-wrap .nav #prev { justify-self: start; }
#calendar-wrap .nav #month { justify-self: center; text-align: center; }
#calendar-wrap .nav #next { justify-self: end; }
.btn { background: linear-gradient(135deg, var(--brand), var(--brand-2)); border: 0; color: #091427; border-radius: 10px; padding: 8px 12px; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(59,130,246,.28); }
.btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn.success { background: linear-gradient(135deg, #10b981, #22c55e); color: #04140e; }
.btn.warn { background: linear-gradient(135deg, #f59e0b, #f97316); color: #150a04; }
#calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cell { border: 1px solid rgba(255,255,255,.15); border-radius: 10px; min-height: 64px; padding: 6px; display: flex; align-items: flex-start; justify-content: flex-end; font-size: 12px; background: rgba(255,255,255,.03); }
.busy { background: rgba(239, 68, 68, .18); }
.free { background: rgba(59,130,246,.15); }
.dim { opacity: .35; }
.selected { outline: 2px solid var(--brand); outline-offset: -2px; }

/* Admin booking highlight */
.row-booking td { background: rgba(59,130,246,.10); }

/* Typography */
.h1 { font-size: 42px; line-height: 1.1; font-weight: 900; margin: 0 0 12px; }
.h2 { font-size: 28px; line-height: 1.2; font-weight: 800; margin: 0 0 12px; }
.lead { color: white !important; font-size: 18px; }
.section { padding: 60px 16px; }
.section .inner { max-width: 1200px; margin: 0 auto; }
.two-col { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1.1fr 1fr; } }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.price-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: 14px; padding: 16px; backdrop-filter: blur(15px); }
.price-card .title { font-weight: 800; margin-bottom: 4px; }
.price-card .amount { font-size: 22px; font-weight: 900; }
.price-card .desc { color: white !important; font-size: 14px; margin-top: 6px; }

/* Amenities */
.amenities { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }
.amenity { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: 10px; padding: 10px 12px; color: white; backdrop-filter: blur(10px); }

/* Specs table */
.specs { width: 100%; border-collapse: collapse; }
.specs th, .specs td { border-bottom: 1px solid rgba(255,255,255,.15); padding: 8px 0; text-align: left; color: white; }
.specs th { color: rgba(255,255,255,.7); font-weight: 600; width: 180px; }

/* FAQ */
.faq { display: grid; gap: 10px; }
.faq-item { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: 12px; padding: 12px; backdrop-filter: blur(15px); }
.faq-q { font-weight: 700; color: white; }
.faq-a { color: white !important; margin-top: 6px; }

/* Contact helpers */
.inline-links a { color: var(--brand-2); text-decoration: none; }
.inline-links a:hover { text-decoration: underline; }

/* Perf: hint images */
img { content-visibility: auto; }

/* Sticky footer layout */
html, body { height: 100%; }
body { display: flex; flex-direction: column; }
.footer { margin-top: auto; }

/* Ensure blue-only badges/placeholders */
.badge-accent { display:inline-block; font-size:12px; padding:3px 8px; border-radius:999px; border:1px solid #2b3b55; color:#cbd5e1; background: linear-gradient(135deg, rgba(59,130,246,.18), rgba(37,99,235,.14)); }
.placeholder { background: linear-gradient(135deg, rgba(59,130,246,.25), rgba(37,99,235,.20)); display:flex; align-items:center; justify-content:center; color:#0a172d; font-weight:800; height:210px; border-bottom:1px solid var(--border); }

/* Ensure blue-only accents */
.page-accent { position: fixed; pointer-events:none; inset: 0; background: radial-gradient(800px 400px at 80% 10%, rgba(59,130,246,.10), transparent), radial-gradient(900px 600px at 0% 100%, rgba(37,99,235,.08), transparent); mix-blend-mode: screen; opacity:.9; z-index:0; }

/* Card fade-in */
@keyframes fadeUp { from { opacity:0; transform: translateY(6px);} to { opacity:1; transform: translateY(0);} }
.card { animation: fadeUp .4s ease both; }

/* Ensure content overlays accents */
body > * { position: relative; z-index: 1; }

/* Force white text everywhere */
* { color: white !important; }
h1, h2, h3, h4, h5, h6 { color: white !important; }
p, div, span, a, li, td, th, label, input::placeholder { color: white !important; }
.title, .sub, .desc, .meta, .lead { color: white !important; }
.amenity { color: white !important; }
.price-card .title { color: white !important; }
.faq-q, .faq-a { color: white !important; }
.cell { color: white !important; }
.back { color: white !important; }
.back:hover { color: white !important; }

/* Exception for buttons with specific colors */
.btn.success { color: #04140e !important; }
.btn.warn { color: #150a04 !important; }
.contact-pill { color: white !important; }
#whatsapp { color: #04140e !important; }

/* Contact inputs */
.input, input, textarea { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.2); color:white; padding:10px 12px; border-radius:10px; width:100%; backdrop-filter: blur(10px); }
.input:focus, input:focus, textarea:focus { outline:2px solid var(--brand); border-color:var(--brand); }
#status { color: white !important; }

/* Calendar styles - FIXED SIZE */
#calendar-wrap { 
	background: rgba(255,255,255,.08); 
	border: 1px solid rgba(255,255,255,.2); 
	border-radius: 14px; 
	padding: 16px; 
	backdrop-filter: blur(15px);
	width: 100%;
	min-height: 450px !important;
	flex-shrink: 0 !important;
	box-sizing: border-box !important;
}
#calendar { 
	display: grid; 
	grid-template-columns: repeat(7, 1fr); 
	gap: 4px; 
	margin-top: 12px;
	width: 100%;
}
.cell { 
	border: 1px solid rgba(255,255,255,.15); 
	background: rgba(255,255,255,.03); 
	padding: 8px; 
	text-align: center; 
	cursor: pointer; 
	border-radius: 6px;
	transition: all 0.2s ease;
	color: white;
	min-height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cell:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); }
.cell.selected { background: var(--brand); color: white; }
.cell.range { background: rgba(59,130,246,.2); }
.cell.disabled { opacity: 0.3; cursor: not-allowed; }
.cell.today { border-color: var(--brand); font-weight: bold; }
.cell.busy { background: rgba(239,68,68,.3); border-color: rgba(239,68,68,.5); color: white; }
.cell.free { background: rgba(59,130,246,.1); border-color: rgba(59,130,246,.3); }
.cell.dim { opacity: 0.4; }

/* Footer columns */
.site-footer { margin-top: auto; border-top: 1px solid rgba(255,255,255,.15); background: rgba(0,0,0,.45); backdrop-filter: saturate(160%) blur(8px); }
/* Light footer overrides */
.site-footer, .site-footer * { color: rgba(255,255,255,0.9) !important; }
.site-footer a { color: #e5f0ff !important; }
.site-footer a:hover { color: #ffffff !important; }
.footer-grid { max-width: 1200px; margin: 0 auto; padding: 20px 16px; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; color: rgba(255,255,255,0.9) !important; }
.footer-grid h4 { color: #ffffff !important; margin: 0 0 8px; }
.footer-grid a { color: #e5f0ff !important; text-decoration: none; }
.footer-grid a:hover { color: #ffffff !important; }
.footer-bottom { text-align: center; padding: 12px 16px; color: rgba(255,255,255,0.75) !important; border-top: 1px solid rgba(255,255,255,.12); background: transparent; }

@media (min-width: 900px) {
	  /* Lift calendar to align with top of photo */
	  #calendar-wrap { order: -1; margin-top: 0; }
	  /* Desktop navbar polish */
	  .navbar { box-shadow: 0 8px 32px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.06); border-bottom: 1px solid rgba(37,99,235, .18); }
  .nav a { backdrop-filter: none; }
  .nav a:hover { backdrop-filter: none; }
}

/* Desktop: keep underline effect but remove background hover */
@media (min-width: 769px) {
	.nav a { background: transparent !important; }
	.nav a:hover { background: transparent !important; box-shadow: none !important; }
}

/* Enhanced select visual styling */
select.input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: #eaf2ff;
  padding-right: 38px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="%23eaf2ff"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  border-radius: 10px;
}
select.input:hover { border-color: rgba(255,255,255,.35); }
select.input:focus { outline: 2px solid var(--brand); border-color: var(--brand); }
select.input::-ms-expand { display: none; }
select.input option {
  background: #0b1320 !important;
  color: #eaf2ff !important;
}
select.input option:disabled { color: rgba(234,242,255,.6) !important; }

/* =============================
   Responsive Enhancements
   (Mobile-first without changing desktop layout)
   ============================= */
@media (max-width: 1024px) {
	/* Slightly tighter navbar spacing on tablets */
	.navbar-inner { padding: 12px 16px; gap: 16px; }
	.brand img.brand-logo { height: 42px; }
}

@media (max-width: 900px) {
	/* Container side padding for small screens */
	.container { padding: 12px; }
	/* Navbar: keep nav items on the right and allow wrapping (but not for mobile drawer) */
	.navbar .nav:not(.open) { justify-content: flex-end; gap: 6px; }
	.navbar .nav a { padding: 12px 14px; font-size: 15px; }
	/* Hero text spacing */
	.hero-centered .hero-text { padding: 8px; }
	/* Cards grid tighter min width so 1-per-row appears earlier when needed */
	.grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 12px; }
	/* Feature grid adapts */
	.hero-features { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 768px) {
	/* Mobile nav slide-in drawer from right with same visual style */
	.navbar-inner { gap: 12px; position: relative; }
	.navbar .nav {
		position: fixed;
		top: 0;
		right: 0;
		height: 100vh;
		width: 78vw;
		max-width: 360px;
		padding: 20px 16px;
		background: rgba(15,23,42,.6);
		backdrop-filter: blur(14px) saturate(160%);
		border-left: 1px solid rgba(147,197,253,.22);
		box-shadow: -20px 0 60px rgba(0,0,0,.45);
		display: grid;
		gap: 12px;
		place-content: center;
		justify-items: stretch;
		transform: translateX(100%);
		transition: transform .25s ease-out;
		z-index: 1000;
	}
	.navbar .nav.open { transform: translateX(0); }
	.navbar .nav a { width: 100%; max-width: 340px; text-align: center; padding: 14px; border-radius: 12px; border: none; background: transparent; }
	.navbar .nav a:hover { background: transparent; }
	/* Show hamburger on mobile */
	.hamburger { display: inline-flex !important; appearance: none; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); color: white; border-radius: 12px; width: 40px; height: 40px; padding: 0; align-items: center; justify-content: center; gap: 0; cursor: pointer; transition: all .2s ease; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); }
	.hamburger .bars { display: inline-block; width: 18px; height: 2px; background: white; position: relative; border-radius: 2px; }
	.hamburger .bars::before, .hamburger .bars::after { content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: white; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
	.hamburger .bars::before { top: -6px; }
	.hamburger .bars::after { top: 6px; }
	.hamburger.active .bars { background: transparent; }
	.hamburger.active .bars::before { transform: translateY(6px) rotate(45deg); }
	.hamburger.active .bars::after { transform: translateY(-6px) rotate(-45deg); }
}

@media (max-width: 560px) {
	/* Single column everywhere */
	.grid { grid-template-columns: 1fr; }
	/* Reduce paddings for very small phones */
	.container { padding: 10px; }
	.section { padding: 28px 10px; }
	/* Card typography */
	.card .title { font-size: 16px; }
	.card .sub { font-size: 13px; }
	.card .body { padding: 12px; }
	/* Calendar density on small phones (only affects mobile since desktop has larger breakpoints) */
	#calendar { gap: 4px; }
	.cell { min-height: 28px; padding: 6px; font-size: 12px; }
	/* Gallery controls slightly inset */
	.gallery-nav.prev { left: -10px; }
	.gallery-nav.next { right: -10px; }
}

/* Van detail specific mobile tweaks (complementing existing rules) */
@media (max-width: 768px) {
	/* Keep description panel aligned with photo height (already set above) */
	.split { gap: 16px; }
	.book-row { gap: 16px; }
	/* Booking form controls stack better */
	#booking-form > div[style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr; }
}

/* Desktop-only resets to avoid mobile drawer artifacts */
@media (min-width: 769px) {
	.nav-backdrop { display: none !important; }
	.nav { position: relative; height: auto; width: auto; padding: 0; background: transparent; border: 0; box-shadow: none; transform: none; transition: none; }
}



/* --- Force Disable Horizontal Scroll FIX --- */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}


