:root {
  --primary: #FF7A00;
  --primary-dark: #CC5F00;
  --accent: #FFC933;
  --dark: #1A1A1A;
  --dark-2: #2B2B2B;
  --light: #FFF8EF;
  --muted: #6B6259;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(26,26,26,0.10);
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', Arial, sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.55;
}
h1, h2, h3, h4 {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-weight: 800;
  margin: 0 0 .5em;
  line-height: 1.2;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-tight { padding: 40px 0; }
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(255,122,0,.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active { transform: scale(.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 8px 22px rgba(255,122,0,.35);
}
.btn-primary:hover { box-shadow: 0 12px 28px rgba(255,122,0,.45); }
.btn-whatsapp { background: #25D366; color: #fff; box-shadow: 0 8px 22px rgba(37,211,102,.35); }
.btn-call { background: var(--dark); color: #fff; }
.btn-outline { background: transparent; border-color: var(--dark); color: var(--dark); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 9px 16px; font-size: .82rem; }

/* ===== Top bar ===== */
.topbar {
  background: var(--dark);
  color: #eee;
  font-size: .82rem;
}
.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(--accent); font-weight: 700; }
.topbar-badge { color: #bbb; }

/* ===== Header ===== */
header.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Poppins',sans-serif; font-weight: 900; font-size: 1.3rem; }
.logo .mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem; box-shadow: 0 6px 16px rgba(255,122,0,.4);
  flex-shrink: 0;
}
.logo small { display: block; font-family: 'Manrope',sans-serif; font-weight: 600; font-size: .62rem; color: var(--muted); letter-spacing: .06em; }
nav.main-nav { display: flex; gap: 28px; align-items: center; }
nav.main-nav a { font-weight: 700; font-size: .93rem; color: var(--dark-2); }
nav.main-nav a:hover { color: var(--primary); }
.nav-cta { display: flex; gap: 10px; }
.hamburger { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--dark); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: radial-gradient(1200px 500px at 85% -10%, rgba(255,201,51,.35), transparent 60%),
              linear-gradient(160deg, #1A1A1A 0%, #2B2118 55%, #3a2a12 100%);
  color: #fff;
  overflow: hidden;
}
.hero .container { padding-top: 68px; padding-bottom: 68px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); padding: 7px 16px; border-radius: 999px; font-size: .8rem; font-weight: 700; margin-bottom: 18px; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #33e08a; box-shadow: 0 0 0 4px rgba(51,224,138,.25); }
.hero h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.hero h1 span { color: var(--accent); }
.hero p.lead { font-size: 1.08rem; color: #ddd; max-width: 46ch; margin-bottom: 26px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-size: 1.5rem; font-family:'Poppins',sans-serif; color: var(--accent); }
.hero-stats div span { font-size: .78rem; color: #ccc; }

/* Quick booking card */
.quote-card {
  background: #fff;
  color: var(--dark);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.quote-card h3 { font-size: 1.15rem; }
.quote-card .muted { color: var(--muted); font-size: .85rem; margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .78rem; font-weight: 700; margin-bottom: 6px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1.5px solid #e7e0d5;
  font-size: .95rem; font-family: inherit; background: #FFFCF8;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ===== Trust strip ===== */
.trust-strip { background: #fff; border-bottom: 1px solid #f0e8db; }
.trust-strip .container { display: flex; justify-content: space-between; padding: 22px 20px; flex-wrap: wrap; gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: .88rem; color: var(--dark-2); }
.trust-item .ic { font-size: 1.4rem; }

/* ===== Cards / grid ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  background: #fff; border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow); border: 1px solid #f2ead0;
}
.card .ic {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,122,0,.15), rgba(255,201,51,.25));
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px;
}
.card h3 { font-size: 1.05rem; }
.card p { color: var(--muted); font-size: .92rem; margin: 0; }

.section-head { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.section-head p { color: var(--muted); }

/* Route pills for homepage */
.route-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.route-pill {
  background: #fff; border: 1.5px solid #f0e2c8; padding: 10px 18px; border-radius: 999px;
  font-weight: 700; font-size: .85rem; color: var(--dark-2); transition: all .15s ease;
}
.route-pill:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Fleet */
.fleet-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease; }
.fleet-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(26,26,26,.14); }
.fleet-img { height: 150px; background: linear-gradient(135deg, #f4e9d8, #ffe6c2); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.fleet-img-real { width: 100%; height: 180px; object-fit: cover; object-position: center 60%; background: #f4e9d8; }
.fleet-body { padding: 18px; }
.fleet-body h4 { margin-bottom: 4px; }
.fleet-body span { color: var(--muted); font-size: .82rem; }
.fleet-card-cta { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--dark), #2e2418); }
.fleet-cta-inner { padding: 26px 22px; text-align: center; }
.fleet-cta-inner h4 { color: #fff; font-size: 1.05rem; }
.fleet-cta-inner p { color: #cfc7ba; font-size: .85rem; margin: 6px 0 16px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; counter-reset: step; }
.step { text-align: center; }
.step .num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--dark); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-weight: 800; margin: 0 auto 14px;
}

/* Testimonials */
.testi { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.testi .stars { color: #ffb400; margin-bottom: 10px; letter-spacing: 2px; }
.testi p { color: var(--dark-2); font-style: italic; margin-bottom: 14px; }
.testi .who { font-weight: 800; font-size: .88rem; }
.testi .who span { display: block; font-weight: 500; color: var(--muted); font-size: .78rem; }

/* Route landing page banner */
.route-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; padding: 56px 0 44px;
}
.route-hero .breadcrumb { font-size: .82rem; opacity: .9; margin-bottom: 14px; }
.route-hero .breadcrumb a { text-decoration: underline; }
.route-path { display: flex; align-items: center; gap: 14px; font-size: 1.7rem; font-weight: 900; font-family: 'Poppins',sans-serif; flex-wrap: wrap; }
.route-path .arrow { color: var(--accent); }
.route-hero p { max-width: 60ch; opacity: .95; margin-top: 10px; }

.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px dashed #ecdfc7; font-size: .93rem; }
.info-list li .ic { color: var(--primary); font-weight: 900; }

.related-routes { display: flex; flex-wrap: wrap; gap: 10px; }

/* CTA band */
.cta-band {
  background: var(--dark); color: #fff; border-radius: 24px; padding: 44px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 200px at 80% 0%, rgba(255,201,51,.25), transparent 70%);
}
.cta-band h2 { position: relative; }
.cta-band .actions { position: relative; display: flex; gap: 12px; justify-content: center; margin-top: 18px; flex-wrap: wrap; }

/* Footer */
footer.site-footer { background: #12100E; color: #cfc7ba; padding: 56px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 32px; }
.footer-grid h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; font-size: .87rem; }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid #2a2722; margin-top: 40px; padding-top: 20px; display: flex; justify-content: space-between; font-size: .8rem; color: #8a8378; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: var(--accent); font-weight: 700; }

/* Floating action buttons (mobile) */
.fab-group { position: fixed; right: 18px; bottom: 18px; display: flex; flex-direction: column; gap: 12px; z-index: 60; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 10px 24px rgba(0,0,0,.3); color: #fff; }
.fab-whatsapp { background: #25D366; }
.fab-call { background: var(--primary); }

.sticky-mobile-bar { display: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 720px) {
  nav.main-nav, .nav-cta { display: none; }
  .hamburger { display: block; }
  nav.main-nav.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 18px 20px; gap: 4px; box-shadow: 0 10px 20px rgba(0,0,0,.08);
  }
  nav.main-nav.open a { padding: 12px 0; border-bottom: 1px solid #f2ead0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip .container { justify-content: flex-start; }
  body { padding-bottom: 70px; }
  .sticky-mobile-bar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 55;
    background: #fff; box-shadow: 0 -6px 20px rgba(0,0,0,.12);
  }
  .sticky-mobile-bar a {
    flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 10px 4px; font-size: .68rem; font-weight: 800; gap: 3px; color: var(--dark);
  }
  .sticky-mobile-bar a.primary { background: var(--primary); color: #fff; }
  .sticky-mobile-bar a .ic { font-size: 1.25rem; }
  .fab-group { bottom: 76px; }
}
@media (max-width: 460px) {
  .route-path { font-size: 1.3rem; }
  .cta-band { padding: 30px 18px; }
}
