@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(/assets/fonts/manrope-latin.woff2) format('woff2');
}

/* ============================================================
   United Taxis Dumfries — landing page styles
   ============================================================ */

:root {
  --bg:           #06080a;
  --bg-2:         #080b0e;
  --surface:      #0d1217;
  --surface-2:    #11171d;
  --surface-3:    #161d24;
  --border:       rgba(255,255,255,0.08);
  --border-soft:  rgba(255,255,255,0.05);
  --border-bright:rgba(56,189,248,0.35);

  --text:         #f4f7fa;
  --muted:        #99a2ab;
  --muted-2:      #8a929d;

  --accent:       #1ca3e6;
  --accent-bright:#39bdf8;
  --accent-deep:  #0c6aa8;

  --maxw:         1320px;
  --radius:       14px;
  --radius-lg:    20px;

  --ff: "Manrope", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 44px; }

/* ---------- shared bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--accent-bright);
  font-size: 13px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0,0,0,.6);
}
.eyebrow.center { display: flex; justify-content: center; }

.section-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.02em;
}

.muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff); font-weight: 700; font-size: 15px;
  padding: 15px 24px; border-radius: 10px; cursor: pointer;
  border: 1px solid transparent; transition: all .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--accent-deep); color: #fff; box-shadow: 0 8px 24px -8px rgba(28,163,230,.7); }
.btn-primary:hover { background: #0f74b5; transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(28,163,230,.8); }
.btn-ghost { background: rgba(255,255,255,0.04); color: #fff; border-color: var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,0.09); transform: translateY(-2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--accent-bright); font-weight: 700; font-size: 14px;
  padding: 11px 18px; border: 1px solid var(--border); border-radius: 9px;
  transition: all .18s ease;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s ease; }
.link-arrow:hover { border-color: var(--border-bright); background: rgba(28,163,230,.06); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6,8,10,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); background: rgba(6,8,10,0.92); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }

.logo { display: flex; flex-direction: column; line-height: .92; }
.logo b { font-size: 23px; font-weight: 800; letter-spacing: .02em; white-space: nowrap; }
.logo .sub {
  font-size: 9.5px; font-weight: 700; letter-spacing: .42em;
  color: var(--accent-bright); margin-top: 5px;
  display: flex; align-items: center; gap: 6px;
}
.logo .sub::before, .logo .sub::after { content:""; height:1px; width:10px; background: var(--accent-bright); }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 15px; font-weight: 600; color: #cdd3da; position: relative;
  padding: 6px 0; transition: color .15s ease;
}
.nav a:hover { color: #fff; }
.nav a.active { color: #fff; }
.nav a.active::after {
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px;
  background: var(--accent-bright); border-radius: 2px;
}

.phone-btn {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 20px; font-weight: 700; font-size: 15px;
  transition: all .18s ease;
}
.phone-btn svg { width: 16px; height: 16px; color: var(--accent-bright); }
.phone-btn { white-space: nowrap; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.app-btn {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: var(--accent-deep); color: #fff;
  border: 1px solid transparent; border-radius: 10px;
  padding: 10px 17px; font-weight: 700; font-size: 14.5px;
  transition: all .18s ease;
}
.app-btn svg { width: 15px; height: 15px; }
.app-btn:hover { background: #0f74b5; }
.phone-btn:hover { border-color: var(--border-bright); background: rgba(28,163,230,.07); }

.nav-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 9px; padding: 9px; cursor: pointer; }
.nav-toggle svg { width: 22px; height: 22px; color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: var(--bg);
  min-height: clamp(560px, 66vh, 740px);
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 64% 50%; }
.hero-bg::after {
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(90deg, var(--bg) 4%, rgba(6,8,10,.90) 38%, rgba(6,8,10,.55) 62%, rgba(6,8,10,.15) 100%),
    linear-gradient(0deg, var(--bg) 1%, rgba(6,8,10,0) 26%);
}
.hero-inner {
  position: relative; z-index: 1;
  padding: 40px 0 80px;
  max-width: 660px;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 800; line-height: 1.02; letter-spacing: -0.025em;
  margin: 22px 0 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,.55);
}
.hero h1 .accent { color: var(--accent-bright); display: block; }
.hero p.lead { font-size: 19px; color: #dfe4ea; max-width: 420px; text-shadow: 0 1px 16px rgba(0,0,0,.6); }
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

/* ---------- trust bar ---------- */
.trust {
  position: relative; z-index: 2;
  margin-top: -56px;
}
.trust-card {
  background: rgba(10,14,18,0.86);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 28px 26px;
  border-right: 1px solid var(--border-soft);
}
.trust-item:last-child { border-right: none; }
.trust-item .ic {
  flex: none; width: 38px; height: 38px; color: var(--accent-bright);
}
.trust-item .ic svg { width: 100%; height: 100%; }
.trust-item .ti-t { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.trust-item p { font-size: 14px; color: var(--muted); line-height: 1.45; }

/* ============================================================
   SERVICES
   ============================================================ */
.section { padding: 96px 0; }
.services-grid {
  display: grid; grid-template-columns: 0.9fr 1.7fr; gap: 72px; align-items: center;
}
.services-intro .section-title { margin: 18px 0 22px; }
.services-intro p { color: var(--muted); font-size: 16px; max-width: 380px; margin-bottom: 28px; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.svc-card:hover { transform: translateY(-6px); border-color: var(--border-bright); }
.svc-card .media { height: 168px; position: relative; }
.svc-card .media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-card .media::after {
  content:""; position:absolute; inset:0; pointer-events:none;
  background: linear-gradient(0deg, var(--surface) 4%, rgba(13,18,23,0) 55%);
}
.svc-card .body { padding: 20px 22px 26px; }
.svc-card .body .head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.svc-card .body .head svg { width: 19px; height: 19px; color: var(--accent-bright); flex: none; }
.svc-card .body h3 { font-size: 18px; font-weight: 700; }
.svc-card .body p { font-size: 14.5px; color: var(--muted); line-height: 1.5; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-section { padding: 30px 0 96px; }
.timeline-head { text-align: center; margin-bottom: 64px; }
.timeline-head .section-title { margin-top: 12px; }
.timeline-head .underline { width: 64px; height: 3px; background: var(--accent-bright); border-radius: 3px; margin: 14px auto 0; }

.timeline {
  position: relative;
  max-width: 1040px; margin: 0 auto;
}
.timeline .spine {
  position: absolute; left: 50%; top: 6px; bottom: 6px; width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(56,189,248,.55) 6%, rgba(56,189,248,.55) 94%, transparent);
}
.tl-row { display: grid; grid-template-columns: 1fr 1fr; column-gap: 72px; position: relative; }
.tl-item {
  position: relative;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 24px;
  margin-bottom: 26px;
  display: flex; gap: 16px; align-items: flex-start;
}
.tl-item .tl-ic { flex: none; width: 34px; height: 34px; color: var(--accent-bright); }
.tl-item .tl-ic svg { width: 100%; height: 100%; }
.tl-item .date { color: var(--accent-bright); font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.tl-item .desc { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.tl-item ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.tl-item ul li { display: flex; gap: 9px; font-size: 14px; color: var(--muted); line-height: 1.4; }
.tl-item ul li svg { width: 16px; height: 16px; color: var(--accent-bright); flex: none; margin-top: 2px; }

/* node dot on the spine */
.tl-item::after {
  content:""; position: absolute; top: 26px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--accent-bright); box-shadow: 0 0 0 4px rgba(56,189,248,.18);
}
/* left column item: connector + dot on its right edge */
.tl-row .left { grid-column: 1; }
.tl-row .left::after { right: -38px; }
.tl-row .left::before {
  content:""; position:absolute; top: 32px; right: -32px; width: 32px; height: 2px;
  background: rgba(56,189,248,.45);
}
.tl-row .right { grid-column: 2; }
.tl-row .right::after { left: -38px; }
.tl-row .right::before {
  content:""; position:absolute; top: 32px; left: -32px; width: 32px; height: 2px;
  background: rgba(56,189,248,.45);
}

/* full width final card */
.tl-full {
  position: relative; margin-top: 4px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 28px;
  display: flex; gap: 18px; align-items: flex-start;
}
.tl-full .tl-ic { flex: none; width: 34px; height: 34px; color: var(--accent-bright); }
.tl-full .tl-ic svg { width:100%; height:100%; }
.tl-full .date { color: var(--accent-bright); font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.tl-full p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   DRIVE WITH US
   ============================================================ */
.drive {
  position: relative;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(120% 130% at 18% 50%, rgba(28,163,230,.16), transparent 55%),
    linear-gradient(120deg, #0a0f14, #0c1318);
  display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 30px;
  padding: 18px;
}
.drive-media { position: relative; min-height: 300px; border-radius: var(--radius); overflow: hidden; }
.drive-media img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; display: block; }
.drive-body { padding: 28px 30px 28px 8px; }
.drive-body .section-title { font-size: clamp(26px, 3vw, 34px); margin: 12px 0 22px; }
.drive-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; margin-bottom: 28px; }
.drive-list li { list-style: none; display: flex; gap: 11px; font-size: 15px; color: #d2d8df; line-height: 1.4; }
.drive-list li svg { width: 19px; height: 19px; color: var(--accent-bright); flex: none; margin-top: 2px; }

/* ============================================================
   APP + REVIEWS
   ============================================================ */
.app-reviews { display: grid; grid-template-columns: 0.92fr 1.15fr; gap: 22px; }
.app-reviews > * { min-width: 0; }
.panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 38px;
}
.app-panel { position: relative; overflow: hidden; display: flex; flex-direction: column; }
.app-panel h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.app-panel p { color: var(--muted); font-size: 16px; max-width: 320px; }
.store-badges { display: flex; gap: 12px; margin-top: auto; padding-top: 30px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #000; border: 1px solid var(--border); border-radius: 10px;
  padding: 9px 16px; transition: border-color .18s ease;
}
.store-badge:hover { border-color: var(--border-bright); }
.store-badge svg { width: 24px; height: 24px; }
.store-badge .txt { display: flex; flex-direction: column; line-height: 1.1; }
.store-badge .txt small { font-size: 9px; color: #b9c0c7; letter-spacing: .04em; }
.store-badge .txt b { font-size: 15px; font-weight: 700; }
.app-phone {
  position: absolute; right: -10px; bottom: -30px; width: 215px;
  opacity: .92; pointer-events: none;
}
.app-phone .phone-frame {
  width: 215px; height: 430px; border-radius: 34px;
  border: 8px solid #1b232b; background: #05080b;
  box-shadow: -22px 24px 60px -20px rgba(0,0,0,.8);
  overflow: hidden; position: relative;
}
.app-phone img { width: 100%; height: 100%; object-fit: cover; display: block; }

.reviews-panel h3 { font-size: 22px; font-weight: 700; margin-bottom: 4px; text-align: center; }
.rating-line { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 26px; font-weight: 800; margin-bottom: 26px; }
.rating-line .star { color: var(--accent-bright); }
.rating-line span.lite { font-weight: 600; color: var(--muted); font-size: 20px; }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.review {
  background: var(--surface-2); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 18px; position: relative;
}
.review .top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.review .avatar { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 15px; color: #fff; flex: none; }
.review .stars { display: flex; gap: 1px; }
.review .stars svg { width: 14px; height: 14px; color: #f5b50a; }
.review .when { font-size: 12px; color: var(--muted-2); margin-left: auto; white-space: nowrap; }
.review p { font-size: 13.5px; color: #c4cad1; line-height: 1.5; }
.review .g { position: absolute; right: 16px; bottom: 14px; width: 18px; height: 18px; }
.reviews-cta { display: flex; justify-content: center; margin-top: 22px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--border); padding: 64px 0 30px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap: 40px; }
.footer-col h2 { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #cdd3da; margin-bottom: 18px; }
.footer-about p { font-size: 14px; color: var(--muted); max-width: 230px; margin: 16px 0 22px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 9px; display: grid; place-items: center; transition: all .18s ease; }
.socials a svg { width: 16px; height: 16px; color: #cdd3da; }
.socials a:hover { border-color: var(--border-bright); background: rgba(28,163,230,.07); }
.contact-list, .links-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.contact-list li { display: flex; gap: 11px; font-size: 14px; color: var(--muted); align-items: center; min-width: 0; overflow-wrap: anywhere; }
.contact-list li svg { width: 16px; height: 16px; color: var(--accent-bright); flex: none; }
.links-list a { font-size: 14px; color: var(--muted); transition: color .15s ease; }
.links-list a:hover { color: #fff; }
.footer-store { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.footer-store .store-badge { padding: 7px 13px; }
.footer-store .store-badge svg { width: 20px; height: 20px; }
.footer-map {
  position: relative; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; height: 118px; margin-bottom: 12px;
  background:
    radial-gradient(80% 120% at 60% 40%, rgba(28,163,230,.18), transparent 60%),
    linear-gradient(120deg, #0a0f14, #0d141a);
  display: grid; place-items: center;
}
.footer-map .pin { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.footer-map .pin svg { width: 26px; height: 26px; color: var(--accent-bright); }
.footer-map .pin span { font-size: 13px; font-weight: 600; color: #d2d8df; text-align: center; }
.footer-map svg.grid-lines { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .25; }

.footer-bottom { text-align: center; color: var(--muted-2); font-size: 13px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border-soft); }

/* ============================================================
   reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-inner { height: 72px; }
  .phone-btn { display: none; }
  .app-btn { display: none; }
  .services-grid { grid-template-columns: 1fr; gap: 36px; }
  .cards-3 { grid-template-columns: 1fr; }
  .drive { grid-template-columns: 1fr; }
  .drive-media { min-height: 220px; }
  .app-reviews { grid-template-columns: 1fr; }
  .app-phone { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .trust-card { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { border-bottom: 1px solid var(--border-soft); }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }
  .section { padding: 64px 0; }
  .hero-inner { padding: 60px 0 90px; }
  .timeline .spine { left: 22px; }
  .tl-row { grid-template-columns: 1fr; column-gap: 0; }
  .tl-row .left, .tl-row .right { grid-column: 1; margin-left: 44px; }
  .tl-row .left::before, .tl-row .right::before { left: -32px; right: auto; width: 32px; }
  .tl-row .left::after, .tl-row .right::after { left: -44px; right: auto; }
  .tl-full { margin-left: 44px; }
  .review-grid { grid-template-columns: 1fr; }
  .drive-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
}


/* ============================================================
   pages.css (merged in to save a request)
   ============================================================ */
/* ============================================================
   United Taxis Dumfries — sub-page components
   (loads after styles.css; reuses its tokens)
   ============================================================ */

/* ---------- compact page hero ---------- */
.page-hero {
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(120% 140% at 78% 8%, rgba(28,163,230,.14), transparent 55%),
    linear-gradient(180deg, #0a0f14, var(--bg));
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero-inner { padding: 78px 0 70px; max-width: 840px; margin: 0 auto; text-align: center; }
.page-hero-inner .eyebrow { justify-content: center; }
.page-hero-inner .eyebrow::before { display: none; }
.page-hero-inner .hero-cta { justify-content: center; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px); font-weight: 800;
  line-height: 1.04; letter-spacing: -0.025em; margin: 20px 0 18px;
}
.page-hero p { font-size: 19px; color: #cfd5dc; max-width: 560px; margin-left: auto; margin-right: auto; }
.breadcrumb { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--muted-2); margin-bottom: 4px; }
.breadcrumb a { color: var(--muted); transition: color .15s ease; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }

/* decorative faint grid in page hero */
.page-hero .hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: .5;
  -webkit-mask-image: radial-gradient(120% 100% at 80% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(120% 100% at 80% 0%, #000 30%, transparent 75%);
}

/* Hero content is above the fold: fade in WITHOUT vertical movement so the
   stacked title/paragraph can never cross during the entrance animation. */
.page-hero .reveal { transform: none; }
.page-hero .reveal:not(.in) { transform: none; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 30px; align-items: start; }

.contact-cards { display: grid; gap: 16px; }
.contact-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 26px;
  transition: border-color .2s ease, transform .2s ease;
}
.contact-card:hover { border-color: var(--border-bright); transform: translateY(-3px); }
.contact-card .ci {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(28,163,230,.12); color: var(--accent-bright);
}
.contact-card .ci svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.contact-card .big { font-size: 21px; font-weight: 700; color: #fff; line-height: 1.25; }
.contact-card .big a { transition: color .15s ease; }
.contact-card .big a:hover { color: var(--accent-bright); }
.contact-card .sub { font-size: 14px; color: var(--muted); margin-top: 3px; }
.contact-card > div { min-width: 0; }
.contact-card .big, .contact-card .big a { overflow-wrap: anywhere; }

.hours-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 26px;
}
.hours-card .head { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.hours-card .head svg { width: 20px; height: 20px; color: var(--accent-bright); }
.hours-card .head h3 { font-size: 17px; font-weight: 700; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--border-soft); font-size: 14.5px; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--muted); }
.hours-row .val { font-weight: 600; }
.hours-row .val.open { color: var(--accent-bright); }
.badge-247 {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  background: rgba(28,163,230,.1); border: 1px solid var(--border-bright);
  color: var(--accent-bright); font-size: 13.5px; font-weight: 700;
  padding: 9px 15px; border-radius: 9px;
}
.badge-247 svg { width: 15px; height: 15px; }

/* ---------- form ---------- */
.form-panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 38px;
}
.form-panel h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
.form-panel .sub { color: var(--muted); font-size: 15px; margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 600; color: #cdd3da; }
.field label .req { color: var(--accent-bright); }
.field input, .field select, .field textarea {
  font-family: var(--ff); font-size: 15px; color: #fff;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 10px; padding: 13px 15px; transition: border-color .15s ease, background .15s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: #0a1014;
  box-shadow: 0 0 0 3px rgba(28,163,230,.14);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2399a2ab' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.form-actions { margin-top: 26px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-note { font-size: 13px; color: var(--muted-2); }
.btn.btn-primary.btn-block { width: 100%; justify-content: center; }

.form-success {
  display: none; flex-direction: column; align-items: center; text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: flex; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: rgba(28,163,230,.14); color: var(--accent-bright); margin-bottom: 18px; }
.form-success .check svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 15px; max-width: 360px; }

/* ============================================================
   DRIVE WITH US
   ============================================================ */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 26px;
  transition: border-color .2s ease, transform .2s ease;
}
.benefit:hover { border-color: var(--border-bright); transform: translateY(-4px); }
.benefit .bi { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(28,163,230,.12); color: var(--accent-bright); margin-bottom: 18px; }
.benefit .bi svg { width: 23px; height: 23px; }
.benefit h3 { font-size: 18px; font-weight: 700; margin-bottom: 9px; }
.benefit p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.benefit .figure { font-size: 30px; font-weight: 800; color: var(--accent-bright); letter-spacing: -0.02em; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head .section-title { margin: 12px 0 16px; }
.section-head p { color: var(--muted); font-size: 16.5px; }

/* numbered steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step .num {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--border-bright);
  color: var(--accent-bright); font-weight: 800; font-size: 19px; margin-bottom: 18px;
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.steps.lined .step:not(:last-child)::after {
  content:""; position: absolute; top: 31px; left: 58px; right: -10px; height: 2px;
  background: linear-gradient(90deg, var(--border-bright), transparent);
}

/* requirements list */
.req-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 34px 38px;
}
.req-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 11px; }
.req-card h3 svg { width: 22px; height: 22px; color: var(--accent-bright); }
.req-list { list-style: none; display: grid; gap: 13px; }
.req-list li { display: flex; gap: 12px; font-size: 15px; color: #d2d8df; line-height: 1.45; }
.req-list li svg { width: 20px; height: 20px; color: var(--accent-bright); flex: none; margin-top: 1px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 140% at 20% 50%, rgba(28,163,230,.18), transparent 58%),
    linear-gradient(120deg, #0a0f14, #0c1318);
  padding: 52px 56px; text-align: center;
}
.cta-band h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.cta-band p { color: var(--muted); font-size: 17px; max-width: 520px; margin: 0 auto 28px; }
.cta-band .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   KNOW OUR DRIVERS
   ============================================================ */
.values-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; text-align: center;
}
.value .vi { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: rgba(28,163,230,.12); color: var(--accent-bright); margin: 0 auto 14px; }
.value .vi svg { width: 22px; height: 22px; }
.value h3 { font-size: 16px; font-weight: 700; margin-bottom: 7px; }
.value p { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

.driver-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.driver-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
.driver-card:hover { border-color: var(--border-bright); transform: translateY(-5px); }
.driver-card .photo { position: relative; aspect-ratio: 4 / 3.4; background: var(--surface-2); }
.driver-card .photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

.legal { max-width: 820px; }
.legal .updated { color: var(--muted-2); font-size: 14px; margin-bottom: 28px; }
.legal h2 { font-size: 20px; font-weight: 800; color: var(--text); margin: 34px 0 12px; }
.legal h3 { font-size: 16px; font-weight: 700; color: var(--text); margin: 22px 0 8px; }
.legal p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
.legal ul { list-style: none; margin: 0 0 16px; padding: 0; }
.legal li { position: relative; color: var(--muted); font-size: 15px; line-height: 1.6; padding-left: 22px; margin-bottom: 8px; }
.legal li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-bright); }
.legal a { color: var(--accent-bright); }
.legal strong { color: var(--text); font-weight: 700; }
.driver-card .photo .photo-ph {
  width: 100%; height: 100%; display: grid; place-items: center;
  background:
    radial-gradient(120% 120% at 50% 30%, rgba(28,163,230,.08), transparent 60%),
    var(--surface-2);
  color: rgba(255,255,255,0.16);
}
.driver-card .photo .photo-ph svg { width: 44%; height: 44%; max-width: 120px; }
.driver-card .photo::after { content:""; position:absolute; inset:0; pointer-events:none; background: linear-gradient(0deg, var(--surface) 2%, transparent 38%); }
.driver-card .badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(6,8,10,.78); backdrop-filter: blur(6px);
  border: 1px solid var(--border); border-radius: 999px;
  font-size: 12px; font-weight: 700; color: #fff; padding: 6px 12px;
}
.driver-card .badge svg { width: 13px; height: 13px; color: var(--accent-bright); }
.driver-card .info { padding: 20px 24px 26px; }
.driver-card .info .name { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; }
.driver-card .info .role { color: var(--accent-bright); font-size: 13.5px; font-weight: 700; margin-top: 2px; }
.driver-card .info .bio { font-size: 14px; color: var(--muted); line-height: 1.55; margin-top: 12px; }
.driver-card .meta { display: flex; gap: 22px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border-soft); }
.driver-card .meta .m b { display: block; font-size: 19px; font-weight: 800; color: #fff; white-space: nowrap; }
.driver-card .meta .m span { font-size: 12px; color: var(--muted-2); white-space: nowrap; }

/* stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.stat { padding: 30px 26px; text-align: center; border-right: 1px solid var(--border-soft); }
.stat:last-child { border-right: none; }
.stat .big { font-size: clamp(30px, 4vw, 42px); font-weight: 800; color: var(--accent-bright); letter-spacing: -0.02em; line-height: 1; }
.stat .label { font-size: 14px; color: var(--muted); margin-top: 9px; }

/* ============================================================
   BOOK ONLINE — cab-x widget mount
   ============================================================ */
.booking-wrap { max-width: 860px; margin: 0 auto; }
.booking-panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 14px;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,.9);
}
.booking-panel .panel-head {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 22px 16px; border-bottom: 1px solid var(--border-soft);
}
.booking-panel .panel-head svg { width: 22px; height: 22px; color: var(--accent-bright); flex: none; }
.booking-panel .panel-head h2 { font-size: 19px; font-weight: 700; white-space: nowrap; }
.booking-panel .panel-head .pill {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 700; color: var(--accent-bright);
  background: rgba(28,163,230,.1); border: 1px solid var(--border-bright);
  padding: 6px 12px; border-radius: 999px; white-space: nowrap;
}
.booking-panel .panel-head .pill svg { width: 13px; height: 13px; }

/* The actual cab-x widget mounts inside #cabx-booking.
   Until it loads, .booking-fallback shows a tasteful placeholder. */
#cabx-booking { min-height: 360px; padding: 8px; }
#taxi-booking:not(:empty) + .booking-fallback { display: none; }
.booking-fallback {
  min-height: 344px; display: grid; place-items: center; text-align: center;
  border: 1.5px dashed var(--border); border-radius: var(--radius);
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(28,163,230,.06), transparent 60%),
    var(--bg-2);
  padding: 40px 24px;
}
.booking-fallback .bf-ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: rgba(28,163,230,.12); color: var(--accent-bright); margin: 0 auto 18px; }
.booking-fallback .bf-ic svg { width: 27px; height: 27px; }
.booking-fallback h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.booking-fallback p { font-size: 14.5px; color: var(--muted); max-width: 380px; margin: 0 auto 22px; line-height: 1.55; }

.booking-aside { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.booking-aside .chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; color: #cdd3da; font-weight: 600;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 999px; padding: 10px 18px;
}
.booking-aside .chip svg { width: 16px; height: 16px; color: var(--accent-bright); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .contact-layout { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps.lined .step::after { display: none; }
  .split { grid-template-columns: 1fr; }
  .driver-grid { grid-template-columns: 1fr 1fr; }
  .values-row { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border-soft); }
}

@media (max-width: 680px) {
  .page-hero-inner { padding: 48px 0 44px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-panel { padding: 26px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .driver-grid { grid-template-columns: 1fr; }
  .values-row { grid-template-columns: 1fr; }
  .cta-band { padding: 38px 24px; }
  .req-card { padding: 26px 24px; }
  .cta-band .actions { flex-direction: column; }
  .cta-band .actions .btn { justify-content: center; }
  .booking-panel .panel-head { flex-wrap: wrap; }
  .booking-panel .panel-head .pill { margin-left: 0; }
}
