/* ═══════════════════════════════════════════════════
   LAUNDRY VAN — FRONT END CSS
   front.css — included on all public pages
═══════════════════════════════════════════════════ */

:root {
  --blue:      #1a6ef5;
  --blue-dk:   #0c3b9e;
  --blue-lt:   #eef4ff;
  --navy:      #0a1f5c;
  --accent:    #16c0a6;
  --accent-dk: #0e9e88;
  --white:     #ffffff;
  --bg:        #f8faff;
  --ink:       #0f172a;
  --muted:     #64748b;
  --border:    #e2eaf5;
  --radius:    16px;
  --nav-h:     70px;
}

* { box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--ink); background: #fff; }
img { max-width: 100%; }
a { color: inherit; }

/* ── NAVBAR ── */
.lv-nav {
  position: sticky;
  top: 0;
  z-index: 9990;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.lv-nav.scrolled { box-shadow: 0 4px 24px rgba(10,31,92,0.10); }
.lv-nav .container {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.lv-brand img { height: 54px; width: auto; display: block; }

.lv-nav-menu-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.lv-nav-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}
.lv-nav-links a {
  display: block;
  padding: 7px 14px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  transition: all 0.18s;
  white-space: nowrap;
}
.lv-nav-links a:hover,
.lv-nav-links a.active {
  color: var(--blue);
  background: var(--blue-lt);
}
.lv-nav-btns {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid var(--border);
}
.lv-btn-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 10px;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.18s;
  white-space: nowrap;
}
.lv-btn-login:hover { background: var(--blue-lt); }
.lv-btn-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dk));
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(26,110,245,0.30);
  transition: all 0.18s;
  white-space: nowrap;
}
.lv-btn-book:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,110,245,0.40); color: #fff; }

.lv-toggler {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 18px;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.wa-tip {
  background: #fff;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.2s;
  pointer-events: none;
}
.wa-float:hover .wa-tip { opacity: 1; transform: translateX(0); }
.wa-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.40);
  text-decoration: none;
  transition: all 0.2s;
  animation: waPop 0.5s ease;
}
.wa-btn:hover { transform: scale(1.1); color: #fff; }
@keyframes waPop { from{transform:scale(0);opacity:0;} to{transform:scale(1);opacity:1;} }

/* ── HERO ── */
.lv-hero {
  background: linear-gradient(135deg, #08173d 0%, #0f3182 50%, var(--blue) 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.lv-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,192,166,0.14) 0%, transparent 70%);
  top: -200px; right: -200px;
}
.lv-hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  bottom: -150px; left: -100px;
}
.lv-hero .container { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  margin-bottom: 22px;
}
.hero-badge .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulseAnim 2s infinite;
}
@keyframes pulseAnim { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(0.8);} }

.lv-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.lv-hero h1 .hl { color: var(--accent); }
.lv-hero .hero-sub {
  color: rgba(255,255,255,0.68);
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}
.hero-checks { list-style: none; padding: 0; margin: 0 0 32px; }
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 14.5px;
  margin-bottom: 9px;
}
.hero-checks li i { color: var(--accent); font-size: 15px; flex-shrink: 0; }

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 12px;
  background: var(--accent);
  color: #04221c;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(22,192,166,0.35);
  transition: all 0.2s;
  border: none;
}
.btn-primary-hero:hover { background: var(--accent-dk); color: #04221c; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(22,192,166,0.45); }

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.22);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost-hero:hover { background: rgba(255,255,255,0.18); color: #fff; }

.hero-img-box { position: relative; }
.hero-img-box img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  max-height: 520px;
  object-fit: cover;
}
.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
  animation: floatCard 3s ease-in-out infinite;
}
@keyframes floatCard { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
.hero-float-card .hf-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.hero-float-card .hf-title { font-weight: 700; font-size: 13px; color: #0f172a; white-space: nowrap; }
.hero-float-card .hf-sub { font-size: 11.5px; color: #64748b; white-space: nowrap; }

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.hero-rating .stars i { color: #f5a623; font-size: 13px; }
.hero-rating .r-text { font-size: 13px; color: rgba(255,255,255,0.65); }

/* ── TRUST STRIP ── */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 13.5px;
  color: #334155;
  justify-content: center;
}
.trust-item .ti-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--blue-lt);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

/* ── SECTIONS ── */
.lv-sec { padding: 90px 0; }
.lv-sec-bg { background: var(--bg); }

.sec-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--blue);
  margin-bottom: 10px;
}
.sec-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.sec-sub { color: var(--muted); font-size: 15px; line-height: 1.7; }

/* ── CATEGORY SLIDER ── */
.cat-slider-wrap {
  position: relative;
}
.cat-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0 10px;
  scroll-behavior: smooth;
}
.cat-scroll-wrap::-webkit-scrollbar { display: none; }
.cat-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  width: max-content;
  padding: 4px 4px 4px;
}
.cat-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--blue);
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(10,31,92,0.12);
  transition: all 0.18s;
}
.cat-arrow:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.cat-arrow.left  { left: -18px; }
.cat-arrow.right { right: -18px; }
@media (max-width: 576px) {
  .cat-arrow { display: none; }
}
.lv-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 10px 18px 10px 12px;
  transition: all 0.22s;
  cursor: pointer;
  white-space: nowrap;
}
.lv-cat .cat-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue-lt);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: all 0.22s;
}
.lv-cat .cat-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  line-height: 1;
}
.lv-cat:hover {
  border-color: var(--blue);
  background: var(--blue-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,110,245,0.12);
}
.lv-cat:hover .cat-circle { background: var(--blue); color: #fff; }
.lv-cat:hover .cat-name { color: var(--blue); }
.lv-cat.active {
  border-color: var(--blue);
  background: var(--blue);
}
.lv-cat.active .cat-circle { background: rgba(255,255,255,0.2); color: #fff; }
.lv-cat.active .cat-name { color: #fff; font-weight: 700; }

/* ── SERVICE CARDS — ICON BASED ── */
.lv-svc-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  height: 100%;
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
}
.lv-svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  opacity: 0;
  transition: opacity 0.22s;
}
.lv-svc-card:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26,110,245,0.12);
}
.lv-svc-card:hover::before { opacity: 1; }
.lv-svc-card .svc-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--blue-lt);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  transition: all 0.22s;
}
.lv-svc-card:hover .svc-icon { background: var(--blue); color: #fff; }
.lv-svc-card .svc-cat { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--blue); margin-bottom: 6px; }
.lv-svc-card .svc-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.lv-svc-card .svc-desc { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.lv-svc-card .svc-price { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 22px; color: var(--navy); }
.lv-svc-card .svc-unit { font-size: 12px; color: var(--muted); }
.tag-hot { background: #fff3e0; color: #c75b00; font-size: 10.5px; font-weight: 700; padding: 3px 10px; border-radius: 50px; }

.btn-svc-detail {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: 9px;
  border: 1.5px solid var(--border); color: #334155;
  font-size: 12.5px; font-weight: 600; text-decoration: none;
  background: #fff; transition: all 0.18s; flex: 1; justify-content: center;
}
.btn-svc-detail:hover { border-color: var(--blue); color: var(--blue); }
.btn-svc-add {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: 9px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dk));
  color: #fff; border: none;
  font-size: 12.5px; font-weight: 600;
  transition: all 0.18s; cursor: pointer; flex: 1; justify-content: center;
}
.btn-svc-add:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(26,110,245,0.3); }

/* ── FEATURE CARDS ── */
.lv-feat-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 30px 24px;
  height: 100%;
  transition: all 0.22s;
}
.lv-feat-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(26,110,245,0.10); }
.lv-feat-card .fi {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--blue-lt);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: all 0.22s;
}
.lv-feat-card:hover .fi { background: linear-gradient(135deg, var(--blue), var(--blue-dk)); color: #fff; }
.lv-feat-card h5 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.lv-feat-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin: 0; }

/* ── STEPS ── */
.lv-step-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  height: 100%;
  transition: all 0.22s;
}
.lv-step-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 14px 36px rgba(26,110,245,0.10); }
.step-num {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dk));
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(26,110,245,0.28);
}
.lv-step-card h5 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 15.5px; color: var(--navy); margin-bottom: 8px; }
.lv-step-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.65; }

/* ── STATS BAND ── */
.stats-band {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 24px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  top: -150px; right: -120px;
}
.stats-band::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,192,166,0.12) 0%, transparent 70%);
  bottom: -80px; left: -60px;
}
.stat-item { text-align: center; position: relative; z-index: 2; }
.stat-item .s-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.8rem; font-weight: 900; color: #fff; line-height: 1; }
.stat-item .s-lbl { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 6px; letter-spacing: 0.3px; }

/* ── TESTIMONIALS ── */
.lv-t-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  height: 100%;
  transition: box-shadow 0.2s;
}
.lv-t-card:hover { box-shadow: 0 8px 30px rgba(26,110,245,0.09); }
.t-quote { color: var(--blue); font-size: 32px; line-height: 1; margin-bottom: 10px; font-family: Georgia, serif; }
.t-stars { color: #f5a623; font-size: 13px; margin-bottom: 12px; }
.t-text { font-size: 14px; color: #334155; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.t-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--blue-lt); }
.t-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.t-role { font-size: 12px; color: var(--muted); }

/* ── FAQ ── */
.lv-faq .accordion-item {
  border: 1.5px solid var(--border) !important;
  border-radius: 14px !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.lv-faq .accordion-button {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  background: #fff;
  border-radius: 14px !important;
  padding: 18px 22px;
  box-shadow: none !important;
}
.lv-faq .accordion-button:not(.collapsed) {
  color: var(--blue);
  background: var(--blue-lt);
}
.lv-faq .accordion-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  padding: 4px 22px 20px;
}

/* ── CTA BAND ── */
.lv-cta {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 28px;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
}
.lv-cta::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,192,166,0.16) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.lv-cta .cta-inner { position: relative; z-index: 2; }
.lv-cta h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.lv-cta p { color: rgba(255,255,255,0.62); font-size: 15px; margin-bottom: 28px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff; padding: 10px 20px;
  border-radius: 12px; text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
}
.store-btn:hover { background: rgba(255,255,255,0.18); color: #fff; }
.store-btn i { font-size: 22px; }
.store-btn small { display: block; font-size: 10px; opacity: 0.7; line-height: 1; }
.store-btn strong { font-size: 14px; font-weight: 700; display: block; }

/* ── FOOTER ── */
.lv-footer {
  background: #070f2b;
  color: rgba(255,255,255,0.6);
  padding: 70px 0 0;
}
.footer-logo { height: 52px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; display: block; }
.footer-desc { font-size: 13.5px; line-height: 1.75; max-width: 300px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 8px; }
.fs-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.65);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; text-decoration: none;
  transition: all 0.2s;
}
.fs-link:hover { background: var(--blue); color: #fff; }
.footer-heading { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 18px; letter-spacing: 0.3px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13.5px; transition: color 0.18s; display: flex; align-items: center; gap: 7px; }
.footer-links a i { font-size: 9px; color: var(--accent); }
.footer-links a:hover { color: #fff; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; }
.fc-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(26,110,245,0.18);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.fc-label { font-size: 10.5px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.fc-val { font-size: 13px; color: rgba(255,255,255,0.75); }

.footer-newsletter {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 30px 36px;
  margin-top: 40px;
}
.fn-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 18px; color: #fff; margin-bottom: 6px; }
.fn-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }
.fn-form { display: flex; gap: 10px; }
.fn-form input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.fn-form input::placeholder { color: rgba(255,255,255,0.3); }
.fn-form input:focus { border-color: var(--blue); }
.fn-form button {
  padding: 12px 24px;
  background: var(--accent);
  color: #04221c;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.fn-form button:hover { background: var(--accent-dk); }

.footer-bottom {
  margin-top: 32px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 12.5px; }
.footer-bottom-links a:hover { color: #fff; }

/* ── PAGE HEAD (subpages) ── */
.lv-page-head {
  background: linear-gradient(135deg, #08173d, #1a6ef5);
  color: #fff;
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.lv-page-head::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,192,166,0.18) 0%, transparent 70%);
  top: -150px; right: -80px;
}
.lv-page-head .container { position: relative; z-index: 2; }
.lv-page-head h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.8rem); color: #fff; margin-bottom: 8px; }
.lv-page-head p { color: rgba(255,255,255,0.65); font-size: 15px; margin: 0; }
.lv-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; font-size: 13px; }
.lv-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.lv-breadcrumb a:hover { color: #fff; }
.lv-breadcrumb .sep { color: rgba(255,255,255,0.3); font-size: 10px; }
.lv-breadcrumb .cur { color: rgba(255,255,255,0.9); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(28px); transition: all 0.7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   MOBILE OVERLAY (body-level element)
══════════════════════════════════════ */
/* Backdrop */
.mob-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,31,92,0.45);
  z-index: 99990;
  backdrop-filter: blur(3px);
}
.mob-backdrop.show { display: block; }

/* Drawer */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 290px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow-y: auto;
  z-index: 99999;
  box-shadow: 4px 0 40px rgba(10,31,92,0.18);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu-overlay.open {
  transform: translateX(0);
}

/* Drawer header */
.mob-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid #e2eaf5;
  background: linear-gradient(135deg, #08173d, #1a6ef5);
  flex-shrink: 0;
}
.mob-drawer-head img {
  height: 42px;
  filter: brightness(0) invert(1);
}
.mob-close-btn {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
  flex-shrink: 0;
}
.mob-close-btn:hover { background: rgba(255,255,255,0.25); }

/* Nav links inside drawer - nuclear override */
.mobile-menu-overlay ul {
  list-style: none !important;
  padding: 14px 12px 0 !important;
  margin: 0 !important;
  display: block !important;
  width: 100% !important;
}
.mobile-menu-overlay ul li {
  display: block !important;
  width: 100% !important;
  margin-bottom: 2px !important;
  text-align: left !important;
}
.mobile-menu-overlay ul li a {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  width: 100% !important;
  box-sizing: border-box !important;
  gap: 12px !important;
  padding: 12px 14px !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #334155 !important;
  text-decoration: none !important;
  transition: all 0.18s;
  white-space: nowrap;
}
.mobile-menu-overlay ul li a:hover {
  background: #eef4ff !important;
  color: #1a6ef5 !important;
}
.mobile-menu-overlay ul li a.active {
  background: #eef4ff !important;
  color: #1a6ef5 !important;
  font-weight: 600 !important;
}

/* Buttons at bottom of drawer */
.mobile-menu-overlay .mobile-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 14px 12px 24px;
  border-top: 1px solid #e2eaf5;
  margin-top: auto;
  box-sizing: border-box;
}
.mobile-menu-overlay .lv-btn-login,
.mobile-menu-overlay .lv-btn-book {
  width: 100%;
  justify-content: center;
  padding: 13px;
  font-size: 15px;
  box-sizing: border-box;
}

/* ══════════════════════════════════════
   MOBILE RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 991px) {
  .lv-toggler { display: flex; }
  .lv-nav-menu-desktop { display: none !important; }
  .lv-nav { z-index: 9990 !important; }

  .lv-hero { min-height: auto; padding: 60px 0 50px; }
  .lv-hero h1 { font-size: 2rem; }
  .hero-float-card { display: none; }
  .lv-sec { padding: 60px 0; }
  .lv-cta { padding: 40px 24px; }
  .stats-band { padding: 36px 24px; }
  .stat-item .s-val { font-size: 2rem; }
}

@media (max-width: 576px) {
  .lv-hero h1 { font-size: 1.8rem; }
  .lv-brand img { height: 44px; }
  .lv-cta { padding: 32px 20px; }
  .fn-form { flex-direction: column; }
  .wa-float { bottom: 18px; right: 18px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-newsletter { padding: 24px 20px; }
}