/* =========================================================
   Fivestar Minicab — Public Site Theme
   Orange / Black premium theme with taxi-motion animations
   ========================================================= */

:root{
  --black: #08080a;
  --black-soft: #121216;
  --black-elev: #1a1a20;
  --black-elev-2: #222229;
  --line: rgba(255,255,255,.08);
  --white: #ffffff;
  --gray-100: #f6f6f8;
  --gray-300: #cfcfd6;
  --gray-400: #9a9aa5;
  --gray-500: #6f6f7a;

  --orange: #ff7a1a;
  --orange-2: #ff5400;
  --orange-3: #ff2d00;
  --orange-light: #ffb35c;
  --orange-glow: rgba(255,122,26,.45);

  --gradient-primary: linear-gradient(135deg, #ffb347 0%, #ff7a1a 45%, #ff2d00 100%);
  --gradient-primary-hover: linear-gradient(135deg, #ff2d00 0%, #ff7a1a 55%, #ffb347 100%);
  --gradient-dark: linear-gradient(180deg, #16161b 0%, #08080a 100%);
  --gradient-radial: radial-gradient(circle at 30% 20%, rgba(255,122,26,.35), transparent 55%);

  --shadow-orange: 0 20px 60px -15px rgba(255, 84, 0, .45);
  --shadow-soft: 0 10px 40px -10px rgba(0,0,0,.5);

  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 28px;

  --container: 1240px;
  --header-h: 86px;

  --ease: cubic-bezier(.19,1,.22,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: transparent;
  color: var(--gray-100);
  font-family: 'Plus Jakarta Sans', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin:0; padding:0; }
h1,h2,h3,h4,h5{ margin:0 0 .5em; font-weight: 800; letter-spacing: -.02em; line-height:1.15; color:#fff; }
p{ margin:0 0 1em; color: var(--gray-300); }
button{ font-family: inherit; }

::selection{ background: var(--orange); color:#fff; }

/* Scrollbar */
::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background: var(--black); }
::-webkit-scrollbar-thumb{ background: var(--orange-2); border-radius:10px; }

/* Loading progress bar (top) */
#site-progress{
  position: fixed; top:0; left:0; height:3px; width:0%;
  background: var(--gradient-primary);
  z-index: 9999; transition: width .3s var(--ease-soft);
  box-shadow: 0 0 12px var(--orange-glow);
}

/* ---------- Ambient road background (fixed, sits behind every page) ---------- */
.bg-scene{
  position: fixed; inset:0; z-index:-10; overflow:hidden; pointer-events:none;
  background: var(--black);
}
.bg-scene .bg-glow{
  position:absolute; border-radius:50%; filter: blur(120px);
  background: var(--gradient-primary);
  animation: blob-float 20s ease-in-out infinite;
}
.bg-scene .bg-glow.g1{ width:640px; height:640px; top:-220px; left:-200px; opacity:.22; }
.bg-scene .bg-glow.g2{ width:540px; height:540px; bottom:-220px; right:-180px; opacity:.15; animation-delay:-7s; }
.bg-scene .bg-glow.g3{ width:440px; height:440px; top:42%; left:58%; opacity:.12; animation-delay:-13s; }

.bg-scene .bg-grid{
  position:absolute; inset:-15%;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: grid-drift 46s linear infinite;
  mask-image: radial-gradient(circle at 50% 15%, #000 0%, transparent 68%);
  -webkit-mask-image: radial-gradient(circle at 50% 15%, #000 0%, transparent 68%);
}
@keyframes grid-drift{ from{ transform: translate(0,0); } to{ transform: translate(-64px,-64px); } }

.bg-scene .bg-lanes{
  position:absolute; inset:-20%;
  background-image: repeating-linear-gradient(115deg, rgba(255,122,26,.06) 0 3px, transparent 3px 96px);
  animation: lanes-drift 6s linear infinite;
}
@keyframes lanes-drift{ from{ background-position:0 0; } to{ background-position: 332px 0; } }

.bg-scene .bg-road{
  position:absolute; left:0; right:0; bottom:0; height:140px;
  background: linear-gradient(to top, rgba(8,8,10,.9), transparent);
}
.bg-scene .bg-road-lane{
  position:absolute; left:0; right:0; bottom:44px; height:4px;
  background-image: repeating-linear-gradient(to right, var(--orange) 0 46px, transparent 46px 100px);
  opacity:.5; filter: drop-shadow(0 0 6px var(--orange-glow));
  animation: road-dash 2.6s linear infinite;
}
@keyframes road-dash{ from{ background-position-x:0; } to{ background-position-x:-146px; } }


.container{ max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-lg{ max-width: 1400px; margin:0 auto; padding: 0 24px; }

section{ position: relative; padding: 110px 0; }
@media (max-width: 992px){ section{ padding: 80px 0; } }
@media (max-width: 576px){ section{ padding: 60px 0; } }

.section-head{ max-width: 680px; margin: 0 auto 60px; text-align:center; }
.section-head.align-left{ margin: 0 0 50px; text-align:left; }
.section-head h2{ font-size: clamp(2rem, 3.6vw, 2.9rem); }
.section-head p{ font-size: 1.08rem; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 18px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,122,26,.16), rgba(255,45,0,.10));
  border: 1px solid rgba(255,122,26,.35);
  color: var(--orange-light);
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before{
  content:''; width:7px; height:7px; border-radius:50%;
  background: var(--orange); box-shadow: 0 0 0 4px rgba(255,122,26,.25);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot{
  0%,100%{ transform: scale(1); opacity:1; }
  50%{ transform: scale(1.5); opacity:.5; }
}

.text-gradient{
  background: var(--gradient-primary);
  -webkit-background-clip: text; background-clip:text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 15px 30px; border-radius: 999px; font-weight: 700; font-size: .96rem;
  border: 1px solid transparent; cursor:pointer; white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .3s var(--ease), border-color .3s;
  position: relative; isolation: isolate; overflow: hidden;
}
.btn-primary{
  background: var(--gradient-primary); background-size: 180% 180%; background-position: 0% 50%;
  color: #150900; box-shadow: var(--shadow-orange);
}
.btn-primary:hover{ background-position: 100% 50%; transform: translateY(-3px); box-shadow: 0 25px 70px -15px rgba(255,84,0,.65); }
.btn-primary::after{
  content:''; position:absolute; inset:0; z-index:-1; border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(-120%);
}
.btn-primary:hover::after{ transform: translateX(120%); transition: transform .8s var(--ease); }

.btn-outline{
  background: transparent; color:#fff; border-color: rgba(255,255,255,.25);
}
.btn-outline:hover{ border-color: var(--orange); color: var(--orange-light); transform: translateY(-3px); background: rgba(255,122,26,.08); }

.btn-light{ background:#fff; color:#111; }
.btn-light:hover{ transform: translateY(-3px); box-shadow: var(--shadow-soft); }

.btn-sm{ padding: 10px 20px; font-size: .85rem; }
.btn-block{ width:100%; }
.btn svg{ width:18px; height:18px; }

/* ---------- Header ---------- */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 1000;
  height: var(--header-h);
  display:flex; align-items:center;
  transition: height .3s var(--ease-soft);
}
.site-header::before{
  content:''; position:absolute; inset:0; z-index:-1;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease-soft), border-color .4s var(--ease-soft), backdrop-filter .4s;
}
.site-header.is-scrolled{ height: 72px; }
.site-header.is-scrolled::before{
  background: rgba(8,8,10,.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; gap: 14px; }

.brand{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.brand img{ height: 40px; width:auto; }
.brand-word{ font-size: 1.32rem; font-weight: 800; letter-spacing:-.02em; }
.brand-word b{ color: var(--orange); font-weight: 800; }

.nav-main{ display:flex; align-items:center; gap: 2px; flex-shrink: 1; min-width:0; }
.nav-main a{
  padding: 10px 13px; border-radius: 999px; font-weight: 600; font-size: .89rem;
  color: var(--gray-300); position: relative; transition: color .25s, background .25s;
  white-space: nowrap;
}
.nav-main a:hover{ color:#fff; background: rgba(255,255,255,.06); }
.nav-main a.active{ color:#fff; background: rgba(255,122,26,.14); }
.nav-main a.active::after{
  content:''; position:absolute; left:16px; right:16px; bottom:6px; height:2px;
  background: var(--gradient-primary); border-radius: 2px;
}

.header-actions{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.nav-toggle{
  display:none; width:44px; height:44px; border-radius:12px; border:1px solid var(--line);
  background: rgba(255,255,255,.04); cursor:pointer; position:relative; flex-shrink:0;
}
.nav-toggle span{
  position:absolute; left:11px; right:11px; height:2px; background:#fff; border-radius:2px;
  transition: transform .3s var(--ease-soft), opacity .3s var(--ease-soft), top .3s var(--ease-soft);
}
.nav-toggle span:nth-child(1){ top:15px; }
.nav-toggle span:nth-child(2){ top:21px; }
.nav-toggle span:nth-child(3){ top:27px; }
.nav-toggle.is-open span:nth-child(1){ top:21px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ top:21px; transform: rotate(-45deg); }

@media (max-width: 1180px){
  .header-actions .btn-outline{ display:none; }
}

@media (max-width: 992px){
  .nav-main{
    position: fixed; top: 72px; left:0; right:0; bottom:0; z-index: 999;
    background: rgba(8,8,10,.98); backdrop-filter: blur(10px);
    flex-direction: column; align-items: stretch; padding: 20px; gap: 4px;
    transform: translateY(-12px); opacity:0; pointer-events:none;
    transition: transform .35s var(--ease-soft), opacity .3s;
    overflow-y:auto;
  }
  .nav-main.is-open{ transform: translateY(0); opacity:1; pointer-events:auto; }
  .nav-main a{ padding: 16px 18px; font-size: 1.05rem; border-bottom:1px solid var(--line); border-radius:0; }
  .nav-toggle{ display:block; }
  .header-actions .btn-outline{ display:none; }
}

@media (max-width: 480px){
  .site-header .container{ gap: 8px; padding: 0 16px; }
  .brand{ gap:8px; min-width:0; }
  .brand img{ height: 32px; }
  .brand-word{ font-size: 1.02rem; white-space: nowrap; }
  .header-actions{ gap:8px; }
  .header-actions .btn-primary.btn-sm{ padding: 9px 14px; font-size: .78rem; }
  .nav-toggle{ width:40px; height:40px; flex-shrink:0; }
}

@media (max-width: 360px){
  .header-actions .btn-primary.btn-sm span{ display:none; }
}

/* ---------- Hero ---------- */
.hero{
  position: relative; padding: calc(var(--header-h) + 90px) 0 120px;
  background: var(--gradient-dark);
  overflow: hidden;
  isolation: isolate;
}
.hero::before{
  content:''; position:absolute; inset:0; z-index:-2;
  background: var(--gradient-radial);
}
.hero-blob{
  position:absolute; border-radius:50%; filter: blur(90px); z-index:-1; opacity:.55;
  background: var(--gradient-primary);
  animation: blob-float 14s ease-in-out infinite;
}
.hero-blob.b1{ width:520px; height:520px; top:-180px; right:-160px; }
.hero-blob.b2{ width:380px; height:380px; bottom:-160px; left:-120px; animation-delay: -6s; opacity:.35; }
@keyframes blob-float{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(-40px, 30px) scale(1.12); }
}

.hero-grid{ display:grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items:center; }
@media (max-width: 992px){ .hero-grid{ grid-template-columns: 1fr; gap: 50px; text-align:center; } }

.hero h1{ font-size: clamp(2.4rem, 5vw, 3.9rem); }
.hero-lede{ font-size: 1.15rem; max-width: 520px; }
@media (max-width: 992px){ .hero-lede{ margin-inline:auto; } }

.hero-cta{ display:flex; gap:16px; flex-wrap:wrap; margin-top: 34px; }
@media (max-width: 992px){ .hero-cta{ justify-content:center; } }

.hero-stats{ display:flex; gap: 34px; margin-top: 50px; flex-wrap:wrap; }
@media (max-width: 992px){ .hero-stats{ justify-content:center; } }
.hero-stats .stat b{ display:block; font-size: 2rem; font-weight:800; color:#fff; }
.hero-stats .stat span{ font-size: .85rem; color: var(--gray-400); }

.hero-visual{ position:relative; }
.hero-visual img{ position:relative; z-index:2; border-radius: var(--radius-lg); }
.hero-visual .ring{
  position:absolute; inset: -26px; z-index:1; border-radius: calc(var(--radius-lg) + 26px);
  border: 1px dashed rgba(255,122,26,.4);
  animation: spin 30s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }

.float-card{
  position:absolute; display:flex; align-items:center; gap:12px;
  background: rgba(20,20,25,.85); backdrop-filter: blur(14px);
  border:1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 18px; box-shadow: var(--shadow-soft); z-index:3;
  animation: float-y 4.5s ease-in-out infinite;
}
.float-card .ic{
  width:42px; height:42px; border-radius:12px; display:flex; align-items:center; justify-content:center;
  background: var(--gradient-primary); flex-shrink:0;
}
.float-card .ic svg{ width:22px; height:22px; color:#150900; }
.float-card b{ display:block; font-size:.95rem; color:#fff; }
.float-card span{ font-size:.78rem; color: var(--gray-400); }
@keyframes float-y{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-14px); } }

/* Route / road animation strip used in hero + how-it-works */
.route-strip{ position:relative; display:block; width:100%; max-width: 960px; aspect-ratio: 460 / 100; margin: 44px auto 12px; }
.route-strip svg{ width:100%; height:100%; display:block; }
@media (max-width: 992px){
  .route-strip{ max-width: 700px; margin: 36px auto 10px; }
}
@media (max-width: 576px){
  .route-strip{ max-width: 100%; margin: 24px 0 8px; }
}
.route-strip .road-path{
  fill:none; stroke: rgba(255,255,255,.14); stroke-width: 3; stroke-dasharray: 2 14; stroke-linecap: round;
}
.route-strip .road-progress{
  fill:none; stroke: url(#routeGradient); stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 1000; stroke-dashoffset: 1000;
}
.route-strip .taxi-marker{ animation: drive-along 6s linear infinite; }
@keyframes drive-along{ 0%{ offset-distance: 0%; } 100%{ offset-distance: 100%; } }

/* ---------- Marquee ---------- */
.marquee-wrap{
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  background: var(--black-soft); padding: 26px 0; overflow:hidden;
}
.marquee{ display:flex; width:max-content; animation: marquee-scroll 26s linear infinite; }
.marquee:hover{ animation-play-state: paused; }
.marquee-item{
  display:flex; align-items:center; gap:10px; padding: 0 36px; white-space:nowrap;
  font-weight:700; color: var(--gray-400); font-size: 1rem; letter-spacing:.02em;
}
.marquee-item svg{ width:18px; height:18px; color: var(--orange); }
@keyframes marquee-scroll{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ---------- Cards ---------- */
.card{
  background: var(--black-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .35s;
  position: relative; overflow:hidden;
}
.card:hover{ transform: translateY(-10px); border-color: rgba(255,122,26,.4); box-shadow: var(--shadow-orange); }
.card::before{
  content:''; position:absolute; inset:0; opacity:0; transition:opacity .4s;
  background: radial-gradient(400px circle at var(--mx,50%) var(--my,0%), rgba(255,122,26,.14), transparent 60%);
}
.card:hover::before{ opacity:1; }

.icon-tile{
  width:58px; height:58px; border-radius:16px; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, rgba(255,122,26,.22), rgba(255,45,0,.10));
  border: 1px solid rgba(255,122,26,.3);
  margin-bottom: 22px; transition: transform .4s var(--ease);
}
.card:hover .icon-tile{ transform: rotate(-8deg) scale(1.08); }
.icon-tile svg{ width:28px; height:28px; color: var(--orange-light); }

.grid{ display:grid; gap: 28px; }
.grid-2{ grid-template-columns: repeat(2,1fr); }
.grid-3{ grid-template-columns: repeat(3,1fr); }
.grid-4{ grid-template-columns: repeat(4,1fr); }
@media (max-width: 992px){ .grid-3, .grid-4{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; } }

/* ---------- Steps / process ---------- */
.steps{ display:grid; grid-template-columns: repeat(4,1fr); gap: 26px; position:relative; }
@media (max-width: 992px){ .steps{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 576px){ .steps{ grid-template-columns: 1fr; } }
.step{ text-align:center; padding: 30px 20px; }
.step .num{
  width:56px; height:56px; margin:0 auto 18px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-weight:800; font-size:1.2rem;
  background: var(--gradient-primary); color:#150900; box-shadow: var(--shadow-orange);
}

/* ---------- Timeline (icon process list) ---------- */
.timeline{ position:relative; max-width:640px; margin:0 auto; padding:6px 0; }
.timeline::before{
  content:''; position:absolute; left:31px; top:4px; bottom:4px; width:2px;
  background: linear-gradient(to bottom, transparent, var(--orange) 6%, var(--orange) 94%, transparent);
  opacity:.55;
}
.timeline-item{
  position:relative; display:flex; align-items:flex-start; gap:24px; margin-bottom:26px;
}
.timeline-item:last-child{ margin-bottom:0; }
.timeline-num{
  position:relative; flex-shrink:0; z-index:1;
  width:64px; height:64px; border-radius:20px;
  display:flex; align-items:center; justify-content:center;
  background: var(--gradient-primary); box-shadow: var(--shadow-orange);
  transition: transform .35s var(--ease);
}
.timeline-item:hover .timeline-num{ transform: scale(1.08) rotate(-4deg); }
.timeline-num svg{ width:26px; height:26px; color:#150900; }
.timeline-num .badge{
  position:absolute; top:-8px; right:-8px; width:24px; height:24px; border-radius:50%;
  background: var(--black-elev); border:2px solid var(--black); box-shadow:0 0 0 1.5px var(--orange);
  color:#fff; display:flex; align-items:center; justify-content:center; font-size:.68rem; font-weight:800;
}
.timeline-content{
  flex:1; min-width:0; margin-top:6px;
  background: var(--black-elev); border:1px solid var(--line); border-radius: var(--radius-sm);
  padding:16px 22px; transition: border-color .3s, transform .3s var(--ease);
}
.timeline-item:hover .timeline-content{ border-color: rgba(255,122,26,.4); transform: translateX(4px); }
.timeline-content p{ margin:0; color:var(--gray-300); }

@media (max-width: 576px){
  .timeline::before{ left:23px; }
  .timeline-item{ gap:16px; }
  .timeline-num{ width:48px; height:48px; border-radius:14px; }
  .timeline-num svg{ width:20px; height:20px; }
  .timeline-content{ padding:14px 18px; }
}

/* ---------- Stat counters ---------- */
.stats-band{
  background: var(--gradient-primary); border-radius: var(--radius-lg);
  padding: 56px 40px; display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align:center;
  box-shadow: var(--shadow-orange);
}
@media (max-width: 768px){ .stats-band{ grid-template-columns: repeat(2,1fr); } }
.stats-band .stat b{ font-size: 2.6rem; font-weight:800; color:#150900; display:block; }
.stats-band .stat span{ color: rgba(20,10,0,.75); font-weight:600; font-size:.92rem; }

/* ---------- Testimonials ---------- */
.testi-card{ background: var(--black-elev); border:1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.testi-stars{ display:flex; gap:4px; margin-bottom:14px; color: var(--orange); }
.testi-stars svg{ width:16px; height:16px; }
.testi-person{ display:flex; align-items:center; gap:12px; margin-top:20px; }
.testi-person img{ width:46px; height:46px; border-radius:50%; object-fit:cover; border: 2px solid var(--orange); }
.testi-person b{ display:block; color:#fff; font-size:.95rem; }
.testi-person span{ font-size:.8rem; color: var(--gray-400); }

/* ---------- CTA band ---------- */
.cta-band{
  position:relative; border-radius: var(--radius-lg); overflow:hidden;
  background: var(--gradient-dark); border:1px solid var(--line);
  padding: 70px 50px; text-align:center;
}
.cta-band .hero-blob{ opacity:.5; }
@media (max-width: 768px){ .cta-band{ padding: 50px 24px; } }

/* ---------- Footer ---------- */
.site-footer{ background: #050506; border-top:1px solid var(--line); padding: 80px 0 0; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 60px; }
@media (max-width: 992px){ .footer-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 576px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-grid h5{ color:#fff; font-size:.95rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom: 20px; }
.footer-grid li{ margin-bottom: 12px; }
.footer-grid a{ color: var(--gray-400); font-size:.92rem; transition: color .25s, padding-left .25s; }
.footer-grid a:hover{ color: var(--orange-light); padding-left: 4px; }
.footer-brand p{ max-width: 320px; }
.social-row{ display:flex; gap:10px; margin-top: 22px; }
.social-row a{
  width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background: var(--black-elev); border:1px solid var(--line); transition: all .3s var(--ease-soft);
}
.social-row a:hover{ background: var(--gradient-primary); border-color: transparent; transform: translateY(-4px); }
.social-row svg{ width:17px; height:17px; }
.store-badges{ display:flex; gap:12px; margin-top:18px; flex-wrap:wrap; }
.store-badge{
  display:inline-flex; align-items:center; gap:10px; padding:11px 18px; border-radius: var(--radius-sm);
  background: var(--black-elev); border:1px solid var(--line); color:#fff;
  font-size:.92rem; font-weight:700; transition: border-color .3s, transform .3s var(--ease), background .3s;
}
.store-badge img{ width:24px; height:24px; flex-shrink:0; object-fit:contain; }
.store-badge:hover{ border-color: rgba(255,122,26,.45); transform: translateY(-3px); background: var(--black-elev-2); }
.footer-grid .store-badges{ flex-wrap:nowrap; gap:8px; }
.footer-grid .store-badge{ padding:9px 12px; gap:7px; font-size:.78rem; white-space:nowrap; }
.footer-grid .store-badge img{ width:18px; height:18px; }
.footer-bottom{
  border-top:1px solid var(--line); padding: 24px 0; display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap;
}
.footer-bottom p{ margin:0; font-size:.85rem; color: var(--gray-500); }
.footer-bottom-links{ display:flex; gap:20px; flex-wrap:wrap; }
.footer-bottom-links a{ font-size:.85rem; color: var(--gray-500); }
.footer-bottom-links a:hover{ color: var(--orange-light); }

/* ---------- Scroll reveal ---------- */
.reveal{ opacity:0; transform: translateY(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible{ opacity:1; transform: translateY(0); }
.reveal-scale{ opacity:0; transform: scale(.92); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-scale.is-visible{ opacity:1; transform: scale(1); }
[data-reveal-delay="1"]{ transition-delay:.1s; }
[data-reveal-delay="2"]{ transition-delay:.2s; }
[data-reveal-delay="3"]{ transition-delay:.3s; }
[data-reveal-delay="4"]{ transition-delay:.4s; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  position:relative; padding: calc(var(--header-h) + 70px) 0 80px;
  background: var(--gradient-dark); text-align:center; overflow:hidden; isolation:isolate;
}
.page-hero::before{ content:''; position:absolute; inset:0; z-index:-2; background: var(--gradient-radial); }
.breadcrumb{ display:flex; gap:8px; justify-content:center; align-items:center; color: var(--gray-400); font-size:.9rem; margin-top:14px; }
.breadcrumb a:hover{ color: var(--orange-light); }
.breadcrumb .sep{ opacity:.5; }

/* ---------- Forms ---------- */
.field{ margin-bottom: 20px; }
.field label{ display:block; font-size:.85rem; font-weight:600; color: var(--gray-300); margin-bottom:8px; }
.field input, .field textarea, .field select{
  width:100%; padding: 14px 16px; border-radius: var(--radius-sm);
  background: var(--black-elev); border:1px solid var(--line); color:#fff; font-size:.95rem;
  transition: border-color .25s, box-shadow .25s; font-family:inherit;
}
.field input:focus, .field textarea:focus, .field select:focus{
  outline:none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,122,26,.15);
}
.field textarea{ resize: vertical; min-height: 130px; }
.alert-success{
  background: rgba(60,180,110,.12); border:1px solid rgba(60,180,110,.4); color:#7ee2ac;
  padding:14px 18px; border-radius: var(--radius-sm); margin-bottom:20px; font-size:.9rem;
}

/* ---------- Accordion (FAQs) ---------- */
.accordion-item{ border:1px solid var(--line); border-radius: var(--radius-sm); margin-bottom:14px; background: var(--black-elev); overflow:hidden; }
.accordion-trigger{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding: 20px 24px; background:none; border:none; color:#fff; font-weight:700; font-size:1rem; text-align:left; cursor:pointer;
}
.accordion-trigger .chev{ width:20px; height:20px; flex-shrink:0; transition: transform .35s var(--ease-soft); color: var(--orange); }
.accordion-item.is-open .accordion-trigger .chev{ transform: rotate(180deg); }
.accordion-panel{ max-height:0; overflow:hidden; transition: max-height .4s var(--ease-soft); }
.accordion-panel-in{ padding: 0 24px 22px; color: var(--gray-300); }

/* ---------- Legal / policy content ---------- */
.prose{ max-width: 880px; margin: 0 auto; }
.prose h2{ font-size: 1.5rem; margin-top: 44px; }
.prose h2:first-child{ margin-top:0; }
.prose h3{ font-size: 1.15rem; color:#fff; margin-top: 28px; }
.prose p, .prose li{ color: var(--gray-300); font-size: 1rem; }
.prose ul, .prose ol{ padding-left: 22px; margin-bottom: 1em; }
.prose li{ margin-bottom: .5em; }
.prose strong{ color:#fff; }
.updated-badge{
  display:inline-block; padding:6px 14px; border-radius:999px; font-size:.8rem; font-weight:600;
  background: rgba(255,122,26,.12); border:1px solid rgba(255,122,26,.3); color: var(--orange-light);
  margin-bottom: 16px;
}
.toc{ background: var(--black-elev); border:1px solid var(--line); border-radius: var(--radius); padding:26px 30px; margin-bottom: 40px; }
.toc h4{ color:#fff; margin-bottom:14px; font-size:1rem; }
.toc ol{ padding-left:20px; margin:0; }
.toc a{ color: var(--gray-300); }
.toc a:hover{ color: var(--orange-light); }

/* ---------- Vehicle / service type mini cards ---------- */
.vehicle-card{
  display:flex; align-items:center; gap:18px; padding: 20px; border-radius: var(--radius);
  background: var(--black-elev); border:1px solid var(--line); transition: all .35s var(--ease);
}
.vehicle-card:hover{ border-color: rgba(255,122,26,.4); transform: translateX(6px); }
.vehicle-card img{ width:76px; height:auto; flex-shrink:0; filter: drop-shadow(0 8px 18px rgba(255,84,0,.25)); }
.vehicle-card h4{ margin:0 0 4px; font-size:1.05rem; }
.vehicle-card p{ margin:0; font-size:.86rem; }

/* ---------- Misc utils ---------- */
.mt-0{ margin-top:0 !important; }
.text-center{ text-align:center; }
.mx-auto{ margin-left:auto; margin-right:auto; }
.tag-pill{
  display:inline-flex; align-items:center; gap:6px; padding:5px 14px; border-radius:999px; max-width:100%;
  background: var(--black-elev); border:1px solid var(--line); font-size:.78rem; font-weight:600; color: var(--gray-300);
  white-space:normal; word-break:break-word; text-align:left;
}
.badge-orange{ background: rgba(255,122,26,.14); border-color: rgba(255,122,26,.35); color: var(--orange-light); }

.contact-detail-list{ display:flex; flex-direction:column; }
.contact-detail-row{
  display:flex; justify-content:space-between; align-items:center; gap:14px; flex-wrap:wrap;
  padding:14px 0; border-top:1px solid var(--line);
}
.contact-detail-list .contact-detail-row:first-child{ border-top:none; padding-top:0; }
.contact-detail-row .label{ color: var(--gray-300); font-size:.9rem; flex-shrink:0; }
@media (max-width: 420px){
  .contact-detail-row{ flex-direction:column; align-items:flex-start; gap:6px; }
}

/* Back to top */
#back-to-top{
  position: fixed; right: 26px; bottom: 26px; z-index: 900;
  width:48px; height:48px; border-radius:50%; border:none; cursor:pointer;
  background: var(--gradient-primary); color:#150900; box-shadow: var(--shadow-orange);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transform: translateY(16px);
  transition: all .35s var(--ease);
}
#back-to-top.is-visible{ opacity:1; visibility:visible; transform: translateY(0); }
#back-to-top svg{ width:20px; height:20px; }

/* WhatsApp-style floating CTA */
.float-cta{
  position: fixed; left: 26px; bottom: 26px; z-index: 900;
  display:flex; align-items:center; gap:10px; padding: 13px 20px 13px 13px;
  background: var(--black-elev); border:1px solid var(--line); border-radius:999px;
  box-shadow: var(--shadow-soft); animation: float-y 4s ease-in-out infinite;
  opacity:0; visibility:hidden; transform: translateY(16px);
  transition: opacity .35s var(--ease), visibility .35s, transform .35s var(--ease);
}
.float-cta.is-visible{ opacity:1; visibility:visible; transform: translateY(0); }
.float-cta .ic{ width:32px; height:32px; border-radius:50%; background: var(--gradient-primary); display:flex; align-items:center; justify-content:center; }
.float-cta .ic svg{ width:17px; height:17px; color:#150900; }
.float-cta span{ font-size:.85rem; font-weight:700; color:#fff; }
@media (max-width: 576px){
  .float-cta span{ display:none; }
  .float-cta{ padding:13px; left:16px; bottom:16px; }
}

/* ---------- Legal pages (Privacy / Terms / Booking / Guidelines) ---------- */
.legal-hero{
  position:relative; padding: calc(var(--header-h) + 56px) 0 60px; overflow:hidden; isolation:isolate;
  background: linear-gradient(115deg, #130900 0%, #5a2200 32%, #ff5400 72%, #ffb347 100%);
}
.legal-hero::before{
  content:''; position:absolute; inset:0; z-index:0;
  background: linear-gradient(115deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 45%, transparent 65%);
}
.legal-hero .container{ position:relative; z-index:1; }
.legal-date-pill{
  display:inline-flex; align-items:center; gap:8px; padding:8px 16px; border-radius:999px;
  background: rgba(0,0,0,.35); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border:1px solid rgba(255,255,255,.22); color:#fff; font-size:.8rem; font-weight:700; margin-bottom:22px;
}
.legal-date-pill svg{ width:14px; height:14px; flex-shrink:0; }
.legal-hero h1{ font-size: clamp(2rem, 4vw, 2.8rem); color:#fff; margin-bottom:12px; }
.legal-hero p{ max-width:620px; color: rgba(255,255,255,.88); margin:0; font-size:1.02rem; }
.legal-hero .decor-icon{
  position:absolute; right:5%; top:50%; transform:translateY(-50%); width:200px; height:200px;
  opacity:.13; color:#fff; z-index:0; pointer-events:none;
}
@media (max-width: 768px){ .legal-hero .decor-icon{ width:140px; height:140px; right:2%; } }
@media (max-width: 576px){ .legal-hero .decor-icon{ display:none; } .legal-hero{ padding-bottom:44px; } }

.legal-layout{ display:grid; grid-template-columns: 272px 1fr; gap: 36px; align-items:start; }
@media (max-width: 900px){ .legal-layout{ grid-template-columns: 1fr; } }

.legal-toc{
  position:sticky; top: calc(var(--header-h) + 24px);
  background: var(--black-elev); border:1px solid var(--line); border-left:3px solid var(--orange);
  border-radius: var(--radius); padding: 22px;
}
@media (max-width: 900px){ .legal-toc{ position:relative; top:0; } }
.legal-toc .toc-label{
  display:flex; align-items:center; gap:8px; font-size:.72rem; font-weight:800; letter-spacing:.1em;
  text-transform:uppercase; color: var(--gray-400); margin-bottom:14px;
}
.legal-toc .toc-label svg{ width:14px; height:14px; }
.legal-toc nav{ display:flex; flex-direction:column; gap:1px; }
.legal-toc nav a{
  display:flex; align-items:center; gap:10px; padding:9px 10px; border-radius:8px;
  color: var(--gray-300); font-size:.86rem; font-weight:600; transition: background .25s, color .25s;
}
.legal-toc nav a::before{
  content:''; width:5px; height:5px; border-radius:50%; background: var(--gray-500); flex-shrink:0;
  transition: background .25s, transform .25s;
}
.legal-toc nav a:hover{ color:#fff; background: rgba(255,255,255,.05); }
.legal-toc nav a.active{ color: var(--orange-light); background: rgba(255,122,26,.13); }
.legal-toc nav a.active::before{ background: var(--orange); transform: scale(1.5); }

.legal-cards{ display:flex; flex-direction:column; gap:20px; }
.legal-card{
  background: var(--black-elev); border:1px solid var(--line); border-left:4px solid var(--orange);
  border-radius: var(--radius); padding: 28px 30px; scroll-margin-top: calc(var(--header-h) + 20px);
}
.legal-card .card-head{ display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.legal-card .card-head .ic{
  width:38px; height:38px; border-radius:11px; display:flex; align-items:center; justify-content:center; flex-shrink:0;
  background: linear-gradient(135deg, rgba(255,122,26,.22), rgba(255,45,0,.10)); border:1px solid rgba(255,122,26,.3);
}
.legal-card .card-head .ic svg{ width:19px; height:19px; color: var(--orange-light); }
.legal-card h2{ margin:0; font-size:1.18rem; }
.legal-card h4{ font-size:.98rem; color:#fff; margin:20px 0 8px; }
.legal-card h4:first-child{ margin-top:0; }
.legal-card p{ color: var(--gray-300); margin-bottom:12px; }
.legal-card p:last-child{ margin-bottom:0; }
.legal-card .card-note{
  display:flex; gap:10px; align-items:flex-start; margin-top:18px; padding:14px 16px;
  background: rgba(255,122,26,.08); border:1px solid rgba(255,122,26,.25); border-radius: var(--radius-sm);
  font-size:.87rem; color: var(--gray-300);
}
.legal-card .card-note svg{ width:17px; height:17px; flex-shrink:0; margin-top:1px; color: var(--orange-light); }
.legal-card .card-note a{ color: var(--orange-light); text-decoration:underline; }

.legal-bullets{ display:flex; flex-direction:column; margin-top:4px; }
.legal-bullets .item{ display:flex; gap:12px; padding:11px 0; border-top:1px solid var(--line); }
.legal-bullets .item:first-child{ border-top:none; padding-top:2px; }
.legal-bullets .item svg{ width:17px; height:17px; flex-shrink:0; margin-top:2px; color: var(--orange); }
.legal-bullets .item div{ min-width:0; }
.legal-bullets .item b{ color:#fff; display:block; font-size:.92rem; }
.legal-bullets .item span{ display:block; color: var(--gray-300); font-size:.87rem; margin-top:2px; }
