/* Theme Colors */
:root{
  --black:#0b0b0d;
  --dark:#121216;
  --grey:#1d1f25;
  --muted:#9aa3ad;
  --white:#f5f7fa;
  --gold:#FFD700;
  --gold-2:#E6C200;
  --danger:#ff5252;
  --nav-h:64px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:var(--black);
  color:var(--white);
  overflow-x:hidden; /* prevent right-side blank space from accidental overflows */
  padding-top: var(--nav-h); /* spacer for fixed navbar */
}
a{color:var(--white);text-decoration:none}
img{display:block;max-width:100%}

/* Loader */
.loader{
  position:fixed;inset:0;display:flex;align-items:center;justify-content:center;gap:16px;
  background:var(--black);z-index:9999;transition:opacity .6s ease, visibility .6s ease;
}
.loader.hidden{opacity:0;visibility:hidden;transition-duration:1.25s}
.spinner{
  width:48px;height:48px;border-radius:50%;
  border:3px solid rgba(212,175,55,.2);
  border-top-color:var(--gold);
  animation:spin 1s linear infinite;
}
.logo-text{font-weight:800;letter-spacing:.2em;color:var(--gold)}
@keyframes spin{to{transform:rotate(360deg)}}

@media (prefers-reduced-motion: reduce){
  .loader{transition:none}
  .loader.hidden{transition:none}
}

/* Navbar */
.navbar{
  position:fixed;top:0;left:0;right:0;z-index:50;display:flex;align-items:center;justify-content:space-between;
  padding:14px 24px;background:rgba(0,0,0,.80);border-bottom:1px solid rgba(26,26,26,.7);
  backdrop-filter:saturate(120%) blur(6px);
  -webkit-backdrop-filter:saturate(120%) blur(6px);
}
.brand{display:flex;align-items:center;gap:10px;font-weight:700}
.brand img{width:28px;height:28px}
.nav-links{display:flex;gap:18px;list-style:none;padding:0;margin:0}
.nav-links a{padding:8px 4px;border-bottom:2px solid transparent}
.nav-links a:hover{border-color:var(--gold)}
.nav-links a.active{color:var(--gold)}
.role-switch{display:flex;gap:10px;align-items:center}
.nav-toggle{display:none;border:1px solid #2a2a2a;border-radius:10px;background:#0f1116;color:#ddd;padding:8px 10px;margin-left:10px}

/* Navbar Profile Dropdown */
.nav-profile{position:relative;margin-left:8px}
.avatar-btn{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:999px;border:1px solid #2a2a2a;background:#15161b;padding:0;cursor:pointer;transition:background .2s ease, box-shadow .2s ease, transform .1s ease}
.avatar-btn:hover{background:#1b1d23}
.avatar-btn:active{transform:scale(.98)}
.avatar-btn img{width:100%;height:100%;border-radius:999px;display:block}
.dropdown-menu{position:absolute;right:0;top:46px;width:220px;background:#111318;border:1px solid #23252b;border-radius:12px;box-shadow:0 10px 30px rgba(0,0,0,.45);padding:6px;opacity:0;transform:translateY(-6px);pointer-events:none;transition:opacity .16s ease, transform .16s ease;z-index:60}
.dropdown-menu.show{opacity:1;transform:translateY(0);pointer-events:auto}
.dropdown-item{display:flex;align-items:center;gap:8px;padding:8px 10px;border-radius:10px;color:var(--white);font-size:14px}
.dropdown-item:hover{background:#191b22}
.dropdown-item .icon{width:18px;height:18px;color:#cfd3da}
.dropdown-sep{height:1px;background:#23252b;margin:6px 2px}
.dropdown-item.danger{color:#ff9d9d}
.dropdown-item.danger:hover{background:rgba(255,82,82,.12)}

/* Buttons */
.btn{border:0;border-radius:10px;padding:10px 14px;cursor:pointer;font-weight:600}
.btn-gold{background:var(--gold);color:#111}
.btn-gold:hover{background:var(--gold-2)}
.btn-outline{border:1px solid var(--gold);color:var(--gold);background:transparent}
.btn-outline:hover{background:rgba(212,175,55,.08)}
.btn-ghost{background:transparent;color:var(--white);border:1px solid #2a2a2a}
.btn-ghost.active{border-color:var(--gold);color:var(--gold)}
.btn-mini{padding:6px 10px;border-radius:8px;background:var(--gold);color:#111;border:0}
/* Button glow hover */
.btn-gold{ transition: box-shadow .25s ease, transform .12s ease }
.btn-gold:hover{ box-shadow: 0 0 0 2px rgba(212,175,55,.35), 0 10px 24px rgba(212,175,55,.35); transform: translateY(-1px) }
.btn-gold:active{ transform: translateY(0) }

/* Hero */
.hero{display:grid;grid-template-columns:1.1fr .9fr;gap:48px;align-items:center;padding:64px 24px;max-width:1200px;margin:0 auto}
.hero--landing{ position:relative; z-index:0; }
.hero--landing{overflow:visible} /* allow full-bleed background to extend */
.hero--landing:before{content:"";position:absolute;top:0;bottom:0;left:0;right:0;
  /* full-bleed trick that accounts for scrollbar width */
  margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  background:
    linear-gradient(to right, rgba(255,255,255,.78), rgba(255,255,255,.36)),
    radial-gradient(500px 220px at 10% 90%, rgba(212,175,55,.08), transparent 60%),
    radial-gradient(600px 260px at 90% 20%, rgba(255,255,255,.05), transparent 60%);
  z-index:-1; pointer-events:none;}

/* Full-bleed image layer */
.hero--landing:after{content:"";position:absolute;top:0;bottom:0;left:0;right:0;
  margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  background: url('./assets/LandingPage.jpg') center/cover no-repeat;
  z-index:-2; pointer-events:none;}
.wave-sep{grid-column:1/-1;margin-top:32px}
.wave-sep svg{display:block;width:100%;height:80px}

/* Animations */
@keyframes fadeDown { from{ opacity:0; transform: translateY(-10px) } to{ opacity:1; transform:none } }
@keyframes slideUpFade { from{ opacity:0; transform: translateY(14px) } to{ opacity:1; transform:none } }
@keyframes carDrive { 0%{ transform:translateX(120%) translateZ(0) } 100%{ transform:translateX(-120%) translateZ(0) } }
@keyframes floatY { 0%{ transform: translateY(0) } 50%{ transform: translateY(-8px) } 100%{ transform: translateY(0) } }

/* Hero staged text reveal */
.hero--landing .hero-content h1{ animation: fadeDown .8s ease .1s both }
.hero--landing .hero-content p{ animation: fadeDown .8s ease .25s both }

/* Moving car across hero */
.hero-visual{position:relative}
.hero-car{ position:absolute; bottom:12px; right:-20%; width:88px; height:auto; filter: drop-shadow(0 6px 16px rgba(0,0,0,.45));
  animation: carDrive 12s linear infinite; opacity:.95 }
@media (max-width: 560px){ .hero-car{ bottom:6px; width:64px } }
.hero-content h1{font-size:44px;line-height:1.1;margin:0 0 12px}
.hero-content p{color:var(--muted);max-width:560px}
.hero--landing .hero-content h1{color:#111}
.hero--landing .hero-content p{color:#333}
.hero-cta{display:flex;gap:12px;margin:16px 0 10px}
.hero-visual{display:flex;justify-content:center}
.hero-visual{will-change: transform;}
.device-card{width:300px;border-radius:22px;overflow:hidden;background:#0f1014;border:1px solid #23252b;box-shadow:0 10px 40px rgba(0,0,0,.4)}
.device-header{display:flex;gap:6px;padding:10px;background:#0a0b0e;border-bottom:1px solid #23252b}
.device-header .dot{width:8px;height:8px;border-radius:50%;background:#2a2d35}
.device-body{padding:12px;display:grid;gap:10px}
.device-list-item{display:flex;align-items:center;justify-content:space-between;background:#121318;border:1px solid #23252b;border-radius:14px;padding:10px}
.device-list-item small{color:var(--muted);display:block}

/* How */
.how{max-width:1100px;margin:0 auto;padding:36px 24px}
.how h2{text-align:center;margin-bottom:18px}
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.step{background:#0f1116;border:1px solid #23252b;border-radius:16px;padding:16px;text-align:center}
.step .icon{font-size:20px;margin-bottom:8px}

/* Generic Sections */
.section{position:relative;padding:64px 0;background:#0f1014}
.section{overflow-x:clip} /* avoid horizontal scrollbar from inner effects */
.section .container{max-width:1200px;margin:0 auto;padding:0 24px}
.text-center{text-align:center}
.muted{color:var(--muted)}

/* Stats */
.stats{background:linear-gradient(7deg,rgba(233, 236, 239, 1) 0%, rgba(222, 224, 222, 1) 50%, rgba(255, 255, 240, 1) 100%);}
.stats-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:center}
.stats-illustration{position:relative;z-index:0}
.stats-content{position:relative;z-index:2;color:#111}
.stats-content h2{color:#111}
.stats-content p{color:#333}
.stat-cards{position:relative;z-index:1}
.stat-card{background:#0f1116}
.stats-illustration .illustration-card{position:relative;height:320px;background:#0b0c10;border:1px solid #23252b;border-radius:24px;overflow:hidden}
.illustration-card .person{position:absolute;left:24px;bottom:24px;width:72px;height:72px;border-radius:50%;background:linear-gradient(135deg,#2b2f3a,#1c1f27);box-shadow:0 10px 24px rgba(0,0,0,.4)}
.illustration-card .vehicle{position:absolute;bottom:36px;border-radius:12px;height:28px}
.illustration-card .vehicle--car{left:120px;width:120px;background:linear-gradient(90deg,#d4af37,#b7962f)}
.illustration-card .vehicle--scooter{left:256px;width:90px;background:#1f2026;border:1px solid #2a2a2a}
.illustration-card .pulse{position:absolute;right:40px;top:40px;width:10px;height:10px;border-radius:50%;background:#d4af37;box-shadow:0 0 0 8px rgba(212,175,55,.15),0 0 0 16px rgba(212,175,55,.08)}
.stats-illustration .illustration-card{overflow:hidden}

/* Animations */
@keyframes floatY { 0%{ transform: translateY(0) } 50%{ transform: translateY(-8px) } 100%{ transform: translateY(0) } }
@keyframes pulseGlow { 0%{ box-shadow:0 0 0 6px rgba(212,175,55,.18), 0 0 0 14px rgba(212,175,55,.10) } 50%{ box-shadow:0 0 0 10px rgba(212,175,55,.10), 0 0 0 22px rgba(212,175,55,.05) } 100%{ box-shadow:0 0 0 6px rgba(212,175,55,.18), 0 0 0 14px rgba(212,175,55,.10) } }

.stats-illustration .person{animation: floatY 4.5s ease-in-out infinite}
.stats-illustration .vehicle--car{animation: floatY 5.2s ease-in-out infinite .2s}
.stats-illustration .vehicle--scooter{animation: floatY 4s ease-in-out infinite .4s}
.stats-illustration .pulse{animation: pulseGlow 2.4s ease-in-out infinite}

@media (prefers-reduced-motion: reduce){
  .stats-illustration .person,
  .stats-illustration .vehicle--car,
  .stats-illustration .vehicle--scooter,
  .stats-illustration .pulse,
  #hero-parallax,
  #stats-parallax { animation: none !important; transition: none !important; }
}
.stats-content h2{margin:0 0 18px;color:#2a2a2a}
.stat-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.stat-card{background:#0b0c10;border:1px solid #23252b;border-radius:16px;padding:18px;box-shadow:0 6px 20px rgba(0,0,0,.25)}
.stat-card h3{margin:0 0 6px;color:var(--gold)}
.stat-card p{margin:0;color:var(--muted)}

/* Mid CTA */
.mid-cta{background:#0b0b0dab}
.mid-cta h2{margin:0 0 8px}
.mid-cta p{max-width:760px;margin:0 auto}

/* Features */
.features{background:#0f1014}
.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.feature{background:#0b0c10;border:1px solid #23252b;border-radius:16px;padding:18px;box-shadow:0 6px 20px rgba(0,0,0,.25)}
.feature .icon{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;margin-bottom:8px}
.feature .icon svg{width:24px;height:24px;stroke:var(--gold);stroke-width:1.6}
.feature h3{margin:0 0 6px}
.feature p{margin:0;color:var(--muted)}

/* App Showcase */
.app-showcase{background:#ffffff}
.app-grid{display:grid;grid-template-columns:1.1fr .9fr;align-items:center;gap:32px}
.app-visual{position:relative;display:flex;justify-content:center;gap:22px;min-height:420px}
.app-visual{overflow:hidden} /* rotated phones can spill horizontally */
.app-phone-img{max-width:100%;height:auto;border-radius:24px;box-shadow:0 18px 60px rgba(0,0,0,.25)}
.phone{position:relative;width:240px;height:480px;border-radius:28px;background:#0b0c10;border:1px solid #23252b;box-shadow:0 18px 60px rgba(0,0,0,.45)}
.phone--left{transform:rotate(-10deg) translateY(10px)}
.phone--right{transform:rotate(10deg) translateY(-6px)}
.phone-screen{position:absolute;inset:10px;border-radius:22px;background:#111318;border:1px solid #23252b;overflow:hidden;display:flex;flex-direction:column;gap:10px;padding:10px}
.screen-top{display:flex;justify-content:center;padding-top:2px}
.pill{width:78px;height:8px;border-radius:999px;background:#1f2026;border:1px solid #2a2a2a}
.screen-card{display:flex;align-items:center;gap:10px;background:#0f1116;border:1px solid #23252b;border-radius:14px;padding:10px}
.screen-card strong{display:block}
.screen-card small{color:var(--muted)}
.thumb.car{width:54px;height:36px;border-radius:8px;background:linear-gradient(90deg,#d4af37,#b7962f)}
.screen-map{flex:1;background:#0b0c10;border:1px solid #23252b;border-radius:14px}
.screen-map.small{height:140px}
.screen-row{display:flex;gap:10px}
.stat{flex:1;text-align:center;background:#0f1116;border:1px solid #23252b;border-radius:12px;padding:8px;color:#cfd3da}
.screen-cta{margin-top:auto;background:var(--gold);color:#111;text-align:center;border-radius:12px;padding:10px;font-weight:700}
.screen-cta.alt{background:#17181c;color:#eee;border:1px solid #23252b}
.screen-time{font-size:36px;font-weight:800;letter-spacing:.06em;color:#e5e7eb;text-align:center}

.app-content .kicker{color:#6B7280;letter-spacing:.12em;font-size:12px;margin-bottom:8px}
.app-content .title{color:#111;font-size:42px;line-height:1.1;margin:0 0 10px}
.app-content p{color:#333}
.app-content .btns{margin-top:12px}

/* Subtle float for phones */
.app-visual .phone{animation: floatY 6s ease-in-out infinite}
.app-visual .phone--right{animation-delay:.6s}
/* Float the single image variant */
.app-phone-img{animation: floatY 7s ease-in-out infinite}

/* Scroll reveal utility */
.reveal{ opacity:0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform }
.reveal.reveal-in{ opacity:1; transform:none }

/* Destinations */
.destinations{background:#0f1014}
.dest-head{margin:0 0 14px}
.dest-head h2{margin:0 0 6px}
.dest-scroller{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(240px, 320px);gap:16px;overflow-x:auto;padding-bottom:6px;scroll-snap-type:x mandatory}
.dest-scroller::-webkit-scrollbar{height:8px}
.dest-scroller::-webkit-scrollbar-thumb{background:#23252b;border-radius:999px}
.dest-card{scroll-snap-align:start;background:#0b0c10;border:1px solid #23252b;border-radius:18px;overflow:hidden;box-shadow:0 8px 26px rgba(0,0,0,.3);display:flex;flex-direction:column}
.dest-card--featured{grid-auto-columns:unset;width:360px}
.dest-media{height:160px;background-size:cover;background-position:center}
.chip-badge{position:absolute;margin:10px 0 0 10px;display:inline-block;background:#17181c;border:1px solid #23252b;color:#cfd3da;font-size:12px;padding:4px 8px;border-radius:999px}
.dest-body{padding:12px;display:flex;flex-direction:column;gap:8px}
.dest-row{display:flex;align-items:center;justify-content:space-between}
.rating{color:#ffd166;font-weight:700}
.price{font-weight:700}
.points{list-style:none;padding-left:0;margin:6px 0 0;color:#9aa3ad;font-size:14px;display:grid;gap:4px}
.points li{position:relative;padding-left:16px}
.points li:before{content:"•";position:absolute;left:4px;top:0;color:#d4af37}
.cta-row{margin-top:6px;display:flex;justify-content:flex-end}

/* Services */
.services{background:#f9f9f9;box-shadow: 0 5px 10px rgb(193, 193, 194) inset;}
.services-head{display:flex;flex-direction:column;gap:6px;margin-bottom:14px}
.services-head h2{margin:0;color:#111}
.services-head .underline{display:inline-block;width:56px;height:3px;background:var(--gold);border-radius:999px}
.services-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:18px}
.service{display:flex;flex-direction:column;align-items:center;gap:8px}
.service .tile{position:relative;width:132px;height:100px;border-radius:16px;background:#f5f5f6;border:1px solid #23252b; box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 4px 0 rgba(0, 0, 0, 0.19);;display:grid;place-items:center;transition:transform .15s ease, box-shadow .2s ease, border-color .2s ease}
.service .tile::before{content:"";position:absolute;inset:auto;left:50%;top:50%;transform:translate(-50%,-50%);width:96px;height:72px;border-radius:14px;background:#f8fafc;box-shadow:0 6px 14px rgba(0,0,0,.10);}
.service .tile svg{width:44px;height:44px;stroke:#cfd3da;transition:stroke .2s ease, filter .2s ease, transform .2s ease}
.service .tile svg .accent{fill:#1f2026;transition:fill .2s ease}
/* Flaticon image support */
.service .tile img{width:80px;height:80px;object-fit:contain;filter:drop-shadow(0 0 0 rgba(0,0,0,0));transition:filter .2s ease, transform .2s ease}
.service .tile:hover{transform:translateY(-3px);box-shadow:0 16px 36px rgba(0,0,0,.35);border-color:var(--gold)}
.service .tile:hover svg{stroke:var(--gold);filter:drop-shadow(0 0 6px rgba(212,175,55,.25))}
.service .tile:hover svg .accent{fill:var(--gold)}
.service .tile:hover img{filter:drop-shadow(0 0 8px rgba(212,175,55,.25))}
.service .tile:focus-visible{outline:2px solid var(--gold);outline-offset:2px}
.service .label{font-weight:600;color:#8b949e}
.service:hover .label{color:var(--gold)}

/* Finder */
.finder{max-width:1200px;margin:0 auto;padding:36px 24px}
.search-form{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:14px}
.search-form input, .search-form select{background:#0f1116;border:1px solid #23252b;color:var(--white);padding:10px;border-radius:10px}
.map-summary{display:grid;grid-template-columns:2fr 1fr;gap:16px}
.map{width:100%;height:520px;border-radius:16px;overflow:hidden;border:1px solid #23252b}
.summary{background:#0f1116;border:1px solid #23252b;border-radius:16px;padding:16px;display:flex;flex-direction:column;gap:12px}
.summary .empty{color:var(--muted)}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:12px}
.card{background:#0f1116;border:1px solid #23252b;border-radius:14px;padding:12px}
.card h4{margin:0 0 4px}
.card small{color:var(--muted)}
.chips{display:flex;gap:8px}
.chip{background:#0f1116;border:1px solid #23252b;color:var(--white);padding:6px 10px;border-radius:999px;cursor:pointer}
.chip:hover, .chip.active{border-color:var(--gold);color:var(--gold)}
.alt-slot{color:var(--muted);font-size:14px}

/* Footer (new) */
.footer{background:#0b0b0d;color:#cfd3da;padding:48px 0 24px;border-top:1px solid #1a1a1a;margin-top:40px}
.footer .container{max-width:1200px;margin:0 auto;padding:0 24px}
.f-grid{display:grid;grid-template-columns:1.2fr 1fr 1fr 1.2fr;gap:22px;align-items:flex-start}
.f-brand .tagline{color:#9aa3ad;margin:8px 0 0}
.f-logo{display:flex;align-items:center;gap:10px}
.f-logo img{width:32px;height:32px}
.f-logo-text{font-weight:800;letter-spacing:.02em}
.f-title{font-weight:700;margin:0 0 10px;color:#e5e7eb}
.f-links{list-style:none;margin:0;padding:0;display:grid;gap:8px}
.f-links a{color:#cfd3da}
.f-links a:hover{color:var(--gold)}
.f-social{display:flex;gap:10px;margin:6px 0 12px}
.f-social-icon{display:inline-flex;width:34px;height:34px;align-items:center;justify-content:center;border:1px solid #2a2a2a;border-radius:10px;color:#cfd3da;transition:border-color .2s ease, color .2s ease, transform .15s ease}
.f-social-icon:hover{border-color:var(--gold);color:var(--gold);transform:translateY(-2px)}
.f-stores{display:flex;gap:10px;flex-wrap:wrap}
.store-badge{display:inline-flex;align-items:center;gap:8px;background:#0f1116;border:1px solid #23252b;color:#e5e7eb;border-radius:12px;padding:8px 12px;min-width:160px;transition:transform .15s ease, box-shadow .2s ease, border-color .2s ease}
.store-badge:hover{transform:translateY(-2px);box-shadow:0 10px 24px rgba(0,0,0,.35);border-color:var(--gold)}
.store-badge .sb-icon{font-size:20px}
.store-badge .sb-text small{display:block;color:#9aa3ad;line-height:1}
.store-badge .sb-text strong{display:block;line-height:1}
.f-bottom{margin-top:26px}
.f-bottom .divider{height:1px;background:#1a1a1a;margin-bottom:14px}
.f-copy{text-align:center;color:#9aa3ad}

@media (max-width: 980px){
  .f-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 560px){
  .f-grid{grid-template-columns:1fr}
}

/* Leaflet overrides */
.leaflet-container{background:#0b0b0d}
.leaflet-control-attribution{color:#888}
.leaflet-bar a{background:#0f1116;border-color:#23252b;color:#ddd}

/* Vehicle Options Carousel */
.carousel{background:#0f1014}
.c-head{text-align:center;margin:0 0 14px}
.c-head h2{margin:0 0 6px}
.c-wrap{position:relative}
.c-viewport{overflow:hidden}
.c-track{display:flex;gap:16px;will-change:transform}
.c-card{flex:0 0 auto;background:#0b0c10;border:1px solid #23252b;border-radius:16px;padding:16px;box-shadow:0 8px 26px rgba(0,0,0,.28);display:flex;flex-direction:column;align-items:center;text-align:center;transition:transform .15s ease, box-shadow .2s ease, border-color .2s ease}
.c-card:hover{transform:translateY(-4px);box-shadow:0 14px 36px rgba(0,0,0,.38);border-color:var(--gold)}
.c-media{width:80px;height:60px;display:grid;place-items:center;margin-bottom:8px}
.c-media img{max-width:100%;max-height:100%;object-fit:contain;filter:drop-shadow(0 0 0 rgba(0,0,0,0))}
.c-nav{position:absolute;top:50%;transform:translateY(-50%);border:1px solid #23252b;background:#111318;color:#e5e7eb;width:36px;height:36px;border-radius:999px;display:grid;place-items:center;cursor:pointer;z-index:2}
.c-prev{left:-6px}
.c-next{right:-6px}
.c-nav:hover{border-color:var(--gold);color:var(--gold)}

@media (max-width: 980px){
  .c-prev{left:-2px}
  .c-next{right:-2px}
}

/* Testimonials */
.testimonials{background:linear-gradient(7deg,rgba(225, 230, 230, 1) 0%, rgb(234, 238, 237) 50%, rgb(249, 249, 231) 100%);position:relative}
.t-head{text-align:center;margin:0 0 18px}
.t-head h2{margin:0 0 6px;color:#111}
.t-head p{color:#333}
.t-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.t-card{background:#ffffff;border:1px solid #e3e6eb;border-radius:16px;padding:16px;box-shadow:0 8px 24px rgba(0,0,0,.12);transition:transform .15s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;opacity:0;transform:translateY(8px)}
.testimonials.loaded .t-card{opacity:1;transform:none;transition:opacity .35s ease, transform .35s ease}
.t-card:hover{transform:translateY(-4px);box-shadow:0 16px 36px rgba(0,0,0,.18), 0 0 0 1px rgba(212,175,55,.35);border-color:var(--gold);background:#ffffff}
.t-user{display:flex;align-items:center;gap:10px;margin-bottom:8px}
.t-user img{width:40px;height:40px;border-radius:999px;border:1px solid #d9dde4}
.t-user strong{display:block;color:#111}
.t-user small{color:#666}
.t-stars{color:var(--gold);font-weight:700;letter-spacing:.06em;margin-bottom:6px}
.t-text{color:#333;margin:0}

@media (max-width: 980px){
  .t-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 560px){
  .t-grid{grid-template-columns:1fr}
}

/* Responsive */
@media (max-width: 980px){
  .hero{grid-template-columns:1fr;gap:28px}
  .stats-grid{grid-template-columns:1fr}
  .stats-illustration,.stats-content{justify-self:stretch}
  .features-grid{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(2,1fr)}
  .cards{grid-template-columns:repeat(2,1fr)}
  .map-summary{grid-template-columns:1fr}
  .map{height:420px}
  .role-switch{display:none}
  .nav-toggle{display:inline-flex}
  .nav-links{display:none;position:absolute;top:64px;left:0;right:0;background:#000;border-top:1px solid #1a1a1a;padding:10px 16px;flex-direction:column}
  /* align dropdown under fixed nav */
  .nav-links{top:var(--nav-h)}
  .nav-links.show{display:flex}
  /* Services responsive */
  .services-grid{grid-template-columns:repeat(3,1fr)}
  .service .tile{width:120px;height:90px}
}
@media (max-width: 560px){
  .cards{grid-template-columns:1fr}
  .features-grid{grid-template-columns:1fr}
  .map{height:360px}
  .search-form{flex-direction:column}
  /* Services responsive */
  .services-grid{grid-template-columns:1fr}
  .service .tile{width:100px;height:80px}
  .service .tile img{width:72px;height:72px}
}

/* Mid breakpoint for smoother layout on tablets */
@media (max-width: 720px){
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .service .tile{width:112px;height:86px}
}

/* Light Theme (Dashboard) Overrides */
/* Apply by adding class="theme-light" on <body> of dashboard pages */
body.theme-light{background:#FFFFFF;color:#1A1A1A}
body.theme-light a{color:#1A1A1A}

/* Navbar */
body.theme-light .navbar{background:rgba(255,255,255,.78);border-bottom:1px solid rgba(229,231,235,.8);backdrop-filter:saturate(120%) blur(6px);-webkit-backdrop-filter:saturate(120%) blur(6px)}
body.theme-light .brand span, body.theme-light .nav-links a{color:#1A1A1A}
body.theme-light .nav-links a.active{color:#1A1A1A;border-bottom-color:var(--gold)}
body.theme-light .nav-toggle{background:#FFFFFF;color:#1A1A1A;border:1px solid #E5E7EB}
body.theme-light .avatar-btn{background:#FFFFFF;border-color:#E5E7EB}
body.theme-light .avatar-btn:hover{background:#F5F5F5}
body.theme-light .dropdown-menu{background:#FFFFFF;border-color:#E5E7EB;box-shadow:0 10px 30px rgba(0,0,0,.08)}
body.theme-light .dropdown-item{color:#1A1A1A}
body.theme-light .dropdown-item:hover{background:#F5F5F5}
body.theme-light .dropdown-sep{background:#E5E7EB}

/* Buttons */
body.theme-light .btn-ghost{border:1px solid #E5E7EB;color:#1A1A1A}
body.theme-light .btn-ghost.active{border-color:var(--gold);color:var(--gold)}
body.theme-light .btn-outline{border-color:var(--gold);color:#1A1A1A}
body.theme-light .btn-outline:hover{background:rgba(255,215,0,.12)}

/* Generic sections */
body.theme-light .section{background:#FFFFFF}
body.theme-light .muted{color:#4B5563}

/* Cards / surfaces */
body.theme-light .feature,
body.theme-light .step,
body.theme-light .card,
body.theme-light .summary,
body.theme-light .dest-card,
body.theme-light .service .tile,
body.theme-light .stat-card{
  background:#FFFFFF;
  border:1px solid #E5E7EB;
  box-shadow:0 6px 20px rgba(0,0,0,.06);
}
body.theme-light .service .tile::before{background:#F8FAFC;box-shadow:0 6px 14px rgba(0,0,0,.05)}
body.theme-light .service .label{color:#6B7280}
body.theme-light .service:hover .label{color:var(--gold)}

/* Forms */
body.theme-light .search-form input,
body.theme-light .search-form select{background:#FFFFFF;border:1px solid #E5E7EB;color:#1A1A1A}
body.theme-light .chips .chip{background:#FFFFFF;border:1px solid #E5E7EB;color:#1A1A1A}
body.theme-light .chips .chip:hover, body.theme-light .chip.active{border-color:var(--gold);color:var(--gold)}

/* Maps and borders */
body.theme-light .map{border:1px solid #E5E7EB}
body.theme-light .stats-illustration .illustration-card{background:#FFFFFF;border:1px solid #E5E7EB}

/* Stats section adjustments */
body.theme-light .stats{background:#FFFFFF}
body.theme-light .stats-content{color:#1A1A1A}
body.theme-light .stats-content h2{color:#1A1A1A}
body.theme-light .stat-card p{color:#4B5563}

/* Destinations scroller */
body.theme-light .destinations{background:#FFFFFF}
body.theme-light .dest-scroller::-webkit-scrollbar-thumb{background:#E5E7EB}
body.theme-light .chip-badge{background:#FFFFFF;border:1px solid #E5E7EB;color:#374151}

/* Footer */
body.theme-light .footer{background:#FFFFFF;color:#4B5563;border-top:1px solid #E5E7EB}
body.theme-light .footer .links a{color:#374151}
body.theme-light .footer .links a:hover{color:var(--gold)}
body.theme-light .social-icon{border-color:#E5E7EB;color:#374151}
body.theme-light .social-icon:hover{border-color:var(--gold);color:var(--gold)}

