:root{
    --ink:#151515;
    --paper:#FAFAF8;
    --paper-dim:#EFEDE6;
    --navy:#151515;
    --navy-2:#232323;
    --yellow:#F0B93F;
    --yellow-dim:#C6931F;
    --purple:#6B2FE0;
    --purple-dim:#4E1FAE;
    --green:#2F7D5C;
    --green-dim:#245F46;
    --line:#DEDBD2;
    --line-dark:#333333;
    --radius:6px;
    --brand-gradient: linear-gradient(90deg, var(--yellow) 0%, var(--purple) 100%);
  }

  /* logo lockup — actual uploaded mark, boxed for contrast on dark backgrounds */
  .logo-badge{
    background:#fff;
    border-radius:10px;
    padding:8px 14px;
    display:flex; align-items:center;
  }
  .logo-badge img{ display:block; height:44px; width:auto; }
  footer .logo-badge img{ height:38px; }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--paper);
    color:var(--ink);
    font-family:'Work Sans', sans-serif;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,h4, .display{
    font-family:'Barlow Condensed', sans-serif;
    text-transform:uppercase;
    letter-spacing:0.01em;
    font-weight:800;
    line-height:0.95;
  }
  .mono{ font-family:'JetBrains Mono', monospace; }
  .eyebrow{
    font-family:'Barlow Condensed', sans-serif;
    font-weight:700;
    letter-spacing:0.18em;
    text-transform:uppercase;
    font-size:12.5px;
  }
  a{ color:inherit; text-decoration:none; }
  img{ max-width:100%; display:block; }
  .wrap{ max-width:1180px; margin:0 auto; padding:0 28px; }
  button{ font-family:inherit; cursor:pointer; border:none; }

  /* dotted route rule used as section divider, echoes highway route lines */
  .route-rule{
    height:2px;
    background-image:repeating-linear-gradient(90deg, var(--line-dark) 0 10px, transparent 10px 20px);
    opacity:0.35;
  }
  .route-rule.light{
    background-image:repeating-linear-gradient(90deg, var(--ink) 0 10px, transparent 10px 20px);
    opacity:0.18;
  }

  /* ===== HEADER ===== */
  header{
    position:sticky; top:0; z-index:50;
    background:var(--navy);
    border-bottom:3px solid var(--yellow);
  }
  .nav-inner{
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 28px;
    max-width:1180px; margin:0 auto;
  }
  .logo{
    display:flex; align-items:center; gap:10px;
    color:var(--paper);
  }
  .logo .mark{
    width:34px; height:34px;
    background:var(--yellow);
    border-radius:4px;
    display:flex; align-items:center; justify-content:center;
    color:var(--navy);
    font-family:'Barlow Condensed', sans-serif;
    font-weight:800;
    font-size:20px;
    transform:rotate(-3deg);
  }
  .logo .word{ font-size:22px; letter-spacing:0.02em; }
  .nav-links{ display:flex; gap:30px; align-items:center; }
  .nav-links a{
    color:#C7CCDA; font-size:14.5px; font-weight:500;
    transition:color .15s;
  }
  .nav-links a:hover{ color:var(--paper); }
  .nav-cta{ display:flex; gap:10px; align-items:center; }
  .btn{
    padding:10px 20px;
    border-radius:var(--radius);
    font-size:14px; font-weight:600;
    display:inline-flex; align-items:center; gap:8px;
    transition:transform .12s ease, box-shadow .12s ease;
  }
  .btn:hover{ transform:translateY(-1px); }
  .btn-yellow{ background:var(--brand-gradient); color:#fff; }
  .btn-yellow:hover{ box-shadow:0 4px 0 var(--purple-dim); }
  .btn-ghost{ background:transparent; color:var(--paper); border:1px solid #3B4459; }
  .btn-outline-ink{ background:transparent; color:var(--ink); border:1.5px solid var(--ink); }
  .btn-outline-ink:hover{ background:var(--ink); color:var(--paper); }
  .btn-dark{ background:var(--ink); color:var(--paper); }
  .btn-dark:hover{ box-shadow:0 4px 0 #000; }
  .btn-block{ width:100%; justify-content:center; }

  /* ===== HERO ===== */
  .hero{
    background:var(--navy);
    color:var(--paper);
    position:relative;
    overflow:hidden;
    padding:64px 0 0;
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:40px;
    align-items:center;
  }
  .hero-eyebrow{ color:var(--yellow); margin-bottom:18px; }
  .hero h1{ font-size:clamp(40px,5.4vw,66px); color:var(--paper); }
  .hero h1 span{ color:var(--yellow); }
  .hero p.lead{
    font-family:'Work Sans', sans-serif;
    text-transform:none;
    font-weight:400;
    font-size:18px;
    color:#B9BFCE;
    max-width:480px;
    margin:20px 0 30px;
    line-height:1.5;
  }
  .hero-actions{ display:flex; gap:14px; margin-bottom:44px; flex-wrap:wrap; }

  /* route-post card */
  .post-card{
    background:var(--paper);
    color:var(--ink);
    border-radius:10px;
    padding:26px;
    box-shadow:0 24px 60px rgba(0,0,0,0.35);
    position:relative;
  }
  .post-card .tag{
    position:absolute; top:-13px; left:24px;
    background:var(--green);
    color:#fff;
    font-family:'Barlow Condensed', sans-serif;
    font-weight:700; letter-spacing:0.1em;
    font-size:12px; text-transform:uppercase;
    padding:5px 12px; border-radius:4px;
  }
  .route-inputs{
    display:flex; align-items:center; gap:0;
    border:1.5px solid var(--line);
    border-radius:8px;
    overflow:hidden;
    margin-top:14px;
  }
  .route-inputs .field{ flex:1; padding:14px 16px; }
  .route-inputs .field .lbl{ font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:#8A8F82; font-weight:600; }
  .route-inputs .field .val{ font-family:'Barlow Condensed'; font-weight:700; font-size:19px; margin-top:2px; }
  .route-inputs .swap{
    width:38px; height:38px; border-radius:50%;
    background:var(--paper-dim); color:var(--ink);
    display:flex; align-items:center; justify-content:center;
    font-size:16px; flex:0 0 auto; margin:0 6px;
  }
  .route-meta{ display:flex; gap:10px; margin-top:12px; }
  .route-meta .chip{
    flex:1; border:1px solid var(--line); border-radius:6px;
    padding:10px 12px; font-size:13px;
  }
  .route-meta .chip .lbl{ font-size:10.5px; text-transform:uppercase; letter-spacing:.06em; color:#8A8F82; font-weight:600; }
  .route-meta .chip .val{ font-weight:600; margin-top:2px; }

  /* live bid ticker inside post card */
  .bid-ticker{
    margin-top:18px;
    border-top:1px dashed var(--line);
    padding-top:14px;
  }
  .bid-ticker .head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; }
  .bid-ticker .head .eyebrow{ color:#8A8F82; }
  .live-dot{
    width:7px; height:7px; border-radius:50%; background:var(--green);
    display:inline-block; margin-right:6px;
    box-shadow:0 0 0 0 rgba(47,125,92,.6);
    animation:pulse 1.8s infinite;
  }
  @keyframes pulse{
    0%{ box-shadow:0 0 0 0 rgba(47,125,92,.55); }
    70%{ box-shadow:0 0 0 7px rgba(47,125,92,0); }
    100%{ box-shadow:0 0 0 0 rgba(47,125,92,0); }
  }
  .bid-row{
    display:flex; justify-content:space-between; align-items:center;
    padding:9px 0; font-size:14px;
    border-bottom:1px solid #ECEEE7;
  }
  .bid-row:last-child{ border-bottom:none; }
  .bid-row .driver{ display:flex; align-items:center; gap:9px; }
  .bid-row .avatar{
    width:26px; height:26px; border-radius:50%;
    background:var(--navy-2); color:var(--yellow);
    font-family:'Barlow Condensed'; font-weight:700; font-size:12px;
    display:flex; align-items:center; justify-content:center;
  }
  .bid-row .price{ font-family:'JetBrains Mono'; font-weight:700; color:var(--green-dim); }

  /* ===== HERO ROAD — animated traffic strip ===== */
  .hero-road{
    position:relative;
    height:104px;
    margin-top:52px;
    border-top:1px solid var(--line-dark);
    overflow:hidden;
  }
  .hero-road .road-surface{
    position:absolute; left:0; right:0; bottom:0; height:52px;
    background:var(--navy-2);
  }

  /* highway signboard — cycles through Indian cities on the route network */
  .road-sign{
    position:absolute; top:8px; left:24px;
    background:#1E7A42;
    border:2px solid var(--paper);
    border-radius:3px;
    padding:6px 14px;
    height:22px;
    display:flex; align-items:center;
  }
  .road-sign .arrow{ color:var(--paper); font-size:12px; margin-right:6px; }
  .road-sign .city-cycle{ position:relative; height:14px; min-width:88px; }
  .road-sign .city-cycle span{
    position:absolute; left:0; top:0;
    font-family:'Barlow Condensed'; font-weight:700; font-size:13px;
    letter-spacing:.02em; color:var(--paper); white-space:nowrap;
    opacity:0;
    animation:city-cycle 20s linear infinite;
  }
  .road-sign .city-cycle span:nth-child(1){ animation-delay:0s; }
  .road-sign .city-cycle span:nth-child(2){ animation-delay:-2s; }
  .road-sign .city-cycle span:nth-child(3){ animation-delay:-4s; }
  .road-sign .city-cycle span:nth-child(4){ animation-delay:-6s; }
  .road-sign .city-cycle span:nth-child(5){ animation-delay:-8s; }
  .road-sign .city-cycle span:nth-child(6){ animation-delay:-10s; }
  .road-sign .city-cycle span:nth-child(7){ animation-delay:-12s; }
  .road-sign .city-cycle span:nth-child(8){ animation-delay:-14s; }
  .road-sign .city-cycle span:nth-child(9){ animation-delay:-16s; }
  .road-sign .city-cycle span:nth-child(10){ animation-delay:-18s; }
  @keyframes city-cycle{
    0%, 1.2%{ opacity:0; }
    3.2%, 6.8%{ opacity:1; }
    8.8%, 100%{ opacity:0; }
  }
  .road-sign-post{
    position:absolute; top:30px; left:30px;
    width:2px; height:22px;
    background:var(--line-dark);
  }
  .hero-road .lane-dashes{
    position:absolute; left:0; right:0; bottom:25px; height:2px;
    background-image:repeating-linear-gradient(90deg, var(--yellow) 0 22px, transparent 22px 44px);
    opacity:.55;
    animation:lane-scroll 1.4s linear infinite;
  }
  @keyframes lane-scroll{ from{ background-position-x:0; } to{ background-position-x:-44px; } }

  .car{
    position:absolute; bottom:16px; left:-10%;
    width:64px; height:28px;
    will-change:left;
  }
  .car svg{ width:100%; height:100%; display:block; }
  .car.c1{ animation:drive-right 8.5s linear infinite; animation-delay:-1.2s; }
  .car.c2{ animation:drive-right 10.5s linear infinite; animation-delay:-5.5s; bottom:14px; }
  .car.c3{ animation:drive-right 7.5s linear infinite; animation-delay:-3.8s; bottom:18px; }
  @keyframes drive-right{
    0%{ left:-10%; }
    100%{ left:106%; }
  }

  .car.pickup-car{
    bottom:16px;
    animation:drive-pickup 12s linear infinite;
  }
  @keyframes drive-pickup{
    0%{ left:-10%; }
    30%{ left:34%; }
    48%{ left:34%; }
    100%{ left:106%; }
  }

  .pickup-point{
    position:absolute; bottom:16px; left:34%;
    display:flex; flex-direction:column; align-items:center;
    transform:translateX(-4px);
  }
  .pickup-point .pin{ margin-bottom:2px; }
  .passenger{
    position:absolute; bottom:16px; left:34%;
    transform:translateX(10px);
    animation:passenger-wait 12s linear infinite;
  }
  @keyframes passenger-wait{
    0%,27%{ opacity:1; transform:translateX(10px) translateY(0); }
    34%{ opacity:1; transform:translateX(10px) translateY(0); }
    39%{ opacity:0; transform:translateX(2px) translateY(3px); }
    96%{ opacity:0; }
    100%{ opacity:1; transform:translateX(10px) translateY(0); }
  }

  @media (max-width:980px){
    .hero-road{ height:88px; }
    .pickup-point, .passenger{ left:30%; }
    .car.pickup-car{ animation-name:drive-pickup-mobile; }
    @keyframes drive-pickup-mobile{
      0%{ left:-10%; }
      30%{ left:30%; }
      48%{ left:30%; }
      100%{ left:106%; }
    }
  }

  /* ===== ACTION CARDS ===== */
  .actions{ padding:80px 0 40px; }
  .section-head{ margin-bottom:36px; max-width:640px; }
  .section-head .eyebrow{ color:var(--green-dim); margin-bottom:10px; }
  .section-head h2{ font-size:clamp(30px,3.6vw,42px); }
  .action-grid{
    display:grid; grid-template-columns:repeat(4,1fr); gap:18px;
  }
  .action-card{
    background:#fff;
    border:1.5px solid var(--line);
    border-radius:10px;
    padding:26px 22px;
    position:relative;
    transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  }
  .action-card:hover{
    transform:translateY(-4px);
    border-color:var(--ink);
    box-shadow:0 10px 0 var(--yellow);
  }
  .action-card .num{
    font-family:'JetBrains Mono'; font-size:12px; color:#9AA093;
    position:absolute; top:20px; right:22px;
  }
  .action-card .glyph{
    width:44px; height:44px; border-radius:8px;
    background:var(--paper-dim);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:20px;
  }
  .action-card h3{ font-size:22px; margin-bottom:8px; }
  .action-card p{ font-size:14px; color:#5B6058; line-height:1.5; margin-bottom:18px; }
  .action-card .go{ font-size:13.5px; font-weight:700; display:inline-flex; align-items:center; gap:6px; }
  .action-card .go .arrow{ transition:transform .15s; }
  .action-card:hover .go .arrow{ transform:translateX(4px); }

  /* ===== HOW IT WORKS — signpost steps ===== */
  .how{ background:var(--paper-dim); padding:84px 0; margin-top:56px; }
  .how-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:0; position:relative;
  }
  .how-grid::before{
    content:"";
    position:absolute; top:34px; left:8%; right:8%; height:2px;
    background-image:repeating-linear-gradient(90deg, var(--ink) 0 10px, transparent 10px 20px);
    opacity:.3;
  }
  .how-step{ padding:0 22px; text-align:left; position:relative; }
  .signpost{
    width:68px; height:68px;
    background:var(--navy);
    transform:rotate(45deg);
    border-radius:10px;
    display:flex; align-items:center; justify-content:center;
    margin-bottom:26px;
    box-shadow:0 6px 0 var(--line-dark);
  }
  .signpost .in{ transform:rotate(-45deg); color:var(--yellow); font-size:24px; }
  .how-step h3{ font-size:23px; margin-bottom:8px; }
  .how-step p{ font-size:14.5px; color:#5B6058; line-height:1.55; max-width:280px; }

  /* ===== DEPARTURE BOARD — live ride requests ===== */
  .board-section{ padding:88px 0; }
  .board{
    background:var(--navy);
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 30px 70px rgba(20,23,20,0.18);
  }
  .board-head{
    display:flex; justify-content:space-between; align-items:center;
    padding:22px 28px;
    border-bottom:1px solid var(--line-dark);
  }
  .board-head .title{ display:flex; align-items:center; gap:10px; color:var(--paper); }
  .board-head .title h3{ font-size:22px; color:var(--paper); }
  .board-head .status{
    display:flex; align-items:center; gap:8px;
    font-family:'JetBrains Mono'; font-size:11.5px; color:#8FD6B4;
    letter-spacing:.05em;
  }
  .board-cols{
    display:grid;
    grid-template-columns:1.6fr 1.4fr 1fr 0.9fr 1fr 0.7fr;
    padding:12px 28px;
    font-family:'Barlow Condensed'; font-weight:700; letter-spacing:.08em;
    font-size:12px; text-transform:uppercase; color:#7C86A0;
    border-bottom:1px solid var(--line-dark);
  }
  .board-row{
    display:grid;
    grid-template-columns:1.6fr 1.4fr 1fr 0.9fr 1fr 0.7fr;
    padding:16px 28px;
    align-items:center;
    border-bottom:1px solid #2A3244;
    color:var(--paper);
    font-size:14px;
    transition:background .15s;
  }
  .board-row:hover{ background:#212A3D; }
  .board-row:last-child{ border-bottom:none; }
  .board-row .route{ font-family:'JetBrains Mono'; font-weight:700; letter-spacing:.02em; }
  .board-row .route .city{ color:var(--paper); }
  .board-row .route .arrow{ color:var(--yellow); margin:0 6px; }
  .board-row .sub{ font-size:12px; color:#7C86A0; margin-top:2px; }
  .board-row .bids-pill{
    display:inline-block; padding:4px 10px; border-radius:20px;
    font-family:'JetBrains Mono'; font-size:11.5px; font-weight:700;
  }
  .bids-pill.zero{ background:#2A3244; color:#9AA5C0; }
  .bids-pill.some{ background:rgba(47,125,92,.22); color:#7CE0AE; }
  .board-row .view-link{ font-size:12.5px; font-weight:700; color:var(--yellow); }
  .board-foot{
    padding:18px 28px; display:flex; justify-content:center;
    border-top:1px solid var(--line-dark);
  }

  /* ===== TOUR PACKAGES ===== */
  .tours{ padding:20px 0 90px; }
  .tour-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
  .tour-card{
    border:1.5px solid var(--line);
    border-radius:10px;
    overflow:hidden;
    background:#fff;
    display:flex; flex-direction:column;
  }
  .tour-price-bar{
    background:var(--ink); color:var(--paper);
    padding:16px 20px;
    display:flex; justify-content:space-between; align-items:baseline;
  }
  .tour-price-bar .days{ font-family:'Barlow Condensed'; font-weight:700; font-size:13px; letter-spacing:.06em; text-transform:uppercase; color:#B9BFCE; }
  .tour-price-bar .price{ font-family:'JetBrains Mono'; font-weight:700; color:var(--yellow); font-size:19px; }
  .tour-body{ padding:20px; flex:1; display:flex; flex-direction:column; }
  .tour-body h4{ font-family:'Barlow Condensed'; font-weight:700; text-transform:none; letter-spacing:0; font-size:19px; margin-bottom:10px; line-height:1.2; }
  .tour-body .route-line{ display:flex; align-items:center; gap:6px; font-family:'JetBrains Mono'; font-size:13px; color:#5B6058; margin-bottom:14px; }
  .tour-body .route-line .arrow{ color:var(--green-dim); }
  .tour-tags{ display:flex; gap:8px; margin-bottom:18px; flex-wrap:wrap; }
  .tour-tags span{
    font-size:11.5px; padding:4px 9px; border-radius:5px;
    background:var(--paper-dim); color:#5B6058; font-weight:600;
  }
  .tour-body .view{ margin-top:auto; font-size:13.5px; font-weight:700; }

  /* ===== CITY ROUTE CHIPS ===== */
  .cities{ background:var(--paper-dim); padding:84px 0; }
  .city-strip{
    display:flex; flex-wrap:wrap; gap:12px; margin-top:30px;
  }
  .city-chip{
    display:flex; align-items:center; gap:10px;
    background:#fff; border:1.5px solid var(--line); border-radius:40px;
    padding:8px 18px 8px 8px;
    font-size:14.5px; font-weight:600;
    transition:border-color .15s, transform .15s;
  }
  .city-chip:hover{ border-color:var(--ink); transform:translateY(-2px); }
  .city-chip .dot{
    width:30px; height:30px; border-radius:50%;
    background:var(--navy); color:var(--yellow);
    font-family:'Barlow Condensed'; font-weight:700; font-size:13px;
    display:flex; align-items:center; justify-content:center;
  }

  /* ===== ROLE SPLIT ===== */
  .role-split{ padding:90px 0; }
  .role-grid{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }
  .role-card{
    border-radius:12px; padding:40px;
    display:flex; flex-direction:column; min-height:280px;
  }
  .role-card.user{ background:var(--paper-dim); color:var(--ink); }
  .role-card.driver{ background:var(--navy); color:var(--paper); }
  .role-card .eyebrow{ margin-bottom:16px; }
  .role-card.user .eyebrow{ color:var(--green-dim); }
  .role-card.driver .eyebrow{ color:var(--yellow); }
  .role-card h3{ font-size:32px; margin-bottom:14px; }
  .role-card p{ font-size:15px; line-height:1.55; margin-bottom:auto; max-width:380px; }
  .role-card.user p{ color:#4B5044; }
  .role-card.driver p{ color:#B9BFCE; }
  .role-card .btn{ margin-top:26px; align-self:flex-start; }

  /* ===== APPS ===== */
  .apps{ background:var(--ink); color:var(--paper); padding:80px 0; }
  .apps-grid{ display:grid; grid-template-columns:1fr 1fr; gap:22px; margin-top:34px; }
  .app-card{
    border:1px solid #3A3F35; border-radius:12px; padding:32px;
  }
  .app-card h4{ font-family:'Barlow Condensed'; text-transform:none; font-weight:700; font-size:22px; margin-bottom:8px; letter-spacing:0; }
  .app-card p{ font-size:14px; color:#B7BBAD; margin-bottom:22px; }
  .store-badge{
    display:inline-flex; align-items:center; gap:10px;
    background:#fff; color:var(--ink);
    padding:10px 16px; border-radius:8px; font-size:13.5px; font-weight:700;
  }

  /* ===== WHY CHOOSE ===== */
  .why{ padding:88px 0; }
  .why-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:34px; }
  .why-card{ border-top:3px solid var(--yellow); padding-top:18px; }
  .why-card h4{ font-family:'Barlow Condensed'; text-transform:none; letter-spacing:0; font-weight:700; font-size:19px; margin-bottom:8px; }
  .why-card p{ font-size:13.5px; color:#5B6058; line-height:1.5; }

  /* ===== FOOTER ===== */
  footer{ background:var(--navy); color:#8892A8; padding:56px 0 30px; }
  .footer-top{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:30px; margin-bottom:40px; }
  .footer-links{ display:flex; gap:34px; flex-wrap:wrap; }
  .footer-links a{ font-size:14px; color:#B9BFCE; }
  .footer-links a:hover{ color:var(--yellow); }
  .footer-bottom{
    display:flex; justify-content:space-between; align-items:center;
    padding-top:24px; border-top:1px solid #2A3244; font-size:12.5px;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width:980px){
    .hero-grid{ grid-template-columns:1fr; }
    .hero-map{ height:320px; order:-1; }
    .action-grid{ grid-template-columns:repeat(2,1fr); }
    .how-grid{ grid-template-columns:1fr; gap:36px; }
    .how-grid::before{ display:none; }
    .tour-grid{ grid-template-columns:repeat(2,1fr); }
    .role-grid{ grid-template-columns:1fr; }
    .apps-grid{ grid-template-columns:1fr; }
    .why-grid{ grid-template-columns:repeat(2,1fr); }
    .board-cols{ display:none; }
    .board-row{ grid-template-columns:1.6fr 1fr 1fr; }
    .board-row .seats, .board-row .car, .board-row .action{ display:none; }
  }
  @media (max-width:640px){
    .nav-links{ display:none; }
    .action-grid{ grid-template-columns:1fr; }
    .tour-grid{ grid-template-columns:1fr; }
    .why-grid{ grid-template-columns:1fr; }
    .hero h1{ font-size:38px; }
    .footer-bottom{ flex-direction:column; gap:10px; align-items:flex-start; }
  }
  @media (prefers-reduced-motion: reduce){
    .live-dot{ animation:none; }
    *{ transition:none !important; }
    .car, .lane-dashes, .passenger{ animation:none !important; }
    .car.c1{ left:8%; } .car.c2{ left:38%; } .car.c3{ left:68%; }
    .car.pickup-car{ left:34%; transform:none; }
    .passenger{ opacity:1; transform:translateX(10px); }
    .road-sign .city-cycle span{ animation:none !important; opacity:0; }
    .road-sign .city-cycle span:first-child{ opacity:1; }
  }

/* ===================================================== */
/* INNER PAGES — shared components                        */
/* ===================================================== */

/* page header band, used on all list/detail pages */
.page-head{
  background:var(--navy);
  color:var(--paper);
  padding:44px 0 40px;
  border-bottom:3px solid var(--yellow);
}
.page-head .crumb{
  font-family:'JetBrains Mono'; font-size:12px; color:#7C86A0;
  margin-bottom:14px;
}
.page-head .crumb a{ color:#7C86A0; }
.page-head .crumb a:hover{ color:var(--yellow); }
.page-head h1{ font-size:clamp(30px,4vw,46px); color:var(--paper); }
.page-head p.sub{
  font-family:'Work Sans'; text-transform:none; font-weight:400;
  color:#B9BFCE; font-size:15.5px; margin-top:10px; max-width:520px;
}
.page-head-row{ display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:20px; }

/* filter bar */
.filter-bar{
  background:#fff; border:1.5px solid var(--line); border-radius:10px;
  padding:18px 22px; margin:-28px 0 40px;
  display:flex; gap:14px; flex-wrap:wrap; align-items:center;
  position:relative; z-index:2;
  box-shadow:0 14px 30px rgba(20,23,20,0.08);
}
.filter-bar .f{ display:flex; flex-direction:column; gap:4px; }
.filter-bar .f .lbl{ font-size:10.5px; text-transform:uppercase; letter-spacing:.07em; color:#8A8F82; font-weight:700; }
.filter-bar select, .filter-bar input{
  font-family:'Work Sans'; font-size:13.5px; font-weight:600; color:var(--ink);
  border:1px solid var(--line); border-radius:6px; padding:8px 10px; background:var(--paper);
}
.filter-bar .btn{ margin-left:auto; padding:11px 22px; }

.list-page-body{ padding:0 0 90px; }
.result-count{ font-family:'JetBrains Mono'; font-size:12.5px; color:#7C86A0; margin-bottom:16px; }

/* driver / package grid cards reused across list pages */
.card-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.driver-card{
  background:#fff; border:1.5px solid var(--line); border-radius:10px; padding:22px;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.driver-card:hover{ transform:translateY(-4px); border-color:var(--ink); box-shadow:0 10px 0 var(--yellow); }
.driver-card .top{ display:flex; gap:14px; align-items:center; margin-bottom:16px; }
.driver-card .photo{
  width:56px; height:56px; border-radius:50%;
  background:var(--navy); color:var(--yellow);
  display:flex; align-items:center; justify-content:center;
  font-family:'Barlow Condensed'; font-weight:800; font-size:20px; flex:0 0 auto;
}
.driver-card h3{ font-family:'Barlow Condensed'; text-transform:none; letter-spacing:0; font-weight:700; font-size:19px; }
.driver-card .meta{ font-size:12.5px; color:#7C86A0; margin-top:2px; font-family:'JetBrains Mono'; }
.driver-card .badges{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:16px; }
.driver-card .badges span{
  font-size:11px; padding:4px 9px; border-radius:5px; font-weight:700;
  background:rgba(47,125,92,.12); color:var(--green-dim);
}
.driver-card .badges span.car{ background:var(--paper-dim); color:#5B6058; }
.driver-card .stat-row{ display:flex; justify-content:space-between; border-top:1px dashed var(--line); padding-top:14px; margin-bottom:16px; }
.driver-card .stat{ text-align:left; }
.driver-card .stat .n{ font-family:'JetBrains Mono'; font-weight:700; font-size:16px; }
.driver-card .stat .l{ font-size:10.5px; color:#8A8F82; text-transform:uppercase; letter-spacing:.06em; }

/* pagination */
.pagination{ display:flex; justify-content:center; gap:8px; margin-top:40px; }
.pagination a{
  width:38px; height:38px; border-radius:6px; border:1.5px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  font-family:'JetBrains Mono'; font-size:13px; font-weight:700;
}
.pagination a.active{ background:var(--navy); color:var(--yellow); border-color:var(--navy); }

/* ===== detail pages ===== */
.detail-layout{ display:grid; grid-template-columns:1.5fr 1fr; gap:30px; padding:50px 0 90px; align-items:flex-start; }
.detail-main{ display:flex; flex-direction:column; gap:28px; }
.detail-card{ background:#fff; border:1.5px solid var(--line); border-radius:10px; padding:28px; }
.detail-card h2{ font-size:24px; margin-bottom:16px; }

.route-visual{
  display:flex; align-items:center; gap:14px; margin-bottom:22px;
}
.route-visual .stop{ text-align:center; }
.route-visual .stop .city{ font-family:'Barlow Condensed'; font-weight:700; font-size:20px; }
.route-visual .stop .tag{ font-size:11px; color:#8A8F82; text-transform:uppercase; letter-spacing:.06em; }
.route-visual .line{ flex:1; height:2px; background-image:repeating-linear-gradient(90deg, var(--ink) 0 8px, transparent 8px 16px); opacity:.35; position:relative; }
.route-visual .line::after{ content:"›"; position:absolute; right:-4px; top:-11px; font-size:20px; color:var(--green-dim); }

.spec-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-bottom:6px; }
.spec-grid .spec{ border:1px solid var(--line); border-radius:8px; padding:14px; }
.spec-grid .spec .lbl{ font-size:10.5px; text-transform:uppercase; letter-spacing:.06em; color:#8A8F82; font-weight:700; }
.spec-grid .spec .val{ font-family:'Barlow Condensed'; font-weight:700; font-size:19px; margin-top:3px; }

.bid-list .bid-item{
  display:flex; justify-content:space-between; align-items:center;
  padding:16px 0; border-bottom:1px solid var(--paper-dim);
}
.bid-list .bid-item:last-child{ border-bottom:none; }
.bid-list .driver{ display:flex; align-items:center; gap:12px; }
.bid-list .avatar{
  width:40px; height:40px; border-radius:50%; background:var(--navy); color:var(--yellow);
  font-family:'Barlow Condensed'; font-weight:800; font-size:15px;
  display:flex; align-items:center; justify-content:center;
}
.bid-list .name{ font-weight:700; font-size:14.5px; }
.bid-list .sub{ font-size:12px; color:#7C86A0; font-family:'JetBrains Mono'; margin-top:2px; }
.bid-list .price{ font-family:'JetBrains Mono'; font-weight:700; color:var(--green-dim); font-size:17px; }
.bid-list .accept{ font-size:12px; font-weight:700; color:var(--ink); margin-top:4px; display:block; }

.sidebar-card{ background:var(--paper-dim); border-radius:10px; padding:24px; margin-bottom:20px; }
.sidebar-card h4{ font-family:'Barlow Condensed'; text-transform:none; letter-spacing:0; font-weight:700; font-size:17px; margin-bottom:14px; }
.sidebar-row{ display:flex; justify-content:space-between; font-size:13.5px; padding:8px 0; border-bottom:1px dashed var(--line); }
.sidebar-row:last-child{ border-bottom:none; }
.sidebar-row .l{ color:#5B6058; }
.sidebar-row .v{ font-weight:600; }

.profile-hero{ background:var(--navy); color:var(--paper); border-radius:10px; padding:30px; margin-bottom:20px; }
.profile-hero .photo{
  width:72px; height:72px; border-radius:50%; background:var(--yellow); color:var(--navy);
  display:flex; align-items:center; justify-content:center; font-family:'Barlow Condensed'; font-weight:800; font-size:26px;
  margin-bottom:16px;
}
.profile-hero h2{ color:var(--paper); font-size:26px; margin-bottom:6px; }
.profile-hero .loc{ font-family:'JetBrains Mono'; font-size:12.5px; color:#8FD6B4; }
.profile-stats{ display:flex; gap:20px; margin-top:22px; padding-top:20px; border-top:1px solid var(--line-dark); }
.profile-stats .stat .n{ font-family:'JetBrains Mono'; font-weight:700; font-size:20px; color:var(--yellow); }
.profile-stats .stat .l{ font-size:10.5px; text-transform:uppercase; letter-spacing:.06em; color:#7C86A0; }

.tag-list{ display:flex; flex-wrap:wrap; gap:8px; }
.tag-list span{ font-size:12px; padding:6px 12px; border-radius:6px; background:var(--paper-dim); color:#5B6058; font-weight:600; }

@media (max-width:900px){
  .detail-layout{ grid-template-columns:1fr; }
  .card-grid{ grid-template-columns:repeat(2,1fr); }
  .spec-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:640px){
  .card-grid{ grid-template-columns:1fr; }
  .filter-bar{ flex-direction:column; align-items:stretch; }
  .filter-bar .btn{ margin-left:0; }
  .spec-grid{ grid-template-columns:1fr; }
}

/* ===== APP NUDGE POPUP ===== */
.app-nudge-overlay{
  position:fixed; inset:0; z-index:200;
  background:rgba(10,10,12,0.78);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  display:flex; align-items:center; justify-content:center;
  padding:20px;
  opacity:0; pointer-events:none;
  transition:opacity .25s ease;
}
.app-nudge-overlay.show{ opacity:1; pointer-events:auto; }
.app-nudge{
  background:var(--paper);
  color:var(--ink);
  width:100%; max-width:420px;
  border-radius:12px;
  border:1.5px solid var(--yellow);
  border-top:5px solid var(--yellow);
  padding:30px 28px 26px;
  position:relative;
  transform:translateY(14px);
  transition:transform .25s ease;
  box-shadow:
    0 0 0 1px rgba(240,185,63,0.35),
    0 24px 60px rgba(0,0,0,0.45),
    0 0 48px rgba(240,185,63,0.28);
}
.app-nudge-overlay.show .app-nudge{ transform:translateY(0); }
.app-nudge .close{
  position:absolute; top:14px; right:14px;
  width:30px; height:30px; border-radius:50%;
  background:var(--paper-dim); color:var(--ink);
  display:flex; align-items:center; justify-content:center;
  font-size:15px; border:none; cursor:pointer;
}
.app-nudge .close:hover{ background:var(--yellow); color:var(--navy); }
.app-nudge .glyph{
  width:48px; height:48px; border-radius:10px;
  background:var(--yellow); color:var(--navy);
  display:flex; align-items:center; justify-content:center;
  font-size:22px; margin-bottom:18px;
}
.app-nudge .eyebrow{ color:var(--yellow-dim); margin-bottom:8px; }
.app-nudge h3{ font-size:25px; color:var(--ink); margin-bottom:12px; }
.app-nudge p{
  font-family:'Work Sans'; text-transform:none; font-weight:400;
  font-size:14.5px; line-height:1.6; color:#5C5F56; margin-bottom:24px;
}
.app-nudge p b{ color:var(--ink); font-weight:600; }
.app-nudge .actions{ display:flex; flex-direction:column; gap:10px; }
.app-nudge .store-row{ display:flex; gap:10px; }
.app-nudge .store-row .store-badge{
  flex:1; justify-content:center; padding:11px 12px; font-size:13px;
  background:var(--ink); color:var(--paper);
}
.app-nudge .store-row .store-badge:hover{ background:var(--navy-2); }
.app-nudge .stay{
  text-align:center; font-size:13px; font-weight:600; color:#6B6F64;
  padding:8px; cursor:pointer;
}
.app-nudge .stay:hover{ color:var(--ink); }
@media (max-width:480px){
  .app-nudge .store-row{ flex-direction:column; }
}

  /* ===== FOOTER ROAD — scenic journey strip ===== */
  .footer-road{
    position:relative;
    height:130px;
    overflow:hidden;
    background:var(--navy-2);
    border-bottom:1px solid var(--line-dark);
  }
  .footer-road .fr-surface{
    position:absolute; left:0; right:0; bottom:0; height:38px;
    background:#141414;
    z-index:3;
  }
  .footer-road .fr-lanes{
    position:absolute; left:0; right:0; bottom:18px; height:2px;
    background-image:repeating-linear-gradient(90deg, var(--yellow) 0 22px, transparent 22px 44px);
    opacity:.5;
    animation:lane-scroll 1.4s linear infinite;
    z-index:3;
  }
  .footer-scene{ position:absolute; inset:0; opacity:0; animation:scene-fade 18s linear infinite; }
  .footer-scene svg{ width:100%; height:100%; display:block; }
  .footer-scene.hill{ animation-delay:0s; }
  .footer-scene.beach{ animation-delay:-6s; }
  .footer-scene.bridge{ animation-delay:-12s; }
  @keyframes scene-fade{
    0%,2%{ opacity:0; }
    5%,28%{ opacity:1; }
    31%,100%{ opacity:0; }
  }
  .footer-road .fr-car{
    position:absolute; bottom:10px; left:-10%;
    width:56px; height:24px;
    animation:fr-drive 6s linear infinite;
    z-index:4;
  }
  .footer-road .fr-car svg{ width:100%; height:100%; display:block; }
  @keyframes fr-drive{
    0%{ left:-10%; }
    100%{ left:106%; }
  }
  @media (max-width:640px){
    .footer-road{ height:100px; }
  }
  @media (prefers-reduced-motion: reduce){
    .footer-scene{ animation:none !important; }
    .footer-scene.hill{ opacity:1; }
    .footer-scene.beach, .footer-scene.bridge{ opacity:0; }
    .footer-road .fr-car{ animation:none !important; left:40%; }
    .footer-road .fr-lanes{ animation:none !important; }
  }

  /* ===== TOUR PACKAGES BY CITY ===== */
  .tpc-section{ padding:80px 0; background:var(--paper-dim); }
  .tpc-head{ text-align:center; max-width:640px; margin:0 auto 30px; }
  .tpc-head .eyebrow{ color:var(--purple); margin-bottom:10px; }
  .tpc-head h2{ font-size:clamp(28px,3.4vw,38px); }
  .tpc-head p{ font-size:14.5px; color:#5B6058; margin-top:10px; line-height:1.55; }

  .tpc-toggle{
    display:flex; justify-content:center; gap:10px; margin-bottom:12px;
  }
  .tpc-toggle button{
    display:flex; align-items:center; gap:8px;
    padding:12px 24px; border-radius:8px; border:1.5px solid var(--line);
    background:#fff; font-family:'Barlow Condensed'; font-weight:700; font-size:15px; color:var(--ink);
    transition:transform .12s ease;
  }
  .tpc-toggle button:hover{ transform:translateY(-1px); }
  .tpc-toggle button.active{
    background:var(--brand-gradient); color:#fff; border-color:transparent;
  }
  .tpc-toggle button svg{ opacity:.85; }

  .tpc-sub{ text-align:center; font-size:13px; color:#8A8F82; margin-bottom:30px; }

  .tpc-grid{
    display:grid; grid-template-columns:repeat(4,1fr); gap:14px;
  }
  .tpc-grid.hidden{ display:none; }
  .tpc-chip{
    display:flex; align-items:center; justify-content:center; gap:9px; text-align:center;
    background:#fff; border:1.5px solid var(--line); border-radius:10px;
    padding:16px 14px; font-size:14.5px; font-weight:600; color:var(--ink);
    transition:border-color .15s, transform .15s, box-shadow .15s;
  }
  .tpc-chip:hover{ border-color:var(--ink); transform:translateY(-2px); box-shadow:0 8px 0 var(--yellow); }
  .tpc-chip svg{ flex:0 0 auto; opacity:.8; }

  @media (max-width:980px){
    .tpc-grid{ grid-template-columns:repeat(2,1fr); }
  }
  @media (max-width:640px){
    .tpc-grid{ grid-template-columns:1fr; }
    .tpc-toggle{ flex-direction:column; align-items:stretch; }
    .tpc-toggle button{ justify-content:center; }
  }

/* ===== SELECT LOCATION (homepage GPS + city picker) ===== */
.select-location-wrap{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
  margin:0 0 22px;
}
.select-location{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#fff;
  color:var(--ink);
  border:1.5px solid var(--yellow);
  border-radius:8px;
  padding:10px 16px;
  font-family:'Work Sans', sans-serif;
  font-size:15px;
  font-weight:500;
  line-height:1.2;
  cursor:pointer;
  box-shadow:0 1px 0 rgba(240,185,63,0.35);
  transition:transform .12s ease, box-shadow .12s ease;
}
.select-location:hover{
  transform:translateY(-1px);
  box-shadow:0 4px 0 var(--yellow-dim);
}
.select-location-icon{
  width:20px;
  height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.select-location-icon svg{ display:block; }
.select-location-status{
  font-size:12.5px;
  color:#B9BFCE;
  min-height:16px;
}
.hero .select-location-status{ color:#B9BFCE; }
.cities .select-location-wrap{ margin:0 0 18px; }
.cities .select-location-status{ color:#5B6058; }

/* ===== TERMS_CONDITIONS ===== */
.legal-body{
  max-width:820px;
  margin:0 auto;
  padding:50px 20px 100px;
}
.legal-body h2{
  font-family:'Barlow Condensed', sans-serif;
  text-transform:none;
  letter-spacing:0;
  font-weight:700;
  font-size:20px;
  line-height:1.2;
  color:var(--ink);
  margin:32px 0 10px;
}
.legal-body h2:first-of-type{ margin-top:0; }
.legal-body p,
.legal-body li{
  font-family:'Work Sans', sans-serif;
  font-size:14.5px;
  line-height:1.7;
  color:#3B3F36;
  margin-bottom:12px;
}
.legal-body ul{
  padding-left:20px;
  margin-bottom:12px;
}
.legal-updated{
  font-family:'JetBrains Mono', monospace;
  font-size:12px;
  color:#8A8F82;
  margin-bottom:30px;
}
