/* =========================================================
   TAXI BOOKING ONE WAY — "Departure Board" aesthetic
   Navy blue + yellow, condensed display type,
   monospace route board, diagonal section breaks.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Work+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root{
  --ink:        #0b2545;   /* deep navy — primary dark */
  --charcoal:   #123a6b;   /* navy — panels */
  --charcoal-2: #184d8c;   /* lighter navy — cards on dark */
  --cream:      #f5f8fc;   /* light blue-white background */
  --cream-2:    #e9f1fb;   /* light blue-grey background */
  --yellow:     #ffc629;   /* primary accent — CTAs, badges */
  --yellow-dim: #e0ac16;
  --amber:      #2f8fe0;   /* secondary accent — bright blue */
  --line:       #2c5490;
  --muted:      #7d93b8;
  --radius:     2px;
  --shadow-hard: 8px 8px 0 rgba(11,37,69,0.9);
  --shadow-soft: 0 18px 40px rgba(11,37,69,0.18);
}

*{box-sizing:border-box;}
html{-webkit-tap-highlight-color:transparent; overflow-x:hidden; scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:'Work Sans', -apple-system, sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
.container{width:100%; max-width:1200px; margin:0 auto; padding:0 24px;}

h1,h2,h3,h4,.display{
  font-family:'Bebas Neue', 'Work Sans', sans-serif;
  letter-spacing:0.02em;
  line-height:1.02;
  text-transform:uppercase;
  margin:0 0 .4em;
}
h1{font-size:clamp(2.6rem,6vw,5.2rem);}
h2{font-size:clamp(2rem,4.2vw,3.2rem);}
h3{font-size:1.5rem;}
.mono{font-family:'IBM Plex Mono', monospace; letter-spacing:0.03em;}
.eyebrow{
  font-family:'IBM Plex Mono', monospace;
  font-size:.78rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--amber); font-weight:600; margin-bottom:14px; display:inline-flex; align-items:center; gap:10px;
}
.eyebrow::before{content:""; width:26px; height:2px; background:var(--amber); display:inline-block;}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:'IBM Plex Mono', monospace; font-weight:600; font-size:.9rem;
  letter-spacing:.04em; text-transform:uppercase;
  padding:15px 28px; border-radius:var(--radius); border:2px solid var(--ink);
  cursor:pointer; transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
}
.btn-primary{background:var(--yellow); color:var(--ink); box-shadow:var(--shadow-hard);}
.btn-primary:hover{transform:translate(-3px,-3px); box-shadow:11px 11px 0 rgba(11,37,69,0.9);}
.btn-dark{background:var(--ink); color:var(--cream); border-color:var(--ink); box-shadow:6px 6px 0 rgba(255,198,41,0.55);}
.btn-dark:hover{transform:translate(-3px,-3px); box-shadow:9px 9px 0 rgba(255,198,41,0.55);}
.btn-ghost{background:transparent; color:var(--cream); border-color:var(--cream);}
.btn-ghost:hover{background:var(--cream); color:var(--ink);}
.btn-sm{padding:10px 18px; font-size:.78rem;}
.btn-block{width:100%;}

/* ---------- header ---------- */
.topbar{
  background:var(--ink); color:var(--cream); font-family:'IBM Plex Mono',monospace;
  font-size:.78rem; letter-spacing:.03em;
}
.topbar .container{display:flex; justify-content:space-between; align-items:center; padding-top:8px; padding-bottom:8px; flex-wrap:wrap; gap:6px;}
.topbar a{color:var(--yellow);}
.site-header{
  position:sticky; top:0; z-index:60; background:var(--cream);
  border-bottom:3px solid var(--ink);
}
.site-header .container{display:flex; align-items:center; justify-content:space-between; padding-top:16px; padding-bottom:16px;}
.brand{display:flex; align-items:center; gap:12px;}
.brand-mark{
  width:46px;height:46px; background:var(--ink); color:var(--yellow); display:flex;
  align-items:center; justify-content:center; font-family:'Bebas Neue'; font-size:1.5rem;
  border-radius:var(--radius); flex-shrink:0;
}
.brand-text{font-family:'Bebas Neue'; font-size:1.32rem; line-height:1.05; letter-spacing:.01em; max-width:190px;}
.brand-text small{display:block; font-family:'IBM Plex Mono'; font-size:.6rem; letter-spacing:.14em; color:var(--muted); text-transform:uppercase; margin-top:4px;}
.main-nav{display:flex; align-items:center; gap:30px;}
.nav-item{position:relative;}
.main-nav a{
  font-family:'IBM Plex Mono', monospace; font-size:.82rem; letter-spacing:.05em;
  text-transform:uppercase; font-weight:600; position:relative; padding:4px 0;
  display:inline-flex; align-items:center; gap:6px;
}
.main-nav a::after{content:""; position:absolute; left:0; bottom:-4px; height:2px; width:0; background:var(--amber); transition:width .2s ease;}
.main-nav a:hover::after, .main-nav a.active::after{width:100%;}
.main-nav a.active{color:var(--amber);}
.mega-caret{font-size:.65rem; transition:transform .2s ease;}
.nav-item.open .mega-caret, .nav-item:hover .mega-caret{transform:rotate(180deg);}
.mega-toggle{display:none;}
.header-cta{display:flex; align-items:center; gap:14px;}
.nav-toggle{display:none; background:none; border:2px solid var(--ink); border-radius:var(--radius); width:44px; height:44px; align-items:center; justify-content:center; cursor:pointer;}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{content:""; display:block; width:20px; height:2px; background:var(--ink); position:relative; transition:.2s;}
.nav-toggle span::before{position:absolute; top:-7px;}
.nav-toggle span::after{position:absolute; top:7px;}
.nav-close{display:none;}
.nav-backdrop{display:none;}

/* ---------- mega menu ---------- */
.mega-panel{
  position:absolute; top:calc(100% + 22px); left:50%; transform:translateX(-50%);
  background:#fff; border:2px solid var(--ink); box-shadow:var(--shadow-hard);
  width:680px; max-width:90vw; padding:28px; display:none; z-index:70; border-radius:6px;
}
.nav-item.has-mega:hover .mega-panel,
.nav-item.has-mega:focus-within .mega-panel,
.nav-item.has-mega.open .mega-panel{display:block;}
.mega-grid{display:grid; grid-template-columns:1fr 1fr 1fr; gap:26px;}
.mega-col h5{font-family:'IBM Plex Mono'; font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; color:var(--amber); margin:0 0 12px;}
.mega-col ul{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:9px;}
.mega-col ul a{font-family:'Work Sans'; font-size:.88rem; font-weight:500; text-transform:none; letter-spacing:0; color:var(--ink);}
.mega-col ul a:hover{color:var(--amber);}
.mega-col ul a::after{display:none;}
.mega-cta{
  grid-column:1/-1; margin-top:6px; padding-top:18px; border-top:1px solid var(--cream-2);
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
}
.mega-cta span{font-family:'IBM Plex Mono'; font-size:.78rem; color:var(--muted);}

/* ---------- mobile app bottom bar ---------- */
.app-bottom-bar{display:none;}


/* ---------- hero ---------- */
.hero{
  background:var(--ink); color:var(--cream); position:relative; overflow:hidden;
  padding:72px 0 0;
}
.hero::before{
  content:""; position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,198,41,0.045) 0 2px, transparent 2px 34px);
  pointer-events:none;
}
.hero-grid{display:grid; grid-template-columns:1.05fr .95fr; gap:40px; align-items:center; position:relative; z-index:2;}
.hero-copy .eyebrow{color:var(--yellow);}
.hero-copy .eyebrow::before{background:var(--yellow);}
.hero h1{color:var(--cream);}
.hero h1 span{color:var(--yellow);}
.hero-sub{font-size:1.1rem; color:#c9cbd0; max-width:480px; margin-bottom:30px;}
.hero-actions{display:flex; gap:16px; flex-wrap:wrap; margin-bottom:34px;}
.hero-stats{display:flex; gap:34px; flex-wrap:wrap; border-top:1px solid var(--line); padding-top:24px;}
.hero-stats div strong{display:block; font-family:'Bebas Neue'; font-size:2.1rem; color:var(--yellow); line-height:1;}
.hero-stats div span{font-family:'IBM Plex Mono'; font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color:var(--muted);}
.hero-photo{position:relative;}
.hero-photo .plate{
  position:absolute; top:-16px; left:-16px; background:var(--yellow); color:var(--ink);
  font-family:'IBM Plex Mono'; font-weight:700; font-size:.85rem; padding:8px 14px;
  border:2px solid var(--ink); z-index:3; letter-spacing:.06em;
}
.hero-photo img{border:3px solid var(--charcoal-2); box-shadow:var(--shadow-soft);}
.hero-strip{
  margin-top:56px; background:var(--yellow); color:var(--ink); position:relative; z-index:2;
  border-top:3px solid var(--ink);
}
.hero-strip .container{display:flex; flex-wrap:wrap; gap:8px 40px; padding:14px 24px;}
.hero-strip span{font-family:'IBM Plex Mono'; font-size:.78rem; font-weight:600; letter-spacing:.04em; display:flex; align-items:center; gap:8px;}
.hero-strip span::before{content:"✓"; font-weight:700;}

/* ---------- section basics ---------- */
section{padding:88px 0;}
.section-dark{background:var(--ink); color:var(--cream);}
.section-dark h2{color:var(--cream);}
.section-cream2{background:var(--cream-2);}
.section-head{display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:48px; flex-wrap:wrap;}
.section-head p{color:var(--muted); max-width:480px; margin:0;}

/* ---------- departure board (routes) ---------- */
.board-wrap{
  background:var(--charcoal); border:3px solid var(--ink); border-radius:6px;
  box-shadow:var(--shadow-soft); overflow:hidden;
}
.board-head{
  display:flex; justify-content:space-between; align-items:center; padding:16px 24px;
  background:var(--ink); border-bottom:2px dashed var(--line);
}
.board-head .mono{color:var(--yellow); font-size:.82rem; letter-spacing:.1em;}
.board-list{list-style:none; margin:0; padding:0;}
.board-list li{
  display:grid; grid-template-columns:34px 1fr auto auto; gap:18px; align-items:center;
  padding:15px 24px; border-bottom:1px solid var(--line); transition:background .15s ease;
}
.board-list li:last-child{border-bottom:none;}
.board-list li:hover{background:rgba(255,198,41,0.06);}
.board-list a{display:contents;}
.board-idx{font-family:'IBM Plex Mono'; color:var(--muted); font-size:.78rem;}
.board-city{font-family:'IBM Plex Mono'; font-weight:600; color:var(--cream); letter-spacing:.03em; font-size:.98rem;}
.board-city small{display:block; color:var(--muted); font-weight:400; font-size:.7rem; letter-spacing:.08em; margin-top:2px;}
.board-tag{
  font-family:'IBM Plex Mono'; font-size:.68rem; letter-spacing:.08em; text-transform:uppercase;
  color:var(--yellow); border:1px solid var(--yellow); padding:3px 9px; border-radius:20px; justify-self:start;
}
.board-arrow{color:var(--amber); font-family:'IBM Plex Mono'; font-size:1.1rem;}

/* ---------- fleet ---------- */
.fleet-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
.fleet-card{
  background:#fff; border:2px solid var(--ink); border-radius:var(--radius); overflow:hidden;
  position:relative; transition:transform .18s ease, box-shadow .18s ease;
}
.fleet-card:hover{transform:translateY(-6px); box-shadow:var(--shadow-hard);}
.fleet-card.featured{grid-column:span 2; display:grid; grid-template-columns:1.1fr 1fr;}
.fleet-card.featured .fleet-photo{height:100%;}
.fleet-photo{height:210px; overflow:hidden; position:relative; background:var(--cream-2);}
.fleet-photo img{width:100%; height:100%; object-fit:cover;}
.fleet-badge{
  position:absolute; top:14px; left:14px; background:var(--yellow); color:var(--ink);
  font-family:'IBM Plex Mono'; font-size:.68rem; font-weight:700; letter-spacing:.06em;
  padding:5px 10px; text-transform:uppercase; border:1.5px solid var(--ink);
}
.fleet-body{padding:22px;}
.fleet-body .type{font-family:'IBM Plex Mono'; font-size:.72rem; color:var(--muted); letter-spacing:.08em; text-transform:uppercase; margin-bottom:6px; display:block;}
.fleet-body h3{margin-bottom:6px;}
.fleet-body p{color:var(--muted); font-size:.92rem; margin-bottom:16px;}
.fleet-card.featured .fleet-body{display:flex; flex-direction:column; justify-content:center;}
.fleet-card.featured h3{font-size:2.4rem;}

/* ---------- how it works ---------- */
.steps{display:grid; grid-template-columns:repeat(4,1fr); gap:2px; background:var(--ink); border:2px solid var(--ink);}
.step{background:var(--cream); padding:30px 24px;}
.step .num{font-family:'Bebas Neue'; font-size:2.6rem; color:var(--amber); line-height:1; margin-bottom:10px;}
.step h4{font-family:'Work Sans'; font-weight:700; text-transform:none; font-size:1.05rem; margin-bottom:8px;}
.step p{color:var(--muted); font-size:.9rem; margin:0;}

/* ---------- why us ---------- */
.why-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.why-card{border:1.5px solid var(--line); padding:28px; border-radius:var(--radius); background:var(--charcoal-2);}
.why-card .ic{font-family:'Bebas Neue'; font-size:1.9rem; color:var(--yellow); margin-bottom:12px;}
.why-card h4{font-family:'Work Sans'; font-weight:700; text-transform:none; font-size:1.1rem; margin-bottom:8px; color:var(--cream);}
.why-card p{color:var(--muted); font-size:.92rem; margin:0;}

/* ---------- testimonials ---------- */
.testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.testi-card{background:#fff; border:2px solid var(--ink); padding:26px; border-radius:var(--radius); box-shadow:var(--shadow-hard);}
.testi-stars{color:var(--yellow-dim); font-family:'IBM Plex Mono'; margin-bottom:12px; letter-spacing:2px;}
.testi-card p{font-size:.95rem; margin-bottom:16px;}
.testi-who{font-family:'IBM Plex Mono'; font-size:.78rem; font-weight:600; text-transform:uppercase; letter-spacing:.05em; color:var(--muted);}

/* ---------- booking form ---------- */
.book-panel{background:var(--charcoal); color:var(--cream); border-radius:6px; padding:40px; border:3px solid var(--ink); box-shadow:var(--shadow-soft);}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px;}
.form-group{display:flex; flex-direction:column; gap:6px;}
.form-group.full{grid-column:1/-1;}
.form-group label{font-family:'IBM Plex Mono'; font-size:.72rem; letter-spacing:.08em; text-transform:uppercase; color:var(--muted);}
.form-group input, .form-group select, .form-group textarea{
  background:var(--ink); border:1.5px solid var(--line); color:var(--cream); padding:13px 14px;
  border-radius:var(--radius); font-family:'Work Sans'; font-size:.95rem; width:100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{outline:none; border-color:var(--yellow);}
.form-group textarea{resize:vertical; min-height:90px;}

/* ---------- footer ---------- */
.site-footer{background:var(--ink); color:var(--cream); padding-top:70px;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:50px; border-bottom:1px solid var(--line);}
.footer-grid h5{font-family:'IBM Plex Mono'; font-size:.78rem; letter-spacing:.1em; text-transform:uppercase; color:var(--yellow); margin-bottom:18px;}
.footer-grid ul{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px;}
.footer-grid ul a{color:#c9cbd0; font-size:.92rem;}
.footer-grid ul a:hover{color:var(--yellow);}
.footer-bottom{display:flex; justify-content:space-between; align-items:center; padding:22px 0; font-family:'IBM Plex Mono'; font-size:.75rem; color:var(--muted); flex-wrap:wrap; gap:10px;}
.foot-brand p{color:#c9cbd0; font-size:.92rem; max-width:320px; margin-top:14px;}
.social-row{display:flex; gap:10px; margin-top:18px;}
.social-row a{width:38px; height:38px; border:1.5px solid var(--line); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'IBM Plex Mono'; font-size:.8rem;}
.social-row a:hover{border-color:var(--yellow); color:var(--yellow);}

/* ---------- floating whatsapp / call (desktop) ---------- */
.float-wa{
  position:fixed; bottom:24px; right:24px; z-index:80; width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center;
  font-size:1.6rem; box-shadow:0 10px 24px rgba(0,0,0,0.3); border:2px solid var(--ink);
}
.float-call{
  position:fixed; bottom:24px; left:24px; z-index:80; width:58px; height:58px; border-radius:50%;
  background:var(--yellow); color:var(--ink); display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; box-shadow:0 10px 24px rgba(0,0,0,0.3); border:2px solid var(--ink);
}

/* ---------- page header (inner pages) ---------- */
.page-hero{background:var(--ink); color:var(--cream); padding:60px 0; border-bottom:3px solid var(--yellow);}
.breadcrumb{font-family:'IBM Plex Mono'; font-size:.78rem; color:var(--muted); letter-spacing:.05em;}
.breadcrumb a{color:var(--yellow);}

/* ---------- misc ---------- */
.badge-list{display:flex; flex-wrap:wrap; gap:10px; margin:20px 0;}
.pill{font-family:'IBM Plex Mono'; font-size:.75rem; border:1.5px solid var(--ink); padding:7px 14px; border-radius:20px;}
.alert{padding:16px 20px; border-radius:var(--radius); font-family:'IBM Plex Mono'; font-size:.88rem; margin-bottom:20px;}
.alert-success{background:#e4f6e4; border:1.5px solid #2e8b3d; color:#1c5c26;}
.alert-error{background:#fbe4e4; border:1.5px solid #b03a3a; color:#7c1f1f;}

/* ---------- responsive ---------- */
@media(max-width:960px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-photo{order:-1;}
  .fleet-grid{grid-template-columns:repeat(2,1fr);}
  .fleet-card.featured{grid-column:span 2; grid-template-columns:1fr;}
  .steps{grid-template-columns:repeat(2,1fr);}
  .why-grid, .testi-grid{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .form-row{grid-template-columns:1fr;}
  .mega-panel{width:560px;}
}

/* ---------- mobile: app-style drawer nav + bottom bar ---------- */
@media(max-width:720px){
  body{padding-bottom:calc(66px + env(safe-area-inset-bottom));}
  .brand-text{font-size:1.05rem;}
  .brand-text small{font-size:.54rem;}
  .brand-mark{width:40px; height:40px; font-size:1.25rem;}

  /* full-height slide-in drawer from the right */
  .nav-toggle{display:flex;}
  .nav-close{display:flex;}
  .nav-backdrop{display:block;}
  .nav-backdrop{
    position:fixed; inset:0; background:rgba(11,37,69,0.55); z-index:90;
    opacity:0; pointer-events:none; transition:opacity .25s ease;
  }
  .nav-backdrop.open{opacity:1; pointer-events:auto;}
  .main-nav{
    position:fixed; top:0; right:0; bottom:0; width:82%; max-width:340px;
    background:var(--cream); flex-direction:column; align-items:stretch;
    padding:90px 22px 24px; gap:4px; z-index:95; display:flex;
    transform:translateX(100%); transition:transform .28s ease; box-shadow:-10px 0 30px rgba(11,37,69,0.25);
    overflow-y:auto;
  }
  .main-nav.open{transform:translateX(0);}
  .nav-close{
    position:absolute; top:18px; right:18px; width:38px; height:38px; border:2px solid var(--ink);
    border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.1rem;
    background:transparent; cursor:pointer;
  }
  .main-nav > .nav-item{border-bottom:1px solid var(--cream-2);}
  .main-nav > .nav-item > a{padding:16px 4px; font-size:.95rem; justify-content:space-between; width:100%;}
  .main-nav > .nav-item.has-mega{display:flex; align-items:center; flex-wrap:wrap;}
  .main-nav > .nav-item.has-mega > a{flex:1 1 auto; width:auto;}

  /* dedicated tap target for expanding the mega menu — more reliable than
     overloading the "Routes" link's own click on touch devices */
  .mega-toggle{
    display:flex; align-items:center; justify-content:center; flex:0 0 auto;
    width:38px; height:38px; margin-left:8px; background:transparent;
    border:1.5px solid var(--line); border-radius:8px; color:var(--ink);
    font-size:.8rem; cursor:pointer; transition:transform .2s ease, background .2s ease;
  }
  .nav-item.has-mega.open .mega-toggle{transform:rotate(180deg); background:var(--cream-2);}
  .mega-caret{display:none;}

  /* mega menu becomes inline accordion */
  .mega-panel{
    position:static; transform:none; width:100%; max-width:100%; border:none; box-shadow:none;
    display:none; padding:6px 4px 16px; background:transparent; flex-basis:100%;
  }
  .nav-item.has-mega.open .mega-panel{display:block;}
  .mega-grid{grid-template-columns:1fr; gap:16px;}
  .mega-cta{display:none;}

  .header-cta .btn{display:none;}
  .header-cta{gap:8px;}

  .fleet-grid{grid-template-columns:1fr;}
  .fleet-card.featured{grid-column:span 1;}
  .steps, .why-grid, .testi-grid, .footer-grid{grid-template-columns:1fr;}
  .board-list li{grid-template-columns:24px 1fr auto; gap:10px;}
  .board-tag{display:none;}
  section{padding:44px 0;}
  .book-panel{padding:20px;}
  .container{padding:0 18px;}

  /* hide desktop floating buttons — replaced by app bottom bar */
  .float-wa, .float-call{display:none;}

  .app-bottom-bar{
    display:grid; grid-template-columns:1fr 1fr 1.3fr;
    position:fixed; left:0; right:0; bottom:0; z-index:85;
    background:var(--ink); border-top:2px solid var(--yellow);
    padding:9px 10px calc(9px + env(safe-area-inset-bottom));
    gap:8px;
  }
  .app-bottom-bar a{
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:3px;
    font-family:'IBM Plex Mono'; font-size:.62rem; letter-spacing:.04em; text-transform:uppercase;
    color:var(--cream); padding:6px 4px; border-radius:8px;
  }
  .app-bottom-bar a .ic{font-size:1.25rem; line-height:1;}
  .app-bottom-bar a.primary{background:var(--yellow); color:var(--ink); font-weight:700;}
}