/* ═══════════════════════════════════════════════════════════
   BASTE TRAVELS — Production Stylesheet
   White Premium Theme · Mobile-First · Conversion Optimized
═══════════════════════════════════════════════════════════ */

:root {
  --bg: #f5f7fa;
  --bg-alt: #eef2f7;
  --white: #ffffff;
  --primary: #1a6ef5;
  --primary-dark: #0e52c4;
  --primary-deep: #0a3d94;
  --primary-soft: #e8f0ff;
  --primary-softer: #f3f7ff;
  --green: #0f9d58;
  --green-dark: #0c7f46;
  --green-soft: #e5f6ed;
  --orange: #f57c00;
  --orange-dark: #db6d00;
  --orange-soft: #fff2e1;
  --red: #dc2626;
  --red-soft: #fef2f2;
  --text: #0c1a2b;
  --text-muted: #5c6b7e;
  --text-light: #8795a8;
  --border: #dde5ef;
  --border-light: #eaeef4;
  --shadow-sm: 0 1px 2px rgba(12,26,43,0.04);
  --shadow-md: 0 4px 16px rgba(12,26,43,0.06);
  --shadow-lg: 0 20px 50px rgba(12,26,43,0.08);
  --shadow-xl: 0 30px 60px rgba(12,26,43,0.12);
  --shadow-brand: 0 10px 30px rgba(26,110,245,0.22);
  --shadow-green: 0 10px 26px rgba(15,157,88,0.22);
  --radius-sm: 10px;
  --radius: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: var(--primary); }
::selection { background: var(--primary); color: #fff; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* ─── TOPBAR ─── */
.topbar {
  background: var(--text);
  color: #fff;
  font-size: 13px;
  padding: 9px 0;
  font-weight: 500;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar a { color: #fff; opacity: 0.9; }
.topbar a:hover { opacity: 1; }
.tb-left, .tb-right { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #34d399; display: inline-block; margin-right: 6px;
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

/* ─── HEADER ─── */
header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s var(--ease);
}
header.scrolled { box-shadow: var(--shadow-md); }
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--text);
  line-height: 1;
}
.logo img { width: 42px; height: 42px; border-radius: 10px; }
.logo-text span { color: var(--primary); }
.logo-tagline {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--primary-soft);
}
.nav-cta { display: flex; gap: 8px; align-items: center; }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}
.hamburger svg { width: 24px; height: 24px; }

/* Mobile nav drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(12, 26, 43, 0.6);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-drawer.open { display: block; opacity: 1; }
.mobile-drawer-inner {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 280px;
  background: #fff;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  overflow-y: auto;
}
.mobile-drawer.open .mobile-drawer-inner { transform: translateX(0); }
.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  display: block;
  color: var(--text);
}
.mobile-drawer a {
  display: block;
  padding: 12px 14px;
  color: var(--text);
  font-weight: 500;
  border-radius: 8px;
  margin-bottom: 4px;
}
.mobile-drawer a.active { background: var(--primary-soft); color: var(--primary); }
.mobile-drawer .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn-lg { padding: 16px 30px; font-size: 16px; border-radius: 14px; }
.btn-sm { padding: 9px 16px; font-size: 13px; border-radius: 10px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 15px 40px rgba(26,110,245,0.32); }
.btn-green { background: var(--green); color: #fff; box-shadow: var(--shadow-green); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 10px 26px rgba(245,124,0,0.25); }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-softer); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--bg); transform: translateY(-2px); }
.btn-dark { background: var(--text); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }

/* ─── SECTIONS ─── */
section { padding: 90px 0; }
section.alt { background: #fff; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--primary-soft);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
  margin-bottom: 14px;
}
.section-head h2 .hl,
.hl {
  background: linear-gradient(135deg, var(--primary), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-head p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 20px 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
}
.breadcrumb ol { list-style: none; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--text-light); }
.breadcrumb .current { color: var(--text); font-weight: 600; }

/* ─── HERO ─── */
.hero {
  padding: 70px 0 90px;
  background:
    radial-gradient(ellipse at top right, rgba(26,110,245,0.10), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(15,157,88,0.08), transparent 55%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
  border: 1px solid rgba(15,157,88,0.15);
}
.hero h1 {
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1.8px;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.trust-row { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.trust-item .icn { color: var(--green); font-size: 15px; }

/* ─── QUICK BOOKING CARD ─── */
.quick-book {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  position: relative;
}
.quick-book-head { margin-bottom: 20px; }
.quick-book-head h3 { font-size: 20px; font-weight: 800; margin-bottom: 4px; letter-spacing: -0.3px; }
.quick-book-head p { color: var(--text-muted); font-size: 13px; }
.qb-field { margin-bottom: 14px; position: relative; z-index: 0; }
.qb-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.qb-field input,
.qb-field select,
.qb-field textarea {
  width: 100%;
  min-height: 48px;
  height: 48px;
  line-height: 1.4;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  transition: border 0.2s;
  box-sizing: border-box;
}
.qb-field input[type="date"] {
  width: 100%;
  min-height: 48px;
  height: 48px;
  line-height: 1.4;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  transition: border 0.2s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  z-index: 1;
}
.qb-field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  width: 24px;
  height: 24px;
  opacity: 0.85;
}
.qb-field input:focus,
.qb-field select:focus,
.qb-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.qb-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.qb-submit { width: 100%; justify-content: center; margin-top: 6px; padding: 14px; }
.qb-note { text-align: center; font-size: 11px; color: var(--text-light); margin-top: 10px; }

/* ─── FARE BOX ─── */
.fare-box {
  background: var(--primary-softer);
  border-radius: 12px;
  padding: 16px;
  margin-top: 14px;
  text-align: center;
}
.fare-box .lbl { font-size: 11px; color: var(--primary-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.fare-box .val {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
  display: block;
  margin-top: 4px;
}

/* ─── ROUTE CARDS ─── */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 20px;
}
.route-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  padding: 22px;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.route-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}
.route-badge-top {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.route-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.route-icon {
  width: 46px; height: 46px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.route-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 2px;
}
.route-sub { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.route-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.route-meta-item {
  background: var(--bg);
  padding: 10px 8px;
  border-radius: 8px;
  text-align: center;
}
.route-meta-item .val {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  display: block;
}
.route-meta-item .lbl {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  display: block;
  margin-top: 2px;
}
.route-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 13px;
  padding: 10px;
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}
.service-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--green));
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.service-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.service-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--bg);
  color: var(--text-muted);
  border-radius: 6px;
}

/* ─── FEATURES 4-COL ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: #fff;
  padding: 26px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: all 0.25s var(--ease);
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── STEPS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  background: #fff;
  padding: 26px 20px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  position: relative;
}
.step-num {
  position: absolute;
  top: -18px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  box-shadow: var(--shadow-brand);
}
.step h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 18px 0 6px;
  letter-spacing: -0.2px;
}
.step p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: #fff;
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  position: relative;
  transition: all 0.25s var(--ease);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.t-stars {
  color: #f59e0b;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.t-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.t-name {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}
.t-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── DOC CHECK GRID ─── */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.doc-item {
  background: #fff;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--border-light);
  transition: all 0.2s;
}
.doc-item:hover {
  border-color: var(--green);
  box-shadow: 0 4px 14px rgba(15,157,88,0.1);
  transform: translateY(-2px);
}
.doc-check {
  width: 24px; height: 24px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
}
.doc-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

/* ─── FAQ ─── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-soft);
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--primary);
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,124,0,0.3), transparent 70%);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(15,157,88,0.25), transparent 70%);
  border-radius: 50%;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-inner h2 {
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
  line-height: 1.12;
}
.cta-inner p {
  font-size: 17px;
  opacity: 0.92;
  margin-bottom: 32px;
}
.cta-btn-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.cta-contact {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.cta-contact a {
  color: #fff;
  opacity: 0.92;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.cta-contact a:hover { opacity: 1; }

/* ─── COVERAGE ─── */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}
.cov-zone {
  background: #fff;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: all 0.2s;
}
.cov-zone:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.cov-zone h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--primary);
}
.cov-zone .tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-soft);
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: inline-block;
}
.cov-zone p { font-size: 12px; color: var(--text-muted); line-height: 1.55; }

/* ─── ROUTE PAGE HERO ─── */
.route-hero {
  padding: 60px 0 70px;
  background: linear-gradient(135deg, var(--primary-soft), #fff, var(--bg-alt));
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.route-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
}
.route-hero h1 {
  font-size: clamp(30px, 4.8vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.08;
}
.route-hero .sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 28px;
  line-height: 1.65;
}
.route-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
  max-width: 400px;
}
.rh-stat {
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}
.rh-stat .val {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  display: block;
}
.rh-stat .lbl {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  display: block;
  margin-top: 2px;
}

/* ─── ARTICLE CONTENT ─── */
.article {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 0;
}
.article h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 36px 0 14px;
  letter-spacing: -0.5px;
  color: var(--text);
}
.article h2:first-child { margin-top: 0; }
.article h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--text);
}
.article p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.article strong { color: var(--text); }
.article ul, .article ol {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 14px 0 20px 24px;
}
.article li { margin-bottom: 8px; }
.article li strong { color: var(--text); }
.article .highlight-box {
  background: var(--primary-soft);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 12px;
  margin: 24px 0;
}
.article .highlight-box p { margin-bottom: 0; color: var(--text); }

/* ─── LEGAL ─── */
.legal-content {
  padding: 50px 0 80px;
  max-width: 860px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 36px 0 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
  color: var(--text);
}
.legal-content h2:first-of-type { border-top: none; margin-top: 0; }
.legal-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 20px 0 8px;
}
.legal-content p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content ul, .legal-content ol {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 8px 0 16px 20px;
}
.legal-content li { margin-bottom: 6px; }
.legal-content li strong, .legal-content strong { color: var(--text); }
.legal-content .note {
  background: var(--primary-soft);
  border: 1px solid rgba(26,110,245,0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 18px 0;
  font-size: 13px;
  color: var(--text);
  line-height: 1.7;
}
.legal-content .note strong { color: var(--primary); }
.legal-content .warn {
  background: var(--red-soft);
  border: 1px solid rgba(239,68,68,0.12);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 18px 0;
  font-size: 13px;
}
.legal-content .warn strong { color: var(--red); }
.legal-content .tbl {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.legal-content .tbl th, .legal-content .tbl td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
}
.legal-content .tbl th {
  background: var(--primary-soft);
  color: var(--text);
  font-weight: 700;
  font-size: 12px;
}
.legal-content .tbl .green { color: var(--green); font-weight: 600; }
.legal-content .tbl .red { color: var(--red); font-weight: 500; }

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 60px 0 50px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-soft), #fff);
  border-bottom: 1px solid var(--border-light);
}
.page-hero h1 {
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
  line-height: 1.15;
}
.page-hero h1 .hl {
  color: var(--primary);
  -webkit-text-fill-color: initial;
  background: none;
}
.page-hero .meta {
  font-size: 14px;
  color: var(--text-muted);
}

/* ─── FOOTER ─── */
footer {
  background: var(--text);
  color: #9daab8;
  padding: 60px 0 32px;
  font-size: 14px;
}
.foot-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.foot-brand {
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.foot-brand img {
  width: 40px; height: 40px; border-radius: 10px; background: #fff; padding: 4px;
}
.foot-brand span { color: #4a90f0; }
.foot-left p { max-width: 340px; line-height: 1.7; margin-bottom: 16px; font-size: 13px; }
.foot-contact-row { display: flex; flex-direction: column; gap: 6px; font-size: 13px; }
.foot-contact-row a { color: #cbd5e1; display: flex; align-items: center; gap: 8px; }
.foot-contact-row a:hover { color: #fff; }
.foot-col h5 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.foot-col a {
  color: #9daab8;
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  transition: color 0.2s;
}
.foot-col a:hover { color: #fff; padding-left: 4px; }
.foot-cities {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
.foot-cities h5 {
  color: #fff;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.foot-cities-list {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.foot-cities-list a {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 8px;
  color: #cbd5e1;
  font-size: 12px;
  transition: all 0.2s;
}
.foot-cities-list a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #6b7a8c;
  padding-top: 18px;
}
.foot-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-bottom-links a { color: #6b7a8c; }
.foot-bottom-links a:hover { color: #fff; }

/* ─── FLOATING CTA ─── */
.float-cta {
  position: fixed;
  right: 16px;
  bottom: 88px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 90;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.24);
}
.float-btn.wa { background: #25D366; }
.float-btn.call { background: var(--primary); }
.float-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.4;
  animation: ring 2s infinite;
}
@keyframes ring {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ─── STICKY MOBILE BAR ─── */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  display: none;
  gap: 8px;
  z-index: 99;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.sticky-bar .btn {
  flex: 1;
  justify-content: center;
  padding: 12px;
  font-size: 14px;
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .route-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-main { grid-template-columns: 1fr 1fr; gap: 30px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-cta .btn-ghost { display: none; }
  section { padding: 70px 0; }
}

@media (max-width: 640px) {
  section { padding: 50px 0; }
  .container { padding: 0 16px; }
  .hero { padding: 36px 0 50px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .foot-main { grid-template-columns: 1fr; gap: 28px; }
  .route-meta { grid-template-columns: 1fr 1fr 1fr; }
  .route-hero-stats { grid-template-columns: 1fr 1fr; }
  .sticky-bar { display: flex; }
  .float-cta { bottom: 90px; right: 12px; }
  body { padding-bottom: 70px; }
  .nav-cta .btn:not(.btn-primary) { display: none; }
  .section-head { margin-bottom: 40px; }
  .topbar { font-size: 12px; padding: 8px 0; }
  .topbar .tb-right { display: none; }
  .topbar .tb-right a:first-child { display: flex; }
  .qb-field-row { grid-template-columns: 1fr; }
  .qb-field input[type="date"] {
    width: 100%;
    min-height: 48px;
    height: 48px;
    line-height: 1.4;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    background: var(--bg);
    transition: border 0.2s;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    z-index: 1;
  }
  .qb-field input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    width: 24px;
    height: 24px;
    opacity: 0.85;
  }
  .legal-content .tbl th, .legal-content .tbl td { padding: 10px 12px; font-size: 12px; }
}

@media print {
  header, footer, .sticky-bar, .float-cta, .cta-section, .topbar { display: none; }
}
