/* ==========================================================
   AXIS PASSENGERS TRANSPORT — design tokens
   Palette: asphalt navy / route-marking amber / desert sand
   Display: Archivo Black (signage) · Body: Inter · Data: Space Mono
   ========================================================== */

:root{
  --navy: #0B1F2E;
  --navy-soft: #16283A;
  --asphalt: #1C2E3D;
  --amber: #F2B705;
  --amber-dim: #C99400;
  --sand: #E9DFC7;
  --paper: #F7F5EF;
  --ink: #14181B;
  --muted: #5B6670;
  --line: rgba(11,31,46,0.12);
  --radius: 4px;
  --shadow: 0 12px 30px rgba(11,31,46,0.12);

  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;
}

*{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; }
h1,h2,h3{ font-family: var(--font-display); line-height: 1.05; letter-spacing: -0.01em; }
section{ padding: 88px 24px; }
.eyebrow{
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--amber-dim);
  margin-bottom: 12px;
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html{ scroll-behavior: auto; }
}
:focus-visible{ outline: 3px solid var(--amber); outline-offset: 2px; }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 28px;
  font-weight: 700; font-size: 15px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn-amber{ background: var(--amber); color: var(--navy); }
.btn-amber:hover{ background: #ffc61a; }
.btn-outline{ border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover{ background: var(--navy); color: #fff; }
.btn-block{ width: 100%; }

/* ---------- top strip ---------- */
.topstrip{ background: var(--navy); color: #cfd8de; font-family: var(--font-mono); font-size: 12.5px; }
.topstrip-inner{
  max-width: 1200px; margin: 0 auto; padding: 8px 24px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.topstrip-item{ display: inline-flex; align-items: center; gap: 6px; }
.dot{ width: 6px; height: 6px; border-radius: 50%; background: #35d16b; display: inline-block; }
.topstrip-hours{ margin-left: auto; color: #94a3ad; }
.topstrip-wa{ color: var(--amber); font-weight: 700; }

/* ---------- header ---------- */
.site-header{ background: var(--navy); position: sticky; top:0; z-index: 50; border-bottom: 1px solid rgba(255,255,255,0.08); }
.header-inner{
  max-width: 1200px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 32px;
}
.logo{ display: flex; flex-direction: column; line-height: 1; margin-right: auto; }
.logo-mark{ font-family: var(--font-display); color: var(--amber); font-size: 24px; letter-spacing: 0.02em; }
.logo-sub{ font-family: var(--font-mono); color: #9fb0bb; font-size: 10px; letter-spacing: 0.16em; margin-top: 4px; }
.main-nav{ display: flex; gap: 28px; }
.main-nav a{ color: #dbe4e9; font-size: 14.5px; font-weight: 500; }
.main-nav a:hover{ color: var(--amber); }
.header-cta{ padding: 11px 20px; font-size: 14px; }
.nav-toggle{ display:none; flex-direction: column; gap:5px; background:none; border:0; cursor:pointer; padding:8px; }
.nav-toggle span{ width: 22px; height: 2px; background: #fff; display:block; }

/* ---------- hero ---------- */
.hero{
  background: var(--navy);
  background-image:
    radial-gradient(circle at 85% 20%, rgba(242,183,5,0.10), transparent 45%),
    linear-gradient(180deg, var(--navy), var(--navy-soft));
  color: #fff;
  padding: 72px 24px 96px;
  position: relative;
  overflow: hidden;
}
.hero-lines{
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: repeating-linear-gradient(180deg, transparent 0 78px, rgba(242,183,5,0.14) 78px 82px);
  mask-image: linear-gradient(180deg, transparent, black 40%, transparent);
}
.hero-inner{
  max-width: 1200px; margin: 0 auto; position: relative;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center;
}
.hero-sub{ color: #b9c6ce; max-width: 46ch; margin: 20px 0 32px; font-size: 16.5px; }
.hero h1{ font-size: clamp(38px, 5vw, 62px); }
.hero-actions{ display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats{ display: flex; gap: 36px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats strong{ font-family: var(--font-display); font-size: 22px; color: var(--amber); display:block; }
.hero-stats span{ font-family: var(--font-mono); font-size: 11.5px; color: #9fb0bb; text-transform: uppercase; letter-spacing: 0.06em; }

/* destination board — signature element */
.board{
  background: #05100b;
  border: 10px solid #101c13;
  border-radius: 6px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(255,193,7,0.15);
  overflow: hidden;
  font-family: var(--font-mono);
}
.board-head{
  background: #101c13; color: #ffb703;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 10px 16px; display: flex; align-items: center; gap: 8px;
}
.board-led{ width: 7px; height: 7px; border-radius: 50%; background: #ffb703; box-shadow: 0 0 8px #ffb703; animation: blink 1.4s infinite; }
@keyframes blink{ 50%{ opacity: 0.25; } }
.board-screen{ padding: 30px 20px 34px; min-height: 150px; }
.board-line{
  color: #ffb703;
  text-shadow: 0 0 6px rgba(255,183,3,0.65), 0 0 14px rgba(255,183,3,0.3);
  letter-spacing: 0.03em;
  transition: opacity .35s ease, transform .35s ease;
}
.board-line-1{ font-size: 26px; font-weight: 700; margin-bottom: 10px; }
.board-line-2{ font-size: 14px; color: #c98d02; text-transform: uppercase; }
.board-foot{
  background: #101c13; color: #6b7d64; font-size: 10px; letter-spacing: 0.12em;
  padding: 9px 16px; text-align: center; text-transform: uppercase;
}

/* ---------- trust strip ---------- */
.trust{ background: var(--sand); padding: 32px 24px; }
.trust-inner{ max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-inner p{ max-width: 60ch; font-size: 14.5px; color: #4a4131; }
.trust-tags{ display: flex; gap: 10px; flex-wrap: wrap; }
.trust-tags span{
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em;
  background: var(--navy); color: var(--amber); padding: 7px 12px; border-radius: 3px; white-space: nowrap;
}

/* ---------- section heads ---------- */
.section-head{ max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2{ font-size: clamp(28px, 3.4vw, 40px); color: var(--navy); }
.section-head.light h2{ color: #fff; }
.section-head.light .eyebrow{ color: var(--amber); }

/* ---------- services ---------- */
.services{ max-width: 1200px; margin: 0 auto; }
.service-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card{
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: box-shadow .2s ease, transform .2s ease;
}
.service-card:hover{ box-shadow: var(--shadow); transform: translateY(-4px); }
.service-icon{ width: 44px; height: 44px; color: var(--amber-dim); margin-bottom: 18px; }
.service-icon svg{ width: 100%; height: 100%; }
.service-card h3{ font-size: 17px; font-family: var(--font-body); font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.service-card p{ font-size: 14.5px; color: var(--muted); }

/* ---------- fleet ---------- */
.fleet{ background: var(--navy); }
.fleet-grid{ max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fleet-card{
  background: var(--navy-soft); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius);
  padding: 26px 22px; color: #dbe4e9;
}
.fleet-tag{ font-family: var(--font-mono); color: var(--amber); font-size: 13px; }
.fleet-card h3{ font-family: var(--font-body); font-weight: 800; font-size: 18px; margin: 10px 0 2px; color: #fff; }
.fleet-card p{ font-family: var(--font-mono); font-size: 12px; color: #9fb0bb; margin-bottom: 14px; }
.fleet-card li{ font-size: 13.5px; padding: 5px 0; border-top: 1px solid rgba(255,255,255,0.08); color: #c3ced4; }
.fleet-card li:first-child{ border-top: 0; }

/* ---------- why ---------- */
.why-inner{ max-width: 1200px; margin: 0 auto; }
.why-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.why-item h3{ font-family: var(--font-body); font-weight: 800; font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.why-item p{ font-size: 14.5px; color: var(--muted); }
.why-item{ border-top: 3px solid var(--amber); padding-top: 16px; }

/* ---------- reserve ---------- */
.reserve{ background: var(--sand); }
.reserve-inner{ max-width: 760px; margin: 0 auto; }
.reserve-note{ color: #4a4131; font-size: 14.5px; }
.reserve-form{ background: #fff; border-radius: 8px; padding: 34px; box-shadow: var(--shadow); margin-top: 12px; }
.form-row{ display: flex; gap: 18px; margin-bottom: 18px; }
.field{ flex: 1; display: flex; flex-direction: column; gap: 7px; }
.field-wide{ flex: 1 1 100%; }
.field label{ font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.field input, .field select, .field textarea{
  font-family: var(--font-body); font-size: 15px; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--paper); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline: none; border-color: var(--amber-dim); background: #fff; }
.field textarea{ resize: vertical; }
.form-fineprint{ font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 14px; }

/* ---------- contact ---------- */
.contact-inner{ max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h2{ font-size: 26px; color: var(--navy); margin-bottom: 22px; }
.contact-list{ margin-bottom: 26px; }
.contact-list li{ padding: 12px 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 3px; font-size: 15px; }
.contact-list li:first-child{ border-top: 0; }
.contact-list span{ font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--amber-dim); }
.contact-list a:hover{ text-decoration: underline; }
.contact-map iframe{ width: 100%; height: 100%; min-height: 340px; border: 0; border-radius: 8px; }

/* ---------- footer ---------- */
.site-footer{ background: var(--navy); color: #9fb0bb; padding: 40px 24px; }
.footer-inner{ max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: space-between; }
.footer-brand{ display: flex; align-items: baseline; gap: 10px; }
.footer-nav{ display: flex; gap: 22px; }
.footer-nav a:hover{ color: var(--amber); }
.footer-copy{ font-size: 12.5px; }

/* ---------- whatsapp float ---------- */
.wa-float{
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  transition: transform .15s ease;
}
.wa-float:hover{ transform: scale(1.08); }

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .service-grid{ grid-template-columns: repeat(2, 1fr); }
  .fleet-grid{ grid-template-columns: repeat(2, 1fr); }
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .contact-inner{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .main-nav, .header-cta{ display: none; }
  .nav-toggle{ display: flex; }
  .main-nav.open{
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy); flex-direction: column; padding: 16px 24px; gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .topstrip-hours{ display: none; }
  section{ padding: 64px 20px; }
  .service-grid, .fleet-grid, .why-grid{ grid-template-columns: 1fr; }
  .form-row{ flex-direction: column; gap: 16px; }
  .trust-inner{ flex-direction: column; align-items: flex-start; }
}
